import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); export const metadata: Metadata = { title: "Asl Shox Restaurant - Luxury Dining in Juma, Samarqand", description: "Experience authentic Uzbek cuisine at Asl Shox Restaurant. Luxury atmosphere, fresh ingredients, and exceptional service. Book your table now.", keywords: "restaurant Juma, Uzbek food restaurant, luxury dining Samarqand, best restaurant Juma, authentic Uzbek cuisine", metadataBase: new URL("https://aslshox.com"), alternates: { canonical: "https://aslshox.com", }, openGraph: { title: "Asl Shox Restaurant - Luxury Dining Experience", description: "Enjoy delicious Uzbek cuisine in our beautifully renovated restaurant. Family-friendly, perfect for celebrations.", url: "https://aslshox.com", siteName: "Asl Shox Restaurant", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/served-tea-table-with-orange-shisha_141793-4743.jpg", alt: "Asl Shox Restaurant Interior", }, ], }, twitter: { card: "summary_large_image", title: "Asl Shox Restaurant - Luxury Dining in Juma", description: "Experience authentic Uzbek cuisine with luxury ambiance", images: ["http://img.b2bpic.net/free-photo/served-tea-table-with-orange-shisha_141793-4743.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}