import type { Metadata } from "next"; import { Lora } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const lora = Lora({ variable: "--font-lora", subsets: ["latin"], }); export const metadata: Metadata = { title: "Bella Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine crafted with passion. Fine dining featuring traditional recipes, premium ingredients, and exceptional service.", keywords: "italian restaurant, fine dining, authentic cuisine, pasta, risotto, italian food", metadataBase: new URL("https://bellaitalia.com"), alternates: { canonical: "https://bellaitalia.com" }, openGraph: { title: "Bella Italia - Italian Restaurant", description: "Authentic Italian dining experience with traditional recipes and premium ingredients.", siteName: "Bella Italia", type: "website" }, twitter: { card: "summary_large_image", title: "Bella Italia - Italian Restaurant", description: "Experience authentic Italian cuisine at Bella Italia" }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}