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 +} 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 ( + + + + + + + + ); +}