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