// CLIENTS SECTION — who Rocketberry serves. // Placeholder list — swap in real client logos/names later. const CLIENTS = [ { id: 'northwind', name: 'Northwind Industries', sector: 'Manufacturing', mono: 'NW', color: '#D6248C', blurb: 'Tier-1 supplier · 12-line stamping facility' }, { id: 'velosys', name: 'Velosys Logistics', sector: 'Logistics', mono: 'VL', color: '#A14BCC', blurb: 'Mid-market 3PL across 4 regional hubs' }, { id: 'helio', name: 'Helio Care', sector: 'Healthcare', mono: 'HC', color: '#7027A8', blurb: 'Regional hospital network · 12 facilities' }, { id: 'atlas', name: 'Atlas Retail Group', sector: 'Retail', mono: 'AR', color: '#1F2754', blurb: 'Multi-banner grocery · 220 stores' }, { id: 'parallel', name: 'Parallel Finance', sector: 'Fintech', mono: 'PF', color: '#D6248C', blurb: 'SMB lending platform · $1.4B AUM' }, { id: 'solara', name: 'Solara Education', sector: 'EdTech', mono: 'SE', color: '#A14BCC', blurb: 'Online higher-ed · 44k active learners' }, { id: 'kinetic', name: 'Kinetic Properties', sector: 'Real Estate', mono: 'KP', color: '#7027A8', blurb: 'Commercial owner · 8.2M sq ft portfolio' }, { id: 'volta', name: 'Volta Mobility', sector: 'Automotive', mono: 'VM', color: '#1F2754', blurb: 'Multi-state dealer group · 62 stores' }, ]; const Clients = () => { return (
Operators who launched AI
with Rocketberry on board.} sub="From mid-market manufacturers to nation-scale retailers — these are the teams whose workflows we re-architected with AIDD." className="border-t border-token" >
{CLIENTS.map((c, i) => (
{/* Monogram badge */}
{c.mono}
#{String(i+1).padStart(2,'0')}
{c.sector}

{c.name}

{c.blurb}

))}
{/* Strip stat below grid */}
Working with {CLIENTS.length}+ operators across {new Set(CLIENTS.map(c => c.sector)).size} sectors.
See what we built
); }; window.CLIENTS = CLIENTS; window.Clients = Clients;