From 082b38eab512ed0e4dbb1e9781a2f5077567f963 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 01:37:18 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 131 +++++++++++------------------------------------ 1 file changed, 29 insertions(+), 102 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 52a87eb..a230640 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,7 +5,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav import HeroSplit from '@/components/sections/hero/HeroSplit'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import BlogCardThree from '@/components/sections/blog/BlogCardThree'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; @@ -16,8 +16,8 @@ export default function HomePage() { const navItems = [ { name: "Accueil", id: "/" }, { name: "Menu", id: "/menu" }, - { name: "À Propos", id: "about" }, - { name: "Galerie", id: "gallery" }, + { name: "À Propos", id: "/about" }, + { name: "Galerie", id: "/gallery" }, { name: "Réservation", id: "/reservation" }, ]; @@ -26,13 +26,13 @@ export default function HomePage() { items: [ { label: "Accueil", href: "/" }, { label: "Menu", href: "/menu" }, - { label: "À Propos", href: "#about" }, + { label: "À Propos", href: "/about" }, ], }, { items: [ { label: "Réservation", href: "/reservation" }, - { label: "Galerie", href: "#gallery" }, + { label: "Galerie", href: "/gallery" }, { label: "Contact", href: "#contact" }, ], }, @@ -120,42 +120,24 @@ export default function HomePage() { features={[ { id: 1, - title: "Assiette du Chasseur", - description: "Notre signature : viande de gibier tendre et succulente, accompagnée de légumes de saison et sauce riche aux champignons sauvages.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-pieces-with-various-vegetables_140725-44188.jpg?_wi=1", - imageAlt: "Assiette du Chasseur", - }, + title: "Assiette du Chasseur", description: "Notre signature : viande de gibier tendre et succulente, accompagnée de légumes de saison et sauce riche aux champignons sauvages.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-pieces-with-various-vegetables_140725-44188.jpg?_wi=1", imageAlt: "Assiette du Chasseur"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/bowl-breaded-chicken-filled-with-cheese-lettuce_140725-5978.jpg?_wi=1", - imageAlt: "Accompagnements", - }, + imageSrc: "http://img.b2bpic.net/free-photo/bowl-breaded-chicken-filled-with-cheese-lettuce_140725-5978.jpg?_wi=1", imageAlt: "Accompagnements"}, }, { id: 2, - title: "Assiette du Cueilleur", - description: "Une célébration des produits locaux : légumes frais, herbes aromatiques et fromages régionaux dans une présentation élégante.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/bowl-breaded-chicken-filled-with-cheese-lettuce_140725-5978.jpg?_wi=2", - imageAlt: "Assiette du Cueilleur", - }, + title: "Assiette du Cueilleur", description: "Une célébration des produits locaux : légumes frais, herbes aromatiques et fromages régionaux dans une présentation élégante.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/bowl-breaded-chicken-filled-with-cheese-lettuce_140725-5978.jpg?_wi=2", imageAlt: "Assiette du Cueilleur"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/celebrating-relationship-with-red-wine-kitchen_482257-7770.jpg?_wi=1", - imageAlt: "Sélection de vins", - }, + imageSrc: "http://img.b2bpic.net/free-photo/celebrating-relationship-with-red-wine-kitchen_482257-7770.jpg?_wi=1", imageAlt: "Sélection de vins"}, }, { id: 3, - title: "Miche Étagée de l'Aventurier", - description: "Un pain artisanal garni de délices : charcuteries fines, fromages affinés et condiments maison pour une expérience authentique.", - phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/celebrating-relationship-with-red-wine-kitchen_482257-7770.jpg?_wi=2", - imageAlt: "Présentation", - }, + title: "Miche Étagée de l'Aventurier", description: "Un pain artisanal garni de délices : charcuteries fines, fromages affinés et condiments maison pour une expérience authentique.", phoneOne: { + imageSrc: "http://img.b2bpic.net/free-photo/celebrating-relationship-with-red-wine-kitchen_482257-7770.jpg?_wi=2", imageAlt: "Présentation"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/side-view-chocolate-cake-decorated-with-strawberry-plate_141793-2962.jpg?_wi=1", - imageAlt: "Desserts", - }, + imageSrc: "http://img.b2bpic.net/free-photo/side-view-chocolate-cake-decorated-with-strawberry-plate_141793-2962.jpg?_wi=1", imageAlt: "Desserts"}, }, ]} showStepNumbers={true} @@ -170,57 +152,29 @@ export default function HomePage() {
-
@@ -228,38 +182,11 @@ export default function HomePage() { Date: Mon, 9 Mar 2026 01:37:18 +0000 Subject: [PATCH 2/2] Update src/app/reservation/page.tsx --- src/app/reservation/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/reservation/page.tsx b/src/app/reservation/page.tsx index 3c4fa35..51822cb 100644 --- a/src/app/reservation/page.tsx +++ b/src/app/reservation/page.tsx @@ -13,8 +13,8 @@ export default function ReservationPage() { const navItems = [ { name: "Accueil", id: "/" }, { name: "Menu", id: "/menu" }, - { name: "À Propos", id: "about" }, - { name: "Galerie", id: "gallery" }, + { name: "À Propos", id: "/about" }, + { name: "Galerie", id: "/gallery" }, { name: "Réservation", id: "/reservation" }, ]; @@ -23,13 +23,13 @@ export default function ReservationPage() { items: [ { label: "Accueil", href: "/" }, { label: "Menu", href: "/menu" }, - { label: "À Propos", href: "#about" }, + { label: "À Propos", href: "/about" }, ], }, { items: [ { label: "Réservation", href: "/reservation" }, - { label: "Galerie", href: "#gallery" }, + { label: "Galerie", href: "/gallery" }, { label: "Contact", href: "#contact" }, ], }, -- 2.49.1