import type { Metadata } from "next"; import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); export const metadata: Metadata = { title: "Savoria - Fine Dining Restaurant", description: "Experience exceptional fine dining at Savoria. Explore our innovative menu, reserve your table, and discover culinary excellence in an elegant setting.", keywords: "fine dining, restaurant, reservation, cuisine, chef, gourmet", metadataBase: new URL("https://savoria-restaurant.com"), alternates: { canonical: "https://savoria-restaurant.com" }, openGraph: { title: "Savoria - Fine Dining Restaurant", description: "Experience exceptional fine dining with our carefully curated menu and warm hospitality.", url: "https://savoria-restaurant.com", siteName: "Savoria", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/side-view-table-with-cheese-plate-pate-it_140725-12866.jpg", alt: "Savoria Fine Dining Restaurant" } ] }, twitter: { card: "summary_large_image", title: "Savoria - Fine Dining Restaurant", description: "Join us for an unforgettable dining experience with innovative cuisine and exceptional service.", images: ["https://img.b2bpic.net/free-photo/side-view-table-with-cheese-plate-pate-it_140725-12866.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}