From d21aeb105ea3525d585331032c8eb29a487a555f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 17:25:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++----------------------------------------- 1 file changed, 6 insertions(+), 51 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 59eb9f3..e8480c7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,64 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "La Boul'Mich | Brasserie Française à Montauban", description: "Découvrez La Boul'Mich, une brasserie authentique à Montauban. Cuisine française généreuse, produits frais, ambiance chaleureuse. Note 4.9/5. Réservez votre table dès maintenant.", keywords: "brasserie Montauban, restaurant français, cuisine authentique, magret canard, bistro Montauban", metadataBase: new URL("https://laboulmieh.fr"), - alternates: { - canonical: "https://laboulmieh.fr" - }, - openGraph: { - title: "La Boul'Mich | Brasserie Française Authentique", description: "Expérience culinaire raffinée au cœur de Montauban. Cuisine française généreuse avec produits de qualité. Réservez votre table dès maintenant.", url: "https://laboulmieh.fr", siteName: "La Boul'Mich", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/happy-couple-lovely-date_23-2148422309.jpg", alt: "La Boul'Mich - Intérieur élégant de la brasserie" - } - ] - }, - twitter: { - card: "summary_large_image", title: "La Boul'Mich | Brasserie Française", description: "Brasserie authentique à Montauban. Cuisine généreuse, produits frais, ambiance chaleureuse.", images: ["http://img.b2bpic.net/free-photo/happy-couple-lovely-date_23-2148422309.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "La Boul'Mich - Brasserie Authentique à Montauban", description: "Découvrez La Boul'Mich, une brasserie authentique au cœur de Montauban. Cuisine française généreuse, produits frais et ambiance chaleureuse. Réservez votre table dès maintenant."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}