/* ═══════════════════════════════════════════════════════════════════ Bottom sections: HowItWorks · Segments · Results · Compare (Poligus) ═══════════════════════════════════════════════════════════════════ */ /* ═══ HOW IT WORKS ═════════════════════════════════════════════════ */ const HowItWorks = () =>
COMO · FUNCIONA

Em 3 passos, sua operação roda sozinha.

{STEPS.map((s, i) => (
{s.num}
{s.title}
{s.desc}
))}
; /* ═══ SEGMENTS — Para quem é ═══════════════════════════════════════ */ const Segments = () =>
PARA · QUEM · É

Feito para quem vive de atendimento.

{(() => { const half = Math.ceil(SEGMENTS.length / 2); const rowA = SEGMENTS.slice(0, half); const rowB = SEGMENTS.slice(half).concat(SEGMENTS.slice(0, 1)); const Chip = ({ s, k }) => (
{s}
); return (
{[...rowA, ...rowA].map((s, i) => )}
{[...rowB, ...rowB].map((s, i) => )}
); })()}
; /* ═══ RESULTS — antes / depois ═════════════════════════════════════ */ const Results = () =>
RESULTADOS

O que muda quando a Poligus entra na operação.

{/* ANTES */}
Antes
{RESULTS.before.map((t, i) => (
{t}
))}
{/* DEPOIS */}
Depois
{RESULTS.after.map((t, i) => (
{t}
))}
{/* COMPARATIVO */}
Sem Poligus
Com Poligus
{COMPARE.map((row, i) => (
{row[0]}
{row[1]}
))}
; Object.assign(window, { HowItWorks, Segments, Results });