import type { Metadata } from "next"; import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Bella Italia - Authentic Italian Restaurant", description: "Discover authentic Italian cuisine at Bella Italia. Experience traditional dishes, fine dining, and unforgettable flavors.", keywords: "italian restaurant, authentic cuisine, fine dining, pasta, risotto, seafood", metadataBase: new URL("https://www.example.com"), alternates: { canonical: "https://www.example.com" }, robots: { index: true, follow: true }, openGraph: { title: "Bella Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine with passion and tradition", type: "website", siteName: "Bella Italia", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183837505-ll9mx7sj.jpg", alt: "Bella Italia Restaurant" } ] }, twitter: { card: "summary_large_image", title: "Bella Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine with passion and tradition", images: [ "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183837505-ll9mx7sj.jpg" ] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}