// Hi-Fi B — Bottom (Process, Differentials, Testimonials, IG, CTA, Footer, FAB) // Reads from window.Store function Process() { const steps = window.Store.getProcessSteps(); return (
04 / Como funciona

4 FASES
DO ORÇAMENTO.

Sem mistério, sem surpresa no preço. Você aprova cada etapa antes da gente avançar.

{steps.map((s, i) => (
FASE {s.n}
{s.title}

{s.body}

{s.sub}
))}
); } function Differentials() { const diffs = window.Store.getDifferentials(); return (
05 / Por que aqui

POR QUE NÓS?

{diffs.map((d, i) => (
{d.title}

{d.body}

))}
); } function Testimonials() { const items = window.Store.getTestimonials().filter((t) => t.published); if (!items.length) return null; return (
06 / Clientes

FÃS REAIS.
HISTÓRIAS REAIS.

{items.map((t, i) => (
{Array.from({ length: t.rating || 5 }).map((_, j) => )}

"{t.body}"

— {t.name} {t.piece}
))}
); } function InstagramFeed() { const items = window.Store.getInstagram(); const s = window.Store.getSettings(); if (!items.length) return null; return (
07 / Bastidores

@{s.instagram || 'ALCANTARA3D'}

Seguir
{items.map((it, i) => { const src = typeof it === 'string' ? it : (it && it.src) || ''; const link = typeof it === 'object' && it && it.link ? it.link : '#'; return (
); })}
); } function CTAFinal() { const s = window.Store.getSettings(); return (
08 / Bora começar

SUA IDEIA
P/ VIDA?' }} />

Chamar no WhatsApp Enviar email

); } function Footer() { const s = window.Store.getSettings(); return ( ); } function FabWA() { const s = window.Store.getSettings(); return ( ); } window.Process = Process; window.Differentials = Differentials; window.Testimonials = Testimonials; window.InstagramFeed = InstagramFeed; window.CTAFinal = CTAFinal; window.Footer = Footer; window.FabWA = FabWA;