function About() { const { lang, t } = useLang(); return (
— {t.about.eyebrow}

{t.about.title}

{/* big mark */}

{t.about.p1}

{t.about.p2}

{/* vision card */}
{t.about.visionLabel}

"{t.about.vision}"

{/* pillars */}
{t.about.pillars.map((p, i) => { const colors = ['#3B82F6', '#A855F7', '#06B6D4']; return (
0{i + 1}
{p.k}
{p.v}
); })}
); } window.About = About;