import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); export const metadata: Metadata = { title: "The Pia Yemek | Authentic Turkish Restaurant", description: "Experience authentic Turkish cuisine and warm hospitality at The Pia Yemek. Fresh ingredients, family recipes, and genuine service await.", keywords: "Turkish restaurant, authentic Turkish cuisine, Mediterranean food, Turkish kebab, family dining, local restaurant", metadataBase: new URL("https://thepiyayemek.com"), alternates: { canonical: "https://thepiyayemek.com"}, openGraph: { title: "The Pia Yemek | Authentic Turkish Restaurant", description: "Join us for authentic Turkish dining with fresh ingredients, warm service, and genuine hospitality.", url: "https://thepiyayemek.com", siteName: "The Pia Yemek", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/muslim-women-drinking-tea_23-2147796707.jpg", alt: "The Pia Yemek Turkish Restaurant"}, ], }, twitter: { card: "summary_large_image", title: "The Pia Yemek | Authentic Turkish Restaurant", description: "Experience authentic Turkish cuisine and warm hospitality.", images: ["http://img.b2bpic.net/free-photo/muslim-women-drinking-tea_23-2147796707.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}