// Process.jsx — 3-step "how it works" const STEPS = [ { n: '01', title: 'Vous décrivez le besoin', body: "Un message, un appel. Je note le contexte — matériel, urgence, budget." }, { n: '02', title: 'Je rédige un devis clair', body: "Pièces, main d'œuvre, délai. Pas de surprise, pas de jargon. Vous validez avant intervention." }, { n: '03', title: 'Intervention & garantie', body: "À domicile ou en atelier. Garantie écrite sur les pièces et la main d'œuvre." } ]; function Process() { return (

Comment ça marche

Trois étapes, zéro friction.

{STEPS.map((s, i) => (
{i < STEPS.length - 1 && (
)}
{s.n}

{s.title}

{s.body}

))}
); } window.Process = Process;