// 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 (
{HeroContent}
); } if (layout === 'fullbleed') { return (
{HeroContent}
); } if (layout === 'terminal') { return (
{HeroContent}
); } return (
{HeroContent}
); } // Soft radial glow behind hero function HeroAura() { return (
); } Object.assign(window, { Hero, HeroAura });