// ATOM Center — Page: About const AboutPage = ({ lang, navigate }) => { const tr = (k) => t(lang, "about." + k); const principles = [ { num: "01", title: tr("pr1"), body: tr("pr1d") }, { num: "02", title: tr("pr2"), body: tr("pr2d") }, { num: "03", title: tr("pr3"), body: tr("pr3d") }, ]; return ( <>
{t(lang,"nav.home")} / {tr("breadcrumb")}

{tr("titleA")} {tr("titleB")} {tr("titleC")}

{tr("sub")}

{/* MANIFESTO — poster style */}
{tr("manifestoEyebrow")}

{tr("manifestoTitle")}

{tr("manifestoBody")}

{/* PRINCIPLES */}
{tr("principlesEyebrow")}

{tr("principlesTitle")}

{principles.map((p, i) => (
{p.num}

{p.title}

{p.body}

))}
{/* TEAM */}
{tr("teamEyebrow")}

{tr("teamTitle")}

{tr("teamSub")}

{[ { name: tr("teamFounder"), role: tr("teamFounderRole"), initials: "CM", color: "#1A3DA0" }, { name: tr("teamDirector"), role: tr("teamDirectorRole"), initials: "DP", color: "#6848A8" }, { name: tr("teamPartner"), role: tr("teamPartnerRole"), initials: "DE", color: "#284838" }, ].map((p, i) => (
{p.initials}

{p.name}

{p.role}

))}
); }; window.AboutPage = AboutPage;