import ScrollReveal from "./ScrollReveal"; const clients = [ { name: "Washington Commanders", logo: "/images/clients/commanders.png", width: 160, height: 88 }, { name: "CVS / Aetna", logo: "/images/clients/cvs.png", width: 140, height: 17 }, { name: "UBS", logo: "/images/clients/ubs.png", width: 120, height: 44 }, { name: "BetMGM", logo: "/images/clients/betmgm.png", width: 160, height: 40 }, { name: "Intuit", logo: "/images/clients/intuit.png", width: 130, height: 28 }, { name: "Monumental Sports", logo: "/images/clients/monumental.svg", width: 150, height: 40 }, { name: "COSM", logo: "/images/clients/cosm.svg", width: 120, height: 35 }, { name: "Red Sands", logo: "/images/clients/redsands.svg", width: 130, height: 35 }, ]; export default function Clients() { return (

Trusted By Industry Leaders

{clients.map((client) => (
{client.name}
))}
); }