From 2cb1353de6dec548c263f2d85a15edd9362b51ca Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 13:22:21 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bcc0778..bbd0879 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Le Petit Bouchon | Bistrot Gastronomique à Sancerre', - description: 'Découvrez Le Petit Bouchon à Crézancy-en-Sancerre. Une cuisine de terroir inventive et raffinée dans un cadre traditionnel.', + title: 'Culinary Mastery | Fine Dining', + description: 'Exquisite fine dining experience with locally sourced ingredients.', openGraph: { "title": "Le Petit Bouchon - Bistrot Gastronomique", "description": "Découvrez notre cuisine inventive et produits frais.", -- 2.49.1 From 6bcec982116c8337800bed220ada59af2c5b70b2 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 13:22:22 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 90 ++++++------------------------------------------ 1 file changed, 11 insertions(+), 79 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bfc6179..9c564f3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,5 @@ 'use client'; + import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; @@ -8,104 +9,35 @@ import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import { Zap, Award, Utensils, Star } from 'lucide-react'; export default function Page() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } - ]; - + const navItems = [{ name: 'Home', id: '/' }, { name: 'Contact', id: '/contact' }]; + return ( - +
- +
- +
- +
- +
- +
- +
); -- 2.49.1