/* How it works — three steps from signup to first shipment */ function Steps({ t }) { const icons = [Icons.storefront, Icons.network, Icons.radar]; return (
{t.steps.eyebrow}

{t.steps.title_1}{t.steps.title_em}

{t.steps.sub}

    {t.steps.items.map((s, i) => (
  1. {String(i + 1).padStart(2, '0')} {icons[i]}

    {s.title}

    {s.body}

  2. ))}
); } window.Steps = Steps;