From c4455351aa152762839736948cb470160b646a90 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 21:16:09 +0000 Subject: [PATCH] Bob AI: Added a client logos marquee section below the hero. --- src/pages/HomePage.tsx | 4 ++- src/pages/HomePage/sections/ClientLogos.tsx | 27 +++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/ClientLogos.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 8ea2c15..d8c51ee 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -14,10 +14,12 @@ import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -import ProductDiscoverySection from './HomePage/sections/ProductDiscovery';export default function HomePage(): React.JSX.Element { +import ProductDiscoverySection from './HomePage/sections/ProductDiscovery'; +import ClientLogosSection from './HomePage/sections/ClientLogos';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/ClientLogos.tsx b/src/pages/HomePage/sections/ClientLogos.tsx new file mode 100644 index 0000000..3cac349 --- /dev/null +++ b/src/pages/HomePage/sections/ClientLogos.tsx @@ -0,0 +1,27 @@ +import LoopCarousel from "@/components/ui/LoopCarousel"; + +export default function ClientLogosSection() { + return ( +
+
+

+ Featured in top publications +

+
+
+ +
+ {["VOGUE", "GQ", "HARPER'S BAZAAR", "ELLE", "ESQUIRE", "VANITY FAIR", "HYPEBEAST", "HIGHSNOBIETY"].map((logo, index) => ( +
+ {logo} +
+ ))} +
+
+
+
+ ); +} \ No newline at end of file -- 2.49.1