// Hero + background layers
function Hero({ layout, demo, t }) {
const HeroContent = (
<>
}>{t.badge_agents}
}>{t.fait_au_quebec}
{t.loi_25}
{t.hero_l1}
{t.hero_l2} {t.hero_l3}
{t.hero_sub}
{t.hero_p1}
{t.hero_p2}
{t.hero_p3}
>
);
if (layout === 'centered') {
return (
);
}
if (layout === 'fullbleed') {
return (
);
}
if (layout === 'terminal') {
return (
);
}
return (
);
}
// Soft radial glow behind hero
function HeroAura() {
return (
);
}
Object.assign(window, { Hero, HeroAura });