/* PL1 — Coaches & About page */ function CoachesPage() { return ( <> {/* PAGE HEADER + lead coach feature */}
Coaches & About

A small staff. Built deep, not wide.

Founded in {`{year placeholder}`} by a former Football League keeper who'd been shown the door by the academy system and wanted to build the place that hadn't existed for him. Today PL1 runs as a six-coach studio — every staff member played in goal to senior level.

{/* PRINCIPLES — three columns */}
Methodology

Three principles that survived a decade of contact with reality. Everything we do laddered up to one of them.

{/* COACH ROSTER */}

Meet the full staff.

Hover any coach for credentials — every coach has played in goal to at least Step 1 / National League level.

{/* WHERE WE TRAIN */}

Where we train.

A purpose-built keeper facility, two outdoor pitches, and visits to your club. We don't squeeze keepers into the corner of an outfield session.

); } function Principle({ number, title, copy }) { return (
{number}

{title}

{copy}

); } function Coach({ name, role, bio, creds=[] }) { return (

{name}

{bio}

{creds.map((c,i) => {c})}
); } Object.assign(window, { CoachesPage, Coach, Principle });