From a4f68139223119a412895f500584fcf5d73c57c0 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 08:40:36 +0000 Subject: [PATCH] Bob AI: Added client logos section below hero --- src/pages/HomePage.tsx | 4 ++- src/pages/HomePage/sections/ClientLogos.tsx | 28 +++++++++++++++++++++ 2 files changed, 31 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 bace815..9e5fdc4 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -13,10 +13,12 @@ import TestimonialsSection from './HomePage/sections/Testimonials'; import ContactSection from './HomePage/sections/Contact'; -import FaqSection from './HomePage/sections/Faq';export default function HomePage(): React.JSX.Element { +import FaqSection from './HomePage/sections/Faq'; +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..60c5fb9 --- /dev/null +++ b/src/pages/HomePage/sections/ClientLogos.tsx @@ -0,0 +1,28 @@ + +export default function ClientLogos() { + const logos = [ + "Microsoft", + "Google", + "Amazon", + "Meta", + "OpenAI", + "Nvidia" + ]; + + return ( +
+
+

+ Trusted by industry leaders +

+
+ {logos.map((logo, idx) => ( +
+ {logo} +
+ ))} +
+
+
+ ); +} -- 2.49.1