Merge version_3_1777196055418 into main #2

Merged
bender merged 1 commits from version_3_1777196055418 into main 2026-04-26 09:36:44 +00:00

View File

@@ -1,11 +1,10 @@
import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay';
import ContactSplitEmail from '@/components/sections/contact/ContactSplitEmail';
import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
import FeaturesIconCards from '@/components/sections/features/FeaturesIconCards';
import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaCarousel';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import ProductMediaCards from '@/components/sections/product/ProductMediaCards';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
import { Clock, ShieldCheck, Truck } from "lucide-react";
export default function HomePage() {
return (
@@ -136,26 +135,35 @@ export default function HomePage() {
</div>
<div id="features" data-section="features">
<FeaturesIconCards
<FeaturesMediaCarousel
tag="Why Us"
title="Freshness You Can Taste"
description="We take pride in our process, ingredients, and delivery services."
features={[
title="Facts About ArtisanBakery"
description="Discover what makes our bakery special and why our community loves us."
items={[
{
icon: ShieldCheck,
title: "Premium Ingredients",
description: "Only organic, local sources for our flour and fruits.",
title: "100% Organic Flour",
description: "We source all our flour from local, organic farms to ensure the highest quality and taste in every bite.",
buttonIcon: "ArrowRight",
imageSrc: "http://img.b2bpic.net/free-photo/seeds-bread-cutting-board_23-2148544650.jpg"
},
{
icon: Clock,
title: "Daily Baking",
description: "Fresh items made every single morning at dawn.",
title: "Baked Fresh Daily",
description: "Our bakers start at 3 AM every day so you can enjoy warm, fresh pastries and bread every morning.",
buttonIcon: "ArrowRight",
imageSrc: "http://img.b2bpic.net/free-photo/baker-enjoying-steaming-coffee-outside-his-urban-bakery_23-2152031673.jpg"
},
{
icon: Truck,
title: "Quick Delivery",
description: "Doorstep delivery to keep you fueled and satisfied.",
title: "Zero Artificial Preservatives",
description: "We believe in pure, natural ingredients. You won't find any artificial preservatives or additives in our products.",
buttonIcon: "ArrowRight",
imageSrc: "http://img.b2bpic.net/free-photo/freshly-baked-croissants-with-raspberry-jam-raspberry-fruits_114579-11696.jpg"
},
{
title: "Community First",
description: "At the end of each day, we donate all unsold baked goods to local food banks and shelters.",
buttonIcon: "ArrowRight",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girls-buys-buns-bakery_1157-24668.jpg"
}
]}
/>
</div>
@@ -198,4 +206,4 @@ export default function HomePage() {
</div>
</>
);
}
}