Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f62a9472d6 | |||
| 982672301f | |||
| f5556592af |
@@ -1,7 +1,7 @@
|
|||||||
"use client"
|
"use client"
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
@@ -43,22 +43,17 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero-section" data-section="hero-section">
|
<div id="hero-section" data-section="hero-section">
|
||||||
<HeroOverlay
|
<HeroLogo
|
||||||
title="Artisan Baked Goods Delivered to Your Doorstep"
|
logoText="Warm & Crumb"
|
||||||
description="Experience the warmth of freshly baked breads, pastries, and desserts made with love using time-honored techniques and the finest ingredients."
|
description="Artisan Baked Goods Delivered to Your Doorstep"
|
||||||
tag="Fresh Daily"
|
|
||||||
tagIcon={Sparkles}
|
|
||||||
tagAnimation="slide-up"
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View Our Menu", href: "#products-section" },
|
{ text: "View Our Menu", href: "products-section" },
|
||||||
{ text: "Visit Us", href: "#contact-section" }
|
{ text: "Visit Us", href: "contact-section" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379551.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379551.jpg"
|
||||||
imageAlt="Warm and inviting bakery interior with fresh pastries on display"
|
imageAlt="Warm and inviting bakery interior with fresh pastries on display"
|
||||||
textPosition="bottom-left"
|
|
||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
showBlur={true}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -70,8 +65,8 @@ export default function LandingPage() {
|
|||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore Our Products", href: "#products-section" },
|
{ text: "Explore Our Products", href: "products-section" },
|
||||||
{ text: "Visit Our Bakery", href: "#contact-section" }
|
{ text: "Visit Our Bakery", href: "contact-section" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="https://img.b2bpic.net/free-photo/baker-forming-dough-sphere-wooden-board_74855-5658.jpg"
|
imageSrc="https://img.b2bpic.net/free-photo/baker-forming-dough-sphere-wooden-board_74855-5658.jpg"
|
||||||
@@ -181,7 +176,7 @@ export default function LandingPage() {
|
|||||||
tagIcon={HelpCircle}
|
tagIcon={HelpCircle}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Contact Us", href: "#contact-section" }
|
{ text: "Contact Us", href: "contact-section" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -216,16 +211,16 @@ export default function LandingPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Explore", items: [
|
title: "Explore", items: [
|
||||||
{ label: "Home", href: "#hero-section" },
|
{ label: "Home", href: "hero-section" },
|
||||||
{ label: "Our Story", href: "#about-section" },
|
{ label: "Our Story", href: "about-section" },
|
||||||
{ label: "Menu", href: "#products-section" },
|
{ label: "Menu", href: "products-section" },
|
||||||
{ label: "Testimonials", href: "#testimonials-section" }
|
{ label: "Testimonials", href: "testimonials-section" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{ label: "FAQ", href: "#faq-section" },
|
{ label: "FAQ", href: "faq-section" },
|
||||||
{ label: "Contact Us", href: "#contact-section" },
|
{ label: "Contact Us", href: "contact-section" },
|
||||||
{ label: "Delivery Info", href: "#" },
|
{ label: "Delivery Info", href: "#" },
|
||||||
{ label: "Returns Policy", href: "#" }
|
{ label: "Returns Policy", href: "#" }
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user