/* global React, Photo, Reveal, Icon */ const { useState: useStateApp } = React; function PageApparel({ go, toast }) { const [email, setEmail] = useStateApp(''); const submit = (e) => { e.preventDefault(); if (!email || !/.+@.+\..+/.test(email)) { toast('Please enter a valid email.'); return; } toast(`On the list. ${email} gets first access.`); setEmail(''); }; return (
{/* Hero */}
Apparel & Gear

Gear that's as individual as your game.

8tee apparel and accessories launching end of 2026.

Late 2026
{/* Categories */}
What's coming
{[ ['Golf Athleisure', 'Fit for 18 holes. Fit for brunch after.', 'assets/apparel-athleisure.png'], ['Custom Accessories', 'Headcovers, towels, marker sets — yours.', 'assets/apparel-accessories.png'], ['Personalized Grips', 'Your club, your palm, your signature.', 'assets/apparel-grips.png'], ['Trendy Global Gear', 'Pieces you won\'t see on any US shelf.', 'assets/apparel-global.png'], ].map(([t, d, src], i) => (

{t}

Coming Soon

{d}

))}
{/* Personalization */}
Personalization

Your gear. Your identity.

Custom club grips, headcovers, bags, and accessories designed around your personality. No two setups alike.

setEmail(e.target.value)} placeholder="you@email.com" style={{ color: 'var(--charcoal)', borderColor: 'rgba(26,26,26,0.2)' }} />
); } window.PageApparel = PageApparel;