diff --git a/src/app/layout.tsx b/src/app/layout.tsx index df07ddf..182fba9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Restaurant Kidam | Cuisine Marocaine Authentique à Vétroz", description: "Découvrez le Restaurant Kidam à Vétroz. Cuisine marocaine authentique, tajines savoureux, couscous royal. Réservez votre table ou appelez-nous. 4,5/5 ⭐", keywords: "restaurant marocain Vétroz, tajine, couscous, cuisine marocaine, réservation Valais, Sion, Conthey", metadataBase: new URL("https://kidam-restaurant.ch"), - alternates: { - canonical: "https://kidam-restaurant.ch"}, - openGraph: { - title: "Restaurant Kidam | Les Saveurs du Maroc au Valais", description: "Cuisine marocaine traditionnelle, ambiance chaleureuse et accueil authentique à Vétroz. Réservez maintenant.", url: "https://kidam-restaurant.ch", siteName: "Kidam Restaurant", type: "website", images: [ - { - url: "https://kidam-restaurant.ch/og-image.jpg", alt: "Restaurant Kidam - Cuisine Marocaine"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Restaurant Kidam | Cuisine Marocaine à Vétroz", description: "Découvrez notre cuisine marocaine authentique. Réservez votre table dès maintenant.", images: ["https://kidam-restaurant.ch/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Kidam - Restaurant Marocain", description: "Restaurant Kidam : Découvrez l'authenticité de la cuisine marocaine à Vétroz."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}