import type { Metadata } from "next"; import { Merriweather } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const merriweather = Merriweather({ variable: "--font-merriweather", subsets: ["latin"], weight: ["300", "400", "700", "900"], }); export const metadata: Metadata = { title: "Amore Italian Restaurant | Authentic Italian Dining", description: "Experience authentic Italian cuisine at Amore. Fine dining with handmade pasta, fresh seafood, and traditional recipes. Reserve your table today.", keywords: "Italian restaurant, fine dining, pasta, seafood, authentic Italian cuisine, reservation", metadataBase: new URL("https://amore-restaurant.com"), alternates: { canonical: "https://amore-restaurant.com" }, openGraph: { title: "Amore Italian Restaurant", description: "Authentic Italian cuisine in an elegant setting. Reserve your table at Amore.", siteName: "Amore", type: "website", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183837505-ll9mx7sj.jpg", alt: "Amore Italian Restaurant" }] }, twitter: { card: "summary_large_image", title: "Amore Italian Restaurant", description: "Authentic Italian fine dining experience", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766183837505-ll9mx7sj.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}