Merge version_3 into main #2

Merged
bender merged 1 commits from version_3 into main 2026-02-26 22:01:22 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import TextAbout from '@/components/sections/about/TextAbout';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FeatureCardTwentyTwo from '@/components/sections/feature/FeatureCardTwentyTwo';
@@ -40,19 +40,39 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="Artisan Bakery"
description="Freshly baked goodness, crafted daily with premium ingredients and time-honored techniques. Experience the warmth and comfort of authentic artisan baking."
<HeroBillboardCarousel
title="Freshly Baked Every Morning"
description="Discover our rotating selection of artisan breads, pastries, and seasonal specialties. Each item is crafted with premium ingredients and traditional baking methods."
background={{ variant: "radial-gradient" }}
tag="New Collection"
tagAnimation="pulse"
buttons={[
{ text: "Order Now", href: "#order" },
{ text: "Learn More", href: "#about" }
{ text: "Shop Now", href: "#shop", dataWebildId: "hero_shop_btn" },
{ text: "View Menu", href: "#menu", dataWebildId: "hero_menu_btn" }
]}
buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/baker-with-flour-hand_169016-1422.jpg"
imageAlt="Fresh artisan bakery display"
mediaAnimation="slide-up"
frameStyle="card"
mediaItems={[
{
imageSrc: "https://img.b2bpic.net/free-photo/baker-with-flour-hand_169016-1422.jpg",
imageAlt: "Artisan sourdough bread"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/abstract-luxury-gradient-blue-background_53876-120942.jpg",
imageAlt: "Fresh croissants display"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/baker-with-flour-hand_169016-1422.jpg",
imageAlt: "Seasonal pastry collection"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/abstract-luxury-gradient-blue-background_53876-120942.jpg",
imageAlt: "Custom cake designs"
}
]}
ariaLabel="Hero carousel showcasing artisan bakery products"
containerClassName="py-20"
titleClassName="text-5xl font-bold text-amber-900"
descriptionClassName="text-lg text-amber-700"
/>
</div>