From 3de26e4842aef50fea28f0b8aec185c6668d673d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 23:51:55 +0000 Subject: [PATCH 1/2] Add src/app/menus/page.tsx --- src/app/menus/page.tsx | 70 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/app/menus/page.tsx diff --git a/src/app/menus/page.tsx b/src/app/menus/page.tsx new file mode 100644 index 0000000..edf13da --- /dev/null +++ b/src/app/menus/page.tsx @@ -0,0 +1,70 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; + +export default function MenusPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From ed5cb463c5e839e2e1051afe9e8cdffca2907fc9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 23:51:56 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c81e844..53f012b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,8 @@ export default function LandingPage() { navItems={[ { name: "Accueil", id: "hero" }, { name: "À Propos", id: "about" }, - { name: "Menu & Services", id: "features" }, + { name: "Menu", id: "/menus" }, + { name: "Nos Services", id: "features" }, { name: "Avis", id: "testimonials" }, { name: "Contact", id: "contact" }, ]} @@ -47,7 +48,7 @@ export default function LandingPage() { title="L'excellence de la viande à Ambilly" description="Découvrez Le Viand'Art, votre destination gastronomique pour des entrecôtes d'exception et une cuisine raffinée. Une expérience culinaire unique au 56 Rue de Genève." buttons={[ - { text: "Voir le Menu", href: "#features" }, + { text: "Voir le Menu", href: "/menus" }, { text: "Itinéraire", href: "#contact" }, ]} imageSrc="http://img.b2bpic.net/free-photo/boiled-chicken-with-asparagus-cauliflower_140725-9321.jpg" @@ -145,7 +146,7 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/full-shot-business-owner-standing-outdoors_23-2149434497.jpg" logoText="Le Viand'Art" columns={[ - { title: "Navigation", items: [{ label: "Accueil", href: "#hero" }, { label: "Menu", href: "#features" }] }, + { title: "Navigation", items: [{ label: "Accueil", href: "#hero" }, { label: "Menu", href: "/menus" }] }, { title: "Infos", items: [{ label: "Contact", href: "#contact" }, { label: "Mentions Légales", href: "#" }] }, ]} imageAlt="restaurant entrance evening exterior" @@ -154,4 +155,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1