import type { Metadata } from "next"; import { JetBrains_Mono } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const jetBrainsMono = JetBrains_Mono({ variable: "--font-jetbrains-mono", subsets: ["latin"], }); export const metadata: Metadata = { title: "Viva Restaurant | Fine Dining Excellence", description: "Experience culinary excellence at Viva. Fine dining with authentic flavors, impeccable service, and an elegant atmosphere. Reserve your table today.", keywords: "restaurant, fine dining, cuisine, reservations, elegant dining, premium cuisine", metadataBase: new URL("https://viva-restaurant.com"), alternates: { canonical: "https://viva-restaurant.com" }, openGraph: { title: "Viva Restaurant | Fine Dining Excellence", description: "Experience culinary excellence at Viva. Fine dining with authentic flavors, impeccable service, and an elegant atmosphere.", siteName: "Viva", images: [ { url: "https://images.pixabay.com/photos/restaurant-dining-elegant-luxury-1.jpg", alt: "Viva Restaurant Fine Dining" } ], type: "website" }, twitter: { card: "summary_large_image", title: "Viva Restaurant | Fine Dining Excellence", description: "Experience culinary excellence at Viva. Fine dining with authentic flavors, impeccable service, and an elegant atmosphere.", images: ["https://images.pixabay.com/photos/restaurant-dining-elegant-luxury-1.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}