import type { Metadata } from "next"; import { Source_Code_Pro } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const sourceCodePro = Source_Code_Pro({ variable: "--font-source-code-pro", subsets: ["latin"], }); export const metadata: Metadata = { title: "Gogo Eat - Fresh Food, Great Taste", description: "Discover Gogo Eat restaurant. Enjoy delicious cuisine, friendly service, and a warm atmosphere. Reserve your table today!", keywords: "restaurant, food, dining, gogo eat, reservations, menu", openGraph: { title: "Gogo Eat - Fresh Food, Great Taste", description: "Experience delicious food crafted with passion at Gogo Eat restaurant.", siteName: "Gogo Eat", type: "website" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}