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}