4 Commits

Author SHA1 Message Date
3f2abd280f Merge version_3 into main
Merge version_3 into main
2026-02-26 21:45:41 +00:00
5802de42e0 Bob AI: i dont like this hero section 2026-02-26 23:45:33 +02:00
486c022f0e Merge version_2 into main
Merge version_2 into main
2026-02-26 21:42:38 +00:00
561bb2d366 Bob AI: Replace the current NavbarLayoutFloatingOverlay navbar with 2026-02-26 23:42:23 +02:00

View File

@@ -1,14 +1,15 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import AboutMetric from '@/components/sections/about/AboutMetric';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Award, Clock, Croissant, Facebook, Instagram, Mail, Twitter, Users } from 'lucide-react';
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
export default function LandingPage() {
return (
@@ -24,36 +25,49 @@ export default function LandingPage() {
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Sweet Haven"
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Products", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Order Now", href: "#contact"
}}
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Sweet Haven"
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Products", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Order Now", href: "#contact"
}}
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlay
title="Artisan Bakery Crafted with Love"
description="Experience the warmth and freshness of handmade breads, pastries, and desserts. Every bite tells a story of passion and tradition."
tag="Fresh Daily"
imageSrc="http://img.b2bpic.net/free-photo/delicious-various-loaves-bread_23-2147761313.jpg"
imageAlt="Fresh bakery products and warm interior"
textPosition="bottom-left"
showBlur={true}
showDimOverlay={true}
<HeroSplitDualMedia
title="Handcrafted Goodness, Baked Fresh"
description="Discover our artisanal selection of breads, pastries, and custom cakes made with premium ingredients and time-honored techniques."
background={{ variant: "radial-gradient" }}
tag="Baked Daily"
tagIcon={Star}
tagAnimation="pulse"
buttons={[
{ text: "Order Online", href: "#contact" },
{ text: "Learn More", href: "#about" }
{ text: "Order Now", href: "#contact", dataWebildId: "hero_order_btn" },
{ text: "View Menu", href: "#menu", dataWebildId: "hero_menu_btn" }
]}
buttonAnimation="slide"
mediaItems={[
{
imageSrc: "https://img.b2bpic.net/free-photo/delicious-various-loaves-bread_23-2147761313.jpg",
imageAlt: "Artisan bread selection"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/abstract-luxury-gradient-blue-background_53876-120942.jpg",
imageAlt: "Fresh pastries and desserts"
}
]}
mediaAnimation="fade"
rating={4.9}
ratingText="Loved by 500+ customers"
ariaLabel="Sweet Haven bakery hero section"
/>
</div>