// Hero.jsx const Hero = () => { const t = useT(); return (
{t.hero.eyebrow}

{t.hero.l1}
{t.hero.l2}
{t.hero.l3}

{t.hero.sub}

{t.hero.cta1} {t.hero.cta2}
{t.hero.strip}
{[0, 1].map(copy => (
    {[ 'P58','50 Partners','Agoranov','Antler','Campus Cyber','Entrepreneur First', 'Euratech','Innes','Le Swave','Le Village CA','Paris&Co','Station F', 'Techstars','X-HEC','YC', ].map((name, i) => (
  • {name}
  • ))}
))}
); }; window.Hero = Hero;