From aebd0911fd8139d9aff39a13cba74a89d32efb89 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 3 Jul 2026 14:33:04 +0000 Subject: [PATCH] Bob AI: Add satisfaction guarantee badge section near CTA --- src/pages/HomePage.tsx | 4 +++- src/pages/HomePage/sections/Guarantee.tsx | 12 ++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/Guarantee.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 4576e51..3d4f921 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -18,7 +18,8 @@ import ContactSection from './HomePage/sections/Contact'; import FaqSection from './HomePage/sections/Faq'; import CertificationsSection from './HomePage/sections/Certifications'; import ClientLogosSection from './HomePage/sections/ClientLogos'; -import FloatingCtaSection from './HomePage/sections/FloatingCta';export default function HomePage(): React.JSX.Element { +import FloatingCtaSection from './HomePage/sections/FloatingCta'; +import GuaranteeSection from './HomePage/sections/Guarantee';export default function HomePage(): React.JSX.Element { return ( <> @@ -37,6 +38,7 @@ import FloatingCtaSection from './HomePage/sections/FloatingCta';export default + diff --git a/src/pages/HomePage/sections/Guarantee.tsx b/src/pages/HomePage/sections/Guarantee.tsx new file mode 100644 index 0000000..58e0898 --- /dev/null +++ b/src/pages/HomePage/sections/Guarantee.tsx @@ -0,0 +1,12 @@ +import { ShieldCheck } from "lucide-react"; + +export default function GuaranteeSection() { + return ( +
+
+ + 100% Satisfaction Guarantee — Love your loaf or it's on us. +
+
+ ); +} \ No newline at end of file -- 2.49.1