// LogoStrip.jsx — client logos under hero const LogoStrip = () => { const clients = ['Acme', 'Northwind', 'Helvetia', 'Veridian', 'Lumen', 'Quartzo']; return (
{clients.map((c) => (
{c}
))}
); }; window.LogoStrip = LogoStrip;