/* global React, NA_DATA, NASite */ const { useState, useMemo } = React; // ============== HOMEPAGE ============== function HomePage({ setPage, heroVariant }) { const { Photo, Stat, SquadCard, FixtureRow, Pill } = NASite; const { SQUADS, FIXTURES, SPONSORS, NEWS } = NA_DATA; const upcoming = FIXTURES.filter(f => f.status === 'upcoming').slice(0, 3); const recent = FIXTURES.filter(f => f.status === 'past').slice(0, 2); const nextFx = upcoming[0]; const [expandedFx, setExpandedFx] = useState(null); return (
{/* HERO */}
Nottingham · Founded 2024

One club.
Eleven teams.
One standard.

Nottingham Athletic is a basketball club — and a community programme. Eleven teams from U12 to senior men, across National League, YBL and Local League. 250+ members. A schools arm reaching across the city. Basketball is where it starts — more to follow.

{/* Hero RHS — cycles based on heroVariant */}
{heroVariant === 'scoreboard' && ( <>
Next fixture Senior Men · NBL Div 3
Home
Nottingham
Athletic
vs
Opponent
To be
confirmed
Date
TBC
Tip-off
TBC
Venue
TBC
)} {heroVariant === 'photo' && ( <> )} {heroVariant === 'stats' && ( )}
{/* MARQUEE RIBBON */}
{[...Array(2)].map((_, i) => ( Train hard Travel far Play for each other National League · YBL · Local League · U12 Nottingham Athletic ))}
{/* SQUADS */}
The squads

Eleven teams. One badge.

{SQUADS.filter(s => ['senior','u23','u16-national','u14-national','u18-ybl','mens-ll','u12'].includes(s.id)).map(s => setPage('teams')} />)}
{/* FIXTURES */}
Upcoming

Next on the schedule.

Fixtures across all our squads. Tap a row for venue, tip-off, and travel notes.

{upcoming.length > 0 ? ( upcoming.map(fx => ( setExpandedFx(expandedFx === fx.id ? null : fx.id)} /> )) ) : (
Schedule to be announced.

Fixtures will appear here as soon as the coaches publish them.

)}
{/* DUAL ENTITY CTA */}
One organisation · Two arms

Performance club. Community programme.

{[ { tag: 'Nottingham Athletic', t: 'Play for the club', d: 'Eleven teams, U12 to senior — National League, YBL and Local League. Trials and open sign-ups each season.', cta: 'See teams', go: 'teams' }, { tag: 'Athletic Academy CIC', t: 'Schools partnership', d: 'In-school coaching, TA placements, behaviour mentoring, Y6 transition. Booked by trust or by school.', cta: 'For schools', go: 'academy' }, { tag: 'Travel teams', t: 'Tour with us', d: 'Nottingham Athletic aims to be a mainstay programme in the EYBL for all age groups. Register your interest.', cta: 'See tours', go: 'travel' }, ].map((c, i) => (
{c.tag}

{c.t}

{c.d}

))}
{/* NEWS */}
Latest

From the club.

{NEWS.map(n => (
{n.date} · {n.label}

{n.title}

))}
{/* SPONSORS STRIP */}
Partners of Nottingham Athletic
{SPONSORS.map((s, i) => (
{s.name}
{s.tag}
))}
); } window.HomePage = HomePage;