diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index 76e335f..61ef67a 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -30,7 +30,7 @@ export default function BlogPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
- { name: "Menu", id: "menu" },
+ { name: "Menu", id: "/menu" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
@@ -63,10 +63,10 @@ export default function BlogPage() {
columns={[
{
title: "Navigate", items: [
- { label: "Home", href: "#hero" },
- { label: "About", href: "#about" },
- { label: "Menu", href: "#menu" },
- { label: "Team", href: "#team" }
+ { label: "Home", href: "/" },
+ { label: "About", href: "about" },
+ { label: "Menu", href: "/menu" },
+ { label: "Team", href: "team" }
]
},
{
@@ -79,8 +79,8 @@ export default function BlogPage() {
},
{
title: "Discover", items: [
- { label: "Our Story", href: "#about" },
- { label: "Chef's Menu", href: "#menu" },
+ { label: "Our Story", href: "about" },
+ { label: "Chef's Menu", href: "/menu" },
{ label: "Events", href: "#" },
{ label: "Catering", href: "#" }
]
diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
new file mode 100644
index 0000000..2090ffd
--- /dev/null
+++ b/src/app/menu/page.tsx
@@ -0,0 +1,121 @@
+"use client"
+
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import ProductCardFour from '@/components/sections/product/ProductCardFour';
+import FooterSimple from '@/components/sections/footer/FooterSimple';
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import { UtensilsCrossed } from "lucide-react";
+import ReactLenis from "lenis/react";
+
+export default function MenuPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b4ed823..5682829 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,9 +30,9 @@ export default function SababaKitchenPage() {