import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Manrope } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { title: "Restaurant Caravan | Authentic Uzbeki Cuisine in Tashkent", description: "Experience authentic Uzbeki dining at Restaurant Caravan. Award-winning pilaf, grilled kebab, and traditional Central Asian cuisine in a beautiful courtyard setting.", keywords: "uzbeki restaurant, tashkent dining, pilaf, kebab, central asian cuisine, uzbekistan food, restaurant caravan, authentic uzbek", robots: { index: true, follow: true, }, openGraph: { title: "Restaurant Caravan | Authentic Uzbeki Cuisine", description: "Discover the flavors of Central Asia at Restaurant Caravan in Tashkent. Traditional Uzbeki food, warm hospitality, and unforgettable dining experiences.", siteName: "Restaurant Caravan", type: "business.restaurant", url: "https://restaurantcaravan.uz"}, twitter: { card: "summary_large_image", title: "Restaurant Caravan | Authentic Uzbeki Cuisine", description: "Experience traditional Central Asian cuisine in Tashkent. Reserve your table at Restaurant Caravan today."}, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}