import type { Metadata } from "next"; import { Source_Serif_4 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const sourceSerif4 = Source_Serif_4({ variable: "--font-source-serif-4", subsets: ["latin"], }); export const metadata: Metadata = { title: "Steak To Happy | Premium Steakhouse & Fine Dining", description: "Experience excellence at Steak To Happy. Premium aged beef, expert grilling, and sophisticated ambiance for unforgettable dining moments.", keywords: "steakhouse, fine dining, prime beef, premium steak, restaurant reservations", robots: { index: true, follow: true, }, openGraph: { title: "Steak To Happy | Premium Steakhouse", description: "Experience the finest prime and wagyu steaks in an elegant, timeless setting.", siteName: "Steak To Happy", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767780817109-an1fpejm.jpg", alt: "Premium grilled steak at Steak To Happy" } ] }, twitter: { card: "summary_large_image", title: "Steak To Happy | Premium Steakhouse", description: "Savor premium aged beef expertly grilled to perfection.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767780817109-an1fpejm.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}