import type { Metadata } from "next"; import { Cormorant_Garamond } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const cormorantGaramond = Cormorant_Garamond({ variable: "--font-cormorant-garamond", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); export const metadata: Metadata = { title: "Steak & Fire - Premium Steakhouse Dining", description: "Experience fine dining at Steak & Fire. Premium aged beef, expertly grilled, paired with exceptional wines. Reserve your table today.", keywords: "steakhouse, fine dining, grilled steak, premium beef, restaurant", metadataBase: new URL("https://steakandfire.com"), alternates: { canonical: "https://steakandfire.com" }, openGraph: { title: "Steak & Fire - Premium Steakhouse", description: "Fine dining steakhouse serving premium aged beef and gourmet cuisine", type: "website", siteName: "Steak & Fire" }, twitter: { card: "summary_large_image", title: "Steak & Fire Steakhouse", description: "Premium steakhouse with expertly grilled cuts and fine dining" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}