diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
new file mode 100644
index 0000000..6dfe62b
--- /dev/null
+++ b/src/app/menu/page.tsx
@@ -0,0 +1,88 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
+import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
+import ProductCardOne from '@/components/sections/product/ProductCardOne';
+
+export default function MenuPage() {
+ return (
+
+
+
+
+
+
({ ...p, imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg" }))}
+ />
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 1b79e6e..ba8ca56 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -31,7 +31,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
- { name: "Menu", id: "menu" },
+ { name: "Menu", id: "/menu" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -47,7 +47,7 @@ export default function LandingPage() {
description="Experience the art of culinary excellence in an intimate setting. Where tradition meets innovation, served with passion."
buttons={[
{ text: "Reserve a Table", href: "#contact" },
- { text: "View Menu", href: "#menu" },
+ { text: "View Menu", href: "/menu" },
]}
imageSrc="http://img.b2bpic.net/free-photo/two-men-cafe_23-2147775893.jpg"
mediaAnimation="blur-reveal"
@@ -118,7 +118,7 @@ export default function LandingPage() {