1 Commits

Author SHA1 Message Date
kudinDmitriyUp
aebd0911fd Bob AI: Add satisfaction guarantee badge section near CTA 2026-07-03 14:33:04 +00:00
2 changed files with 15 additions and 1 deletions

View File

@@ -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 (
<>
<HeroSection />
@@ -37,6 +38,7 @@ import FloatingCtaSection from './HomePage/sections/FloatingCta';export default
<SocialProofSection />
<FaqSection />
<GuaranteeSection />
<ContactSection />
<FloatingCtaSection />

View File

@@ -0,0 +1,12 @@
import { ShieldCheck } from "lucide-react";
export default function GuaranteeSection() {
return (
<section data-webild-section="guarantee" className="w-full bg-background pt-16 pb-8 flex justify-center">
<div className="inline-flex items-center gap-3 px-6 py-3 rounded-full bg-card border border-black/5 shadow-sm">
<ShieldCheck className="w-6 h-6 text-accent" />
<span className="text-sm font-medium text-foreground">100% Satisfaction Guarantee Love your loaf or it's on us.</span>
</div>
</section>
);
}