import type { Metadata } from "next"; import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); export const metadata: Metadata = { title: "Kodu - Authentic Estonian Restaurant", description: "Experience traditional Estonian cuisine featuring fresh local ingredients, rye bread, Baltic seafood, and generations-old recipes. Reserve your table at Kodu today.", keywords: "Estonian food, traditional cuisine, Baltic seafood, restaurant, authentic, dining", metadataBase: new URL("https://kodu-restaurant.com"), alternates: { canonical: "https://kodu-restaurant.com" }, openGraph: { title: "Kodu - Authentic Estonian Restaurant", description: "Experience traditional Estonian cuisine featuring fresh local ingredients and heritage recipes.", type: "website", siteName: "Kodu Estonian Restaurant" }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}