// ATOM Center — Page: Enterprise const EnterprisePage = ({ lang, navigate }) => { const tr = (k) => t(lang, "enterprise." + k); const steps = [ { title: tr("step1Title"), body: tr("step1Body") }, { title: tr("step2Title"), body: tr("step2Body") }, { title: tr("step3Title"), body: tr("step3Body") }, { title: tr("step4Title"), body: tr("step4Body") }, ]; const formulas = [ { tag: tr("f1Tag"), title: tr("f1Title"), body: tr("f1Body"), items: tr("f1Items"), featured: false }, { tag: tr("f2Tag"), title: tr("f2Title"), body: tr("f2Body"), items: tr("f2Items"), featured: true }, { tag: tr("f3Tag"), title: tr("f3Title"), body: tr("f3Body"), items: tr("f3Items"), featured: false }, ]; return ( <>
{t(lang,"nav.home")} / {tr("breadcrumb")}

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

{tr("sub")}

{/* PROCESS */}
{tr("processEyebrow")}

{tr("processTitle")}

{steps.map((s, i) => (
0{i+1}

{s.title}

{s.body}

))}
{/* DIGITAL ACADEMY / LMS */}
{t(lang, "digital.eyebrow")}

{t(lang, "digital.title")}
{t(lang, "digital.titleAccent")}

{t(lang, "digital.sub")}

{t(lang, "digital.stat1Num")}
{t(lang, "digital.stat1Label")}
{t(lang, "digital.stat2Num")}
{t(lang, "digital.stat2Label")}
{t(lang, "digital.stat3Num")}
{t(lang, "digital.stat3Label")}
{[ { icon: "monitor", titleK: "f1Title", bodyK: "f1Body" }, { icon: "library", titleK: "f2Title", bodyK: "f2Body" }, { icon: "users-round", titleK: "f3Title", bodyK: "f3Body" }, { icon: "settings", titleK: "f4Title", bodyK: "f4Body" }, ].map((f, i) => (

{t(lang, "digital." + f.titleK)}

{t(lang, "digital." + f.bodyK)}

))}
{/* FORMULAS */}
{tr("formulasEyebrow")}

{tr("formulasTitle")}

{tr("formulasSub")}

{formulas.map((f, i) => (
{f.tag}

{f.title}

{f.body}

    {f.items.map((it, j) => (
  • {it}
  • ))}
))}
{/* CONTACT CTA */}

{tr("ctaTitle")}

{tr("ctaSub")}

{e.preventDefault();navigate("contact");}} className="btn btn-light btn-lg"> {tr("ctaBtn")}
); }; window.EnterprisePage = EnterprisePage;