import type { Metadata } from "next"; import { Inter_Tight } from "next/font/google"; import { JetBrains_Mono } 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"], }); const jetBrainsMono = JetBrains_Mono({ variable: "--font-jetbrains-mono", subsets: ["latin"], }); export const metadata: Metadata = { title: "Estonia Travel Guide | Discover Medieval Magic & Natural Wonder", description: "Explore Estonia's UNESCO old town, pristine forests, 2,222 islands, and unique culture. Plan your Nordic adventure with comprehensive travel guides and local insights.", keywords: ["Estonia travel", "Tallinn", "tourism", "Baltic region", "medieval", "nature", "islands", "cultural heritage"], metadataBase: new URL("https://estonia-travel.com"), alternates: { canonical: "https://estonia-travel.com" }, openGraph: { title: "Estonia Travel Guide | Discover Medieval Magic & Natural Wonder", description: "Experience Estonia's best: historic Tallinn, pristine wilderness, and vibrant culture. Your Nordic adventure starts here.", url: "https://estonia-travel.com", siteName: "Estonia Tourism", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/dormers-cathedral-towers-old-town-mood_169016-70015.jpg", alt: "Estonia landscape with Tallinn old town" }] }, twitter: { card: "summary_large_image", title: "Estonia Travel Guide | Discover Medieval Magic & Natural Wonder", description: "Experience Estonia's best: historic Tallinn, pristine wilderness, and vibrant culture. Your Nordic adventure starts here.", images: ["https://img.b2bpic.net/free-photo/dormers-cathedral-towers-old-town-mood_169016-70015.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}