3 Commits

Author SHA1 Message Date
65dd220337 Merge version_3 into main
Merge version_3 into main
2026-02-26 21:50:52 +00:00
449ad87930 Bob AI: i dont like this hero section 2026-02-26 23:50:44 +02:00
6de76094fd Merge version_2 into main
Merge version_2 into main
2026-02-26 21:48:16 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import HeroCentered from '@/components/sections/hero/HeroCentered';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
@@ -42,19 +42,28 @@ export default function BakeryPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroOverlay <HeroCentered
title="Freshly Baked Happiness Every Day" title="Artisan Baked Goods Made Fresh Daily"
description="Handcrafted artisan breads, pastries, and desserts made with the finest ingredients and love. Order your favorites online and taste the difference." description="Discover our selection of handcrafted breads, pastries, and custom cakes. Each item is baked with premium ingredients and passion. Order online for pickup or delivery."
tag="Welcome to Sweet Haven" background={{ variant: "radial-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/woman-holding-bread-dark-table-with-eggs-flour-bowl-glass-oil_114579-22475.jpg" avatars={[
imageAlt="Beautiful array of fresh baked goods in our bakery" { name: "Sarah", image: "https://img.b2bpic.net/free-photo/portrait-woman-baker-apron_114579-12345.jpg" },
textPosition="bottom-left" { name: "Emma", image: "https://img.b2bpic.net/free-photo/smiling-baker-holding-fresh-bread_114579-12346.jpg" },
showBlur={true} { name: "Lisa", image: "https://img.b2bpic.net/free-photo/female-baker-with-pastries_114579-12347.jpg" }
showDimOverlay={false}
buttons={[
{ text: "Shop Now", href: "#products" },
{ text: "Learn Our Story", href: "#about" }
]} ]}
avatarText="Join 500+ happy customers"
buttons={[
{ label: "Browse Products", href: "#products", dataWebildId: "btn_browse_products" },
{ label: "Order Now", href: "#order", dataWebildId: "btn_order_now" }
]}
marqueeItems={[
{ text: "Sourdough Bread", icon: "🍞" },
{ text: "Croissants", icon: "🥐" },
{ text: "Custom Cakes", icon: "🎂" },
{ text: "Pastries", icon: "🥧" }
]}
marqueeSpeed={25}
showMarqueeCard={true}
/> />
</div> </div>