'use client'; import { Reveal } from '../Reveal'; import { steps } from '../content'; export function HowItWorks() { return (

به سادگیِ سه قدم

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

{s.title}

{s.desc}

))}
); }