// SegmentPage.jsx — shared scaffold for setor pages function SegmentHero({ eyebrow, title, lede, illustration }) { return (
← Voltar para a página inicial
{eyebrow}

{title}

{lede}

Pedir proposta Ver o que entregamos →
); } function SegmentFeatures({ items }) { return (
O que está incluso

Tudo que sua operação precisa, sob um único contador.

{items.map((it, i) => (
{String(i+1).padStart(2,'0')}

{it.title}

{it.body}

))}
); } window.SegmentHero = SegmentHero; window.SegmentFeatures = SegmentFeatures;