import type { Metadata } from "next"; import { Prata } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const prata = Prata({ variable: "--font-prata", subsets: ["latin"], weight: ["400"], }); export const metadata: Metadata = { title: "Trattoria - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine. Fresh ingredients, traditional recipes, and warm hospitality. Reserve your table today.", keywords: "italian restaurant, authentic pasta, italian food, dining, reservations", metadataBase: new URL("https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183832020-sqgzqvxa.jpg"), alternates: { canonical: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183832020-sqgzqvxa.jpg" }, openGraph: { title: "Trattoria - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine with fresh ingredients and traditional recipes.", siteName: "Trattoria", type: "website", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183832020-sqgzqvxa.jpg", alt: "Italian pasta dish" }] }, twitter: { card: "summary_large_image", title: "Trattoria - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine with fresh ingredients and traditional recipes.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183832020-sqgzqvxa.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}