diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index ff730e2..b0d83d0 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -29,12 +29,14 @@ export default function BlogPage() {
@@ -64,14 +66,14 @@ export default function BlogPage() {
columns={[
{
title: "About Us", items: [
- { label: "Our Story", href: "#about" },
- { label: "Menu", href: "#menu" },
+ { label: "Our Story", href: "/#about" },
+ { label: "Menu", href: "/#menu" },
],
},
{
title: "Help", items: [
- { label: "FAQ", href: "#faq" },
- { label: "Contact", href: "#contact" },
+ { label: "FAQ", href: "/#faq" },
+ { label: "Contact", href: "/#contact" },
],
},
{
diff --git a/src/app/page.tsx b/src/app/page.tsx
index ca678e9..178c226 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -3,7 +3,7 @@
import { Phone } from 'lucide-react';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
-import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
+import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
@@ -28,30 +28,30 @@ export default function LandingPage() {
-
@@ -64,7 +64,7 @@ export default function LandingPage() {
]}
useInvertedBackground={false}
ariaLabel="About section detailing Ninja Panda's story and culinary philosophy."
- buttons={[{ text: 'Learn More', href: '#about' }]}
+ buttons={[{ text: 'Learn More', href: '/#about' }]}
showBorder={true}
titleClassName="text-center md:text-left"
descriptionClassName="text-center md:text-left mx-auto max-w-2xl md:max-w-none"
@@ -239,8 +239,8 @@ export default function LandingPage() {