From 5ab8de0f02e9a5cec0011db4c49a183cb0cc4da4 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 3 Jul 2026 14:23:16 +0000 Subject: [PATCH] Bob AI: Added a certifications logo strip below the hero section. --- src/pages/HomePage.tsx | 4 ++- .../HomePage/sections/Certifications.tsx | 35 +++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/Certifications.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 080494b..7b9bbbe 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -15,10 +15,12 @@ import SocialProofSection from './HomePage/sections/SocialProof'; 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 CertificationsSection from './HomePage/sections/Certifications';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/Certifications.tsx b/src/pages/HomePage/sections/Certifications.tsx new file mode 100644 index 0000000..700271c --- /dev/null +++ b/src/pages/HomePage/sections/Certifications.tsx @@ -0,0 +1,35 @@ +import LoopCarousel from '@/components/ui/LoopCarousel'; +import { ShieldCheck, Award, Leaf, CheckCircle, Star } from 'lucide-react'; + +export default function CertificationsSection() { + return ( +
+
+ +
+
+ + Food Safety Certified +
+
+ + 100% Organic Grains +
+
+ + Artisan Bakers Guild +
+
+ + Non-GMO Verified +
+
+ + Top Rated Bakery 2024 +
+
+
+
+
+ ); +} \ No newline at end of file