import ScrollReveal from "@/components/ScrollReveal"; export default function HowItWorks() { const steps = [ { number: "01", title: "Konsultacja", description: "Poznamy Twoje potrzeby, procesy i cele biznesowe.", }, { number: "02", title: "Implementacja", description: "Zbudujemy dedykowane agenty AI skrojone na Twoją firmę.", }, { number: "03", title: "Automatyzacja", description: "Twoja firma działa szybciej i efektywniej — automatycznie.", }, ]; return (

Jak to działa

Trzy kroki do automatyzacji Twojego biznesu

{steps.map((step, i) => (
{i < steps.length - 1 && (
)}
{step.number}

{step.title}

{step.description}

))}
); }