3 Commits

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