import type { Metadata } from "next"; import { Playfair_Display } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const playfairDisplay = Playfair_Display({ variable: "--font-playfair-display", subsets: ["latin"], }); export const metadata: Metadata = { title: "Steak House | Premium Fine Dining & Prime Cuts", description: "Experience exceptional prime steaks and fine dining at our upscale steakhouse. Reserve your table today for an unforgettable culinary experience.", keywords: "steakhouse, prime steaks, fine dining, reservation, premium beef, wagyu", metadataBase: new URL("https://steakhouse.com"), alternates: { canonical: "https://steakhouse.com" }, openGraph: { title: "Steak House | Premium Fine Dining", description: "Experience the finest prime cuts and timeless elegance in fine dining", url: "https://steakhouse.com", siteName: "Steak House", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/young-waitress-setting-table_23-2147830607.jpg", alt: "Premium steakhouse dining" }] }, twitter: { card: "summary_large_image", title: "Steak House | Premium Fine Dining", description: "Experience the finest prime cuts and timeless elegance in fine dining", images: ["https://img.b2bpic.net/free-photo/young-waitress-setting-table_23-2147830607.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}