import type { Metadata } from "next"; import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Big Eat | Exceptional Dining & Bold Flavors", description: "Experience exceptional cuisine at Big Eat. Fresh ingredients, bold flavors, and unforgettable moments. Reserve your table today.", keywords: ["restaurant", "dining", "reservations", "fine dining", "food", "menu"], robots: { index: true, follow: true }, openGraph: { title: "Big Eat | Exceptional Dining", description: "Bold flavors. Unforgettable moments. Discover exceptional cuisine at Big Eat.", type: "website", siteName: "Big Eat Restaurant" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}