diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d335b1d..73227f5 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: 'Culinary Mastery', - description: 'Experience the finest dining with locally sourced ingredients and world-class chefs.', + title: 'Gastronomy | Fine Dining', + description: 'Experience the pinnacle of culinary excellence.', openGraph: { "title": "Le Petit Bouchon - Bistrot Gastronomique", "description": "Découvrez notre cuisine inventive et produits frais.", diff --git a/src/app/page.tsx b/src/app/page.tsx index ab97f91..462319c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ 'use client'; -import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import SplitAbout from '@/components/sections/about/SplitAbout'; @@ -10,39 +10,104 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -export default function Page() { - const navItems = [{ name: 'Home', id: '/' }, { name: 'Contact', id: '/contact' }]; - +export default function HomePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } + ]; + return ( - +
- +
- +
- +
- +
- +
);