diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7101a40..f402011 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,69 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Outfit } 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 montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); +const outfit = Outfit({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Les Saveurs de l'Orient - Authentic Moroccan Restaurant in Paris", - description: "Experience authentic Moroccan cuisine at Les Saveurs de l'Orient in Paris. Enjoy traditional couscous, tajines, and Moroccan tea in an elegant, intimate setting. Reserve your table today.", - keywords: "Moroccan restaurant Paris, authentic moroccan cuisine, couscous, tajine, North African food, fine dining Paris", - openGraph: { - title: "Les Saveurs de l'Orient - Moroccan Restaurant Paris", - description: "Discover authentic Moroccan flavors in the heart of Paris. Traditional couscous, tajines, and warm hospitality await.", - siteName: "Les Saveurs de l'Orient", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/plate-with-food-near-mug-drink-teapot_23-2148080945.jpg", - alt: "Moroccan couscous and traditional dishes at Les Saveurs de l'Orient", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Les Saveurs de l'Orient - Authentic Moroccan Cuisine", - description: "Experience the flavors of Morocco in Paris. Reserve your table at Les Saveurs de l'Orient.", - images: ["http://img.b2bpic.net/free-photo/plate-with-food-near-mug-drink-teapot_23-2148080945.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Les Saveurs de l'Orient", description: "Authentic Moroccan Cuisine in the Heart of Paris"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}