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