// HowWeWork.jsx const HowWeWork = () => { const t = useT(); return (
{t.how.eyebrow}

{t.how.title}

    {t.how.steps.map(s => (
  1. {s.n}

    {s.t}

    {s.d}

  2. ))}
); }; window.HowWeWork = HowWeWork;