/* global React, Media, MusicBackground, useReveal, useLocale */ // Jullia — Home. The first and main tab: a single arresting statement, // a generative music-reactive trace as its backdrop, the belief, the two // domains, one real image moment, the quiet rebellion, the invitation. function Home({ onEnterCar, onEnterHome }) { const { Eyebrow, Button, Divider } = window.JulliaDesignSystem_b654aa; const { t } = useLocale(); const ref = useReveal(); const domains = [ { i: '01', t: t('home.domainCarTitle'), c: t('home.domainCarBody'), go: onEnterCar }, { i: '02', t: t('home.domainHomeTitle'), c: t('home.domainHomeBody'), go: onEnterHome }, ]; return (
{/* Hero — one idea, a generative music-reactive trace as its backdrop */}
{/* The belief */}

{t('home.belief')}

{/* Two domains */}
{domains.map((d) => (
{d.t}

{d.c}

))}
{/* A single image moment — the listening */}
{/* The enemy, stated quietly */}
{t('home.rebellionEyebrow')}

{t('home.rebellionBody')}

{/* Invitation — the strongest CTA is restraint */}

{t('home.invitationLine')}

{t('home.invitationNote')}
); } window.Home = Home;