// Visual SVGs: hero orb, neural diagram, work card visuals, about ring
const HeroOrb = () => (
);
const NeuralDiagram = () => {
// 3 layers, lines connecting
const cols = [
{ x: 60, n: 4 },
{ x: 200, n: 6 },
{ x: 340, n: 6 },
{ x: 480, n: 3 },
];
const yFor = (col, i) => {
const total = col.n;
const step = 360 / (total + 1);
return 60 + step * (i + 1);
};
return (
);
};
const WorkVisual = ({ kind }) => {
if (kind === "ecom") {
return (
);
}
if (kind === "land") {
return (
);
}
if (kind === "ai") {
return (
);
}
if (kind === "app") {
return (
);
}
if (kind === "mkt") {
return (
);
}
return null;
};
const AboutRing = () => (
);
window.HeroOrb = HeroOrb;
window.NeuralDiagram = NeuralDiagram;
window.WorkVisual = WorkVisual;
window.AboutRing = AboutRing;