diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3b562f6..179d57c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Rumi Marburg - Authentic Persian Restaurant in Marburg", description: "Experience authentic Persian cuisine at Rumi Marburg. Warm hospitality, signature kebabs, vegetarian options, and unforgettable flavors. Reserve your table today.", keywords: "Persian restaurant Marburg, authentic kebab, Iranian cuisine, Middle Eastern food, vegetarian dining, fine dining Germany", metadataBase: new URL("https://rumimarburg.de"), - alternates: { - canonical: "https://rumimarburg.de"}, - openGraph: { - title: "Rumi Marburg - A Taste of Persia", description: "Discover authentic Persian flavors, warm hospitality, and unforgettable dining moments at Rumi Marburg.", url: "https://rumimarburg.de", siteName: "Rumi Marburg", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-appetizing-ramadan-meal_23-2151182551.jpg", alt: "Rumi Marburg - Authentic Persian Restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Rumi Marburg - Authentic Persian Cuisine", description: "Experience the heart of Persia in Marburg with our signature dishes and warm hospitality.", images: ["http://img.b2bpic.net/free-photo/close-up-appetizing-ramadan-meal_23-2151182551.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Rumi Marburg | Authentic Persian Restaurant", description: "Experience authentic Persian cuisine in Marburg. Reserve your table at Rumi for traditional flavors, warm hospitality, and unforgettable moments."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -