From f643095e5ba08fe4c87cd7905fec6bf870d0f409 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 21:27:55 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 6 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d29aa9c..1b0a99e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Le Marmara - Kebab Turc Authentique", description: "Découvrez Le Marmara, le meilleur restaurant turc du quartier. Kebabs, kofta et spécialités turques authentiques. Ouvert 7j/7, livraison gratuite.", keywords: "kebab, restaurant turc, restauration rapide, spécialités turques, kofta, pita, sandwiches", openGraph: { - title: "Le Marmara - Kebab Turc Authentique", description: "Les meilleures spécialités turques du quartier. Kebabs, kofta, poulet grillé et bien d'autres délices.", siteName: "Le Marmara", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-traditional-turkish-dish-raw-cutlet-kyufta-with-pita-bread-tomatoes-lemon-with-lettuce-stand_141793-13198.jpg", alt: "Le Marmara - Kebab Turc Authentique"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Le Marmara - Kebab Turc", description: "Les meilleures spécialités turques du quartier", images: [ - "http://img.b2bpic.net/free-photo/top-view-traditional-turkish-dish-raw-cutlet-kyufta-with-pita-bread-tomatoes-lemon-with-lettuce-stand_141793-13198.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Le Marmara - Spécialités Turques", description: "Les meilleures spécialités turques du quartier. Kebabs, kofta, poulet grillé et bien d'autres délices authentiques."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -