// pages/contato.jsx — Página Contato function ContactHero({ t, theme }) { const email = window.MODRO_EMAIL || t.footer_email || "modroconsultoria@gmail.com"; const phone = t.footer_phone || "+55 47 9974-7727"; const whatsappMessage = "Olá, gostaria de conversar com a Modro Consultoria."; return (
{t.contact_eyebrow}

{t.contact_title}

{t.contact_lede}

); } function ContactSteps({ t, theme }) { return (
{t.contact_steps_eyebrow}

{t.contact_steps_title}

{(t.contact_steps || []).map((step) => (
{step.n}

{step.t}

{step.d}

))}
{t.contact_highlight_title}

{t.contact_highlight_text}

); } function ContatoPage() { return ( {({ copy: t, theme }) => ( <> )} ); } renderModroPage();