diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
new file mode 100644
index 0000000..afade7f
--- /dev/null
+++ b/src/app/menu/page.tsx
@@ -0,0 +1,65 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+
+export default function MenuPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 7e31036..64c112c 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -33,7 +33,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
- { name: "Menu", id: "#menu" },
+ { name: "Menu", id: "/menu" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "#contact" },
]}
@@ -62,7 +62,7 @@ export default function LandingPage() {
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-mature-woman-having-fun-time_23-2149232849.jpg", imageAlt: "sci-fi spaceship interior" },
{ imageSrc: "http://img.b2bpic.net/free-photo/cosmic-background-with-golden-neon-laser-lights_181624-27799.jpg", imageAlt: "sci-fi spaceship interior" }
]}
- buttons={[{ text: "Order Interstellar", href: "#menu" }]}
+ buttons={[{ text: "Order Interstellar", href: "/menu" }]}
/>
@@ -77,22 +77,6 @@ export default function LandingPage() {
/>
-
-