From 7e4675203e534907e446848f0f150dcd127b305c Mon Sep 17 00:00:00 2001 From: Josue Brenes Date: Sat, 21 Mar 2026 11:24:03 -0600 Subject: [PATCH] feat: enhance TrustedByStartups component with Marquee for logo display Integrated a Marquee component to showcase startup logos in a dynamic scrolling format, improving visual engagement. Adjusted layout and spacing for better responsiveness and aesthetics. --- .../social-proof/TrustedByStartups.tsx | 53 ++++++++++++------- 1 file changed, 34 insertions(+), 19 deletions(-) diff --git a/src/features/social-proof/TrustedByStartups.tsx b/src/features/social-proof/TrustedByStartups.tsx index 5febb5d..0ac97ce 100644 --- a/src/features/social-proof/TrustedByStartups.tsx +++ b/src/features/social-proof/TrustedByStartups.tsx @@ -1,4 +1,5 @@ import Image from "next/image"; +import { Marquee } from "@/components/ui/marquee"; const startups = [ { @@ -19,30 +20,44 @@ export function TrustedStartups() { return (
-
-
+
+

Trusted by fast-growing{" "} startups and enterprises

-
-
- {startups.map(startup => ( -
- {startup.name} -
- ))} +
+
+ + {startups.map(startup => ( +
+ {startup.name} +
+ ))} +