diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
new file mode 100644
index 0000000..9363342
--- /dev/null
+++ b/src/app/menu/page.tsx
@@ -0,0 +1,128 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
+import ContactSplit from '@/components/sections/contact/ContactSplit';
+import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+import { Sparkles, Clock } from 'lucide-react';
+
+export default function MenuPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index af54ef0..ebb4cd2 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,6 +10,7 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Coffee, Sparkles, Leaf, MapPin, Heart, Clock } from 'lucide-react';
+import Link from 'next/link';
export default function LandingPage() {
return (
@@ -29,9 +30,9 @@ export default function LandingPage() {
@@ -197,9 +198,9 @@ export default function LandingPage() {
columns={[
{
items: [
- { label: "Home", href: "#hero" },
+ { label: "Home", href: "/" },
{ label: "About", href: "#about" },
- { label: "Menu", href: "#menu" }
+ { label: "Menu", href: "/menu" }
]
},
{