From 82eddd78c14047b52932a5c4480cc707f56c7c63 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:47:13 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5ae524d..343e35f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Le Bistronome - Gastronomie Accessible à Nice", description: "Restaurant gastronomique à Nice offrant une cuisine sincère, exécutée avec perfection à des prix accessibles. 500+ avis cinq étoiles. Réservez votre table maintenant.", keywords: "restaurant Nice, cuisine gastronomique, bistrot français, réservation restaurant, gastronomie accessible", metadataBase: new URL("https://lebistronome-nice.fr"), - alternates: { - canonical: "https://lebistronome-nice.fr"}, - openGraph: { - title: "Le Bistronome - Gastronomie Accessible à Nice", description: "Découvrez la gastronomie accessible : produits frais, plats faits maison, prix justes. Le Bistronome à Nice.", url: "https://lebistronome-nice.fr", siteName: "Le Bistronome", images: [ - { - url: "http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3426.jpg", alt: "Le Bistronome restaurant gastronomique Nice"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Le Bistronome - Gastronomie Accessible à Nice", description: "Réservez votre table dans notre restaurant gastronomique à Nice. Cuisine sincère, exécutée parfaitement à prix accessible.", images: ["http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3426.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Le Bistronome", description: "Restaurant gastronomique à Nice - Produits frais, cuisine authentique, prix accessibles"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +