// pages/sobre.jsx — Página Sobre function AboutHero({ t, theme }) { return (
{t.about_eyebrow}

{t.about_title}

{t.hero_lede}

{(t.about_hero_cards || []).map(([value, label]) => (
{value} {label}
))}
); } function AboutOrigin({ t, theme }) { return (
{t.about_history_eyebrow}

{t.about_history_title}

{t.about_history_p1}

{t.about_history_p2}

{t.about_history_stat}
{t.about_history_stat_label}

{t.about_history_caption}

); } function AboutStory({ t, theme }) { return (
{(t.about_story_sections || []).map((item, index) => (
{item.k}

{item.t}

{item.p.map((paragraph) =>

{paragraph}

)}
{index < (t.about_story_quotes || []).length &&
"

{t.about_story_quotes[index].q}

{t.about_story_quotes[index].a}
}
))}
); } function SobrePage() { return ( {({ copy: t, theme }) => ( <> )} ); } renderModroPage();