// About page — reads from window.__C (content.json) const _ah = () => window.c('about.hero', {}); const _amis = () => window.c('about.mission', {}); const _avis = () => window.c('about.vision', {}); const _aval = () => window.c('about.values', {}); const _atim = () => window.c('about.timeline', {}); const _atea = () => window.c('about.team', {}); const _asus = () => window.c('about.sustainability', {}); const _ates = () => window.c('about.testimonials', {}); const _acert = () => window.c('about.certifications', []); function AboutHero() { const h = _ah(); return (
{h.eyebrow}

{h.headline}

{h.intro_left}

{h.intro_right}

); } function MissionVision() { const mis = _amis(); const vis = _avis(); return (
{mis.eyebrow}

{mis.headline}

{mis.body}

{vis.eyebrow}

{vis.headline}

{vis.body}

); } function Values() { const v = _aval(); return (
{v.eyebrow}

{v.headline}

{(v.items || []).map((it, i) =>
{it.id}

{it.title}

{it.body}

)}
); } function CompanyTimeline() { const t = _atim(); return (
{t.eyebrow}

{t.headline}

{(t.events || []).map((e, i) =>
{e.year}

{e.title}

{e.body}

)}
); } function Leadership() { const t = _atea(); const members = t.members || []; const ceo = members[0]; // Single-CEO featured layout if (members.length === 1 && ceo) { return (
{t.eyebrow}

{t.headline}

{ceo.tag || 'Leadership'}

{ceo.name}

{ceo.role}
{ceo.bio &&

{ceo.bio}

}
PT Solusi Multiguna Prima
); } // Fallback: multi-member grid (legacy) return (
{t.eyebrow}

{t.headline}

{members.map((p, i) =>

{p.name}

{p.role}
)}
); } function Sustainability() { const s = _asus(); return (
{s.eyebrow}

{s.headline}

{s.body}

{(s.stats || []).map((st, i) =>
{st.num}
{st.label}
)}
); } function Testimonials() { const t = _ates(); return (
{t.eyebrow}

{t.headline}

{(t.items || []).map((q, i) =>

"{q.quote}"

{q.who}
)}
); } function Certifications() { const certs = _acert(); return (
Tested · Certified · Trusted
); } function AboutPage({ setRoute, tweaks }) { return (
); } Object.assign(window, { AboutPage });