From b1e2c29e256fc4e76788fa83bd75688da7f9119d Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Fri, 1 May 2026 14:21:11 -0400 Subject: [PATCH] fix: correct Clients section label from "Projects" to "Clients" --- src/components/Clients.tsx | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/components/Clients.tsx b/src/components/Clients.tsx index d555cc6..eaded58 100755 --- a/src/components/Clients.tsx +++ b/src/components/Clients.tsx @@ -1,10 +1,11 @@ +import Image from "next/image"; 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: "BetMGM", logo: "/images/clients/betmgm.svg", width: 140, 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 }, @@ -13,27 +14,25 @@ const clients = [ export default function Clients() { return ( -
+
-

- Trusted By Industry Leaders +

+ Clients

-
+
{clients.map((client) => (
- {client.name}
))}