From 36409ba58069983a0ff00d9a12289e1ca55af0f4 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:41:06 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2788 -------------------------------------------- 1 file changed, 2788 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7eed36..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2788 +0,0 @@ -import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Shangri-La | Cuisine Asiatique Authentique", description: "Découvrez la cuisine asiatique authentique et raffinée de Shangri-La. Ingrédients frais, recettes traditionnelles, ambiance chaleureuse. Réservez votre table.", keywords: "restaurant asiatique, cuisine authentique, asiatique authentique, restaurant familial, reservations", metadataBase: new URL("https://shangri-la-restaurant.com"), - alternates: { - canonical: "https://shangri-la-restaurant.com" - }, - openGraph: { - title: "Shangri-La | Cuisine Asiatique Authentique", description: "Une cuisine asiatique authentique, raffinée et faite maison. Réservez votre table chez Shangri-La.", url: "https://shangri-la-restaurant.com", siteName: "Shangri-La Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/mixed-salad-topped-with-lime-slices_140725-3473.jpg", alt: "Plat signature de Shangri-La" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Shangri-La | Cuisine Asiatique Authentique", description: "Découvrez la cuisine asiatique authentique. Réservez votre table chez Shangri-La.", images: ["http://img.b2bpic.net/free-photo/mixed-salad-topped-with-lime-slices_140725-3473.jpg"] - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -