/* global React, NA_DATA, NASite */ const { useState } = React; // ============== COACHES PAGE ============== function CoachesPage() { const { Photo } = NASite; const { COACHES } = NA_DATA; return (
Club / Coaches

The coaching staff.

A lead coach for every squad, plus a director keeping the standard consistent across the club. Trained, accredited, and on the floor every week.

{COACHES.map((c, i) => (
{c.photo ? : }
{c.role}

{c.name}

{c.bio}

{c.stats}
))}
); } // ============== ABOUT PAGE ============== function AboutPage({ setPage }) { const { Photo } = NASite; const { STAFF, COACHES } = NA_DATA; const founder = COACHES.find(c => c.id === 'c0'); return (
Club / About

A Nottingham basketball club.

Founded in 2024 by Matt Parker. One organisation, two arms — Nottingham Athletic the basketball club, and Athletic Academy CIC the schools-and-community programme. A growing membership, eight squads, a growing number of school partners — and bigger plans beyond basketball.

The club

Train hard. Travel far. Play for each other.

Nottingham Athletic was built to give players in Nottingham a serious, well-organised place to develop their game. Eleven teams from U12 through to a senior side competing in the National Basketball League — training and playing across different parts of the city.

The kit, the coaching standard, the fixtures list — they hang together because someone is paying attention. We operate as a proper club, with a long-term plan.

Our players come from across the East Midlands and beyond. Some are coming up through our youth pathway. Some have moved to Nottingham specifically to play here. All of them have to earn their spot.

{[ { l: 'Teams', v: '11', s: 'U12 → Senior' }, { l: 'Players', v: '65', s: 'across the club' }, { l: 'Sessions / week', v: '11', s: 'training + match' }, { l: 'Permanent venues', v: '3', s: 'across Nottingham' }, ].map((b, i) => (
{b.l}
{b.v}
{b.s}
))}
Founder & Director

The person behind the club.

One organisation. Two arms. Built and run from Nottingham.

{founder && (
{founder.photo ? : }
{founder.role}

{founder.name}

{founder.bio}

)}
Club staff

Welfare, safeguarding & support.

The people you can speak to directly — about anything from a fixture question to a serious concern. More profiles will be added as roles are confirmed. {' '} setPage('coaches')} style={{ color: 'var(--ink)', textDecoration: 'underline', cursor: 'pointer' }}>Meet the coaching team →

{STAFF.map(p => ( p.placeholder ? (
{p.role}

Profile coming soon

A new staff member will be announced here.

) : (
{p.role}

{p.name}

{p.bio}

) ))}
How we operate

The standard, in plain English.

{[ { t: 'You earn your spot, and you keep earning it.', d: 'Trials each season. Roster reviews mid-year. Effort and attendance are the floor; talent is the ceiling.' }, { t: 'One coach per squad, and a director above them.', d: 'Continuity matters. A squad has one head coach who knows every player, plus assistants — not a rotating cast.' }, { t: 'We play in real venues, on a real schedule.', d: 'We operate across multiple venues in Nottingham, with a long-term ambition to settle into a home of our own. Fixtures published a season ahead.' }, { t: 'We tell players the truth.', d: 'Honest feedback at trials, in reviews, and after games. No false hope, no ghosting.' }, ].map((p, i) => (
{p.t}
{p.d}
))}
Club documents

The paperwork, on the record.

Policies, governance and welfare documents. If you need something that isn't here, email{' '} admin@nottinghamathletic.com.

{[ { t: 'Safeguarding Policy', c: 'Welfare' }, { t: 'Code of Conduct — Players & Parents', c: 'Welfare' }, { t: 'Equality, Diversity & Inclusion', c: 'Welfare' }, { t: 'Concussion & Injury Protocol', c: 'Medical' }, { t: 'Club Constitution', c: 'Governance' }, { t: 'Privacy & Data Policy', c: 'Governance' }, ].map((doc, i, arr) => ( e.preventDefault()} className="doc-row" style={{ display: 'grid', gridTemplateColumns: 'auto 1fr auto auto', alignItems: 'center', gap: 20, padding: '18px 24px', borderBottom: i < arr.length - 1 ? '1px solid var(--line)' : 'none', textDecoration: 'none', color: 'inherit', }} >
PDF
{doc.t}
PDF · {doc.c}
{doc.c}
))}

One badge. One club.

From the U14s on a Saturday morning to senior men under the Friday-night lights — they all wear the same crest, and they all answer to the same standard.

); } // ============== SPONSORS PAGE ============== function SponsorsPage({ setPage }) { const { SPONSORS } = NA_DATA; return (
Club / Sponsors

Partners of the club.

A handful of partners we work with closely. They make this club run — and we put their name on the kit, in the gym, and at every home tip-off.

{SPONSORS.map((s, i) => (
{s.name}
{s.tag}

{s.name}

{s.tag === 'Principal partner' && 'Heronridge backs the club at every level — from senior kit to the youngest squad. The principal partner of Nottingham Athletic since 2024.'} {s.tag === 'Performance partner' && 'Causality Health supports player performance and recovery, with on-site clinic time across all our squads.'} {s.tag === 'Strength & conditioning' && 'Edwards Performance runs S&C across the senior and U23 squads — and provides programmes for the youth pathway.'} {s.tag === 'Recovery partner' && 'RecoverPro provides post-game recovery for the senior squad and travel kit on away weekends.'}

))}
Become a partner

Put your name behind a serious club.

We work with a small set of partners — local first. Match-night branding, kit placement, gym signage, content collaborations. Tiers from a youth-squad kit sponsor up to principal partnership.

Partnership tiers
{[ { t: 'Principal', d: 'Front-of-jersey, all squads. Premium match-night placement.' }, { t: 'Performance', d: 'Specialist category — health, S&C, nutrition. Practical involvement.' }, { t: 'Squad sponsor', d: 'A specific squad. Back-of-jersey or kit placement.' }, { t: 'Match-night', d: 'Single fixture or a season of home matches.' }, ].map((t, i) => (
{t.t}
{t.d}
On request
))}
); } window.CoachesPage = CoachesPage; window.AboutPage = AboutPage; window.SponsorsPage = SponsorsPage;