diff --git a/src/app/page.tsx b/src/app/page.tsx
index 71bd9cc..83ff672 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,7 +1,7 @@
"use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
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 FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
@@ -43,22 +43,17 @@ export default function LandingPage() {
-
@@ -70,8 +65,8 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
- { text: "Explore Our Products", href: "#products-section" },
- { text: "Visit Our Bakery", href: "#contact-section" }
+ { text: "Explore Our Products", href: "products-section" },
+ { text: "Visit Our Bakery", href: "contact-section" }
]}
buttonAnimation="slide-up"
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}
tagAnimation="slide-up"
buttons={[
- { text: "Contact Us", href: "#contact-section" }
+ { text: "Contact Us", href: "contact-section" }
]}
buttonAnimation="slide-up"
/>
@@ -216,16 +211,16 @@ export default function LandingPage() {
columns={[
{
title: "Explore", items: [
- { label: "Home", href: "#hero-section" },
- { label: "Our Story", href: "#about-section" },
- { label: "Menu", href: "#products-section" },
- { label: "Testimonials", href: "#testimonials-section" }
+ { label: "Home", href: "hero-section" },
+ { label: "Our Story", href: "about-section" },
+ { label: "Menu", href: "products-section" },
+ { label: "Testimonials", href: "testimonials-section" }
]
},
{
title: "Support", items: [
- { label: "FAQ", href: "#faq-section" },
- { label: "Contact Us", href: "#contact-section" },
+ { label: "FAQ", href: "faq-section" },
+ { label: "Contact Us", href: "contact-section" },
{ label: "Delivery Info", href: "#" },
{ label: "Returns Policy", href: "#" }
]