Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3f2abd280f | |||
| 5802de42e0 | |||
| 486c022f0e | |||
| 561bb2d366 |
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user