diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2f84791..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Les Dunes - Restaurant Caen | Jardin Secret & Cuisine Maison", description: "Découvrez Les Dunes, le restaurant caché de Caen. Cuisine maison, jardin bohème, galettes délicieuses et desserts dangereux. Réservez votre table dès maintenant.", keywords: "restaurant Caen, restaurant terrasse Caen, restaurant jardin Caen, galettes Caen, restaurant fait maison Caen", metadataBase: new URL("https://lesdunes-caen.fr"), - alternates: { - canonical: "https://lesdunes-caen.fr" - }, - openGraph: { - title: "Les Dunes - Restaurant Caen", description: "Le restaurant caché que les Caennais adorent. Cuisine maison, jardin secret, desserts dangereux.", url: "https://lesdunes-caen.fr", siteName: "Les Dunes", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/family-celebrating-christmas-southern-hemisphere_23-2149172606.jpg", alt: "Jardin secret des Dunes" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Les Dunes - Restaurant Caen", description: "Bienvenue au restaurant caché que les Caennais adorent.", images: ["http://img.b2bpic.net/free-photo/family-celebrating-christmas-southern-hemisphere_23-2149172606.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -