// Home page content. window.CJHome function CJHome({ go }) { const D = window.CJDS; const { Button, SectionHeading, AttractionCard, ReviewCard, Card } = D; const Icon = window.CJIcon; const data = window.CJ_DATA; return (
{/* Hero */}
Now open in Riverside!

Where little ones
jump for joy

A spotless, super-safe indoor playground with six play zones, birthday parties, and a 60-second digital waiver.

{[['4.9★', '2,100+ reviews'], ['6', 'play zones'], ['60s', 'digital waiver']].map(([n, l]) => (
{n}
{l}
))}
{/* Hero collage */}
4.9 rating
{/* Attractions preview */}
{data.attractions.slice(0, 3).map((a) => ( } onClick={() => go('Attractions')} style={{ width: '100%' }} /> ))}
{/* Why choose us */}
Why parents choose us

Safe, spotless, stress-free

{data.reasons.map((r) => (

{r.title}

{r.text}

))}
{/* Reviews */}
{data.reviews.map((r) => ( {r.text} ))}
{/* CTA band */}

Ready to let them fly?

Grab open-play tickets or lock in a birthday date — spots fill fast on weekends.

); } window.CJHome = CJHome;