From 449486eedd5661e78eeccc200a0de4f77b0fcf7e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 05:26:12 +0000 Subject: [PATCH 1/2] Add src/app/menu/page.tsx --- src/app/menu/page.tsx | 128 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 src/app/menu/page.tsx 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 ( + + + + + +
+ +
+ + +
+ ); +} -- 2.49.1 From aa1b29a210059f3ba49684da6c480930d5bac718 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 05:26:13 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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" } ] }, { -- 2.49.1