/* Variation B — components: Nav, Footer, WhatsApp, icons, page header */ const VbIcon = { arrow: (p) => ( ), arrowUR: () => ( ), plus: () => ( ), check: () => ( ), whatsapp: () => ( ), }; function VbNav({ current, go }) { const links = [ { id: 'home', label: 'Início' }, { id: 'servicos', label: 'Serviços' }, { id: 'sobre', label: 'Sobre' }, { id: 'contato', label: 'Contato' }, ]; return ( { e.preventDefault(); go('home'); }}> {links.map(l => ( { e.preventDefault(); go(l.id); }}>{l.label} ))} Diagnóstico grátis ); } function VbFooter({ go }) { return ( ); } function VbWhatsapp() { return ( WhatsApp ); } function VbPageHeader({ section, eyebrow, title, lede }) { return ( {eyebrow} {section} {lede && ( {lede} )} ); } Object.assign(window, { VbNav, VbFooter, VbWhatsapp, VbPageHeader, VbIcon });
{lede}