/* ─── HERO with photo background ─── */ const { C: heroC, FONTS: heroFONTS, RACE_DATE: heroDate, STATS: heroStats } = window.LT; const { useCountdown: heroUseCountdown, useViewport: heroUseViewport } = window.LTHooks; function Hero() { const cd = heroUseCountdown(heroDate); const { isMobile } = heroUseViewport(); return (
{/* Photo background */}
); } window.LTHero = Hero;