// Services.jsx const Services = () => { const t = useT(); return (
{t.services.eyebrow}

{t.services.title}

{t.services.list.map((s, i) => { const n = String(i + 1).padStart(2, '0'); return ( ); })}
); }; window.Services = Services;