From a64bfdf66dc2e71232aadb4a1441ab4733f5cb66 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 06:17:43 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c540dad..529d700 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,7 +31,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "home" }, { name: "About", id: "about" }, - { name: "Menu", id: "menu" }, + { name: "Products", id: "products" }, { name: "Gallery", id: "gallery" }, { name: "Find Us", id: "contact" } ]} @@ -115,7 +115,7 @@ export default function LandingPage() { tagIcon={Utensils} tagAnimation="slide-up" buttons={[ - { text: "Full Digital Menu", href: "#" } + { text: "View Full Menu", href: "/products" } ]} buttonAnimation="slide-up" textboxLayout="default" @@ -224,8 +224,8 @@ export default function LandingPage() { columns={[ { title: "Navigate", items: [ - { label: "Home", href: "#home" }, - { label: "Menu", href: "#menu" }, + { label: "Home", href: "/" }, + { label: "Products", href: "/products" }, { label: "Gallery", href: "#gallery" }, { label: "About", href: "#about" } ] @@ -235,14 +235,14 @@ export default function LandingPage() { { label: "Book a Table", href: "#booking" }, { label: "Call: +212 600 000 000", href: "tel:+212600000000" }, { label: "41 Rue des Banques, Marrakech", href: "https://maps.google.com/?q=41+Rue+des+Banques+Marrakech" }, - { label: "Events & Groups", href: "#" } + { label: "Events & Groups", href: "/" } ] }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Accessibility", href: "#" }, + { label: "Privacy Policy", href: "/" }, + { label: "Terms of Service", href: "/" }, + { label: "Accessibility", href: "/" }, { label: "Contact", href: "#contact" } ] } @@ -252,4 +252,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 1554c90a44b6eca129ea461c36e2b60cc2f9fad6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 06:17:44 +0000 Subject: [PATCH 2/2] Add src/app/products/page.tsx --- src/app/products/page.tsx | 114 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 src/app/products/page.tsx diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..483714d --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,114 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Utensils } from 'lucide-react'; + +export default function ProductsPage() { + return ( + + + + + + + + ); +} -- 2.49.1