import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Montserrat } from "next/font/google"; export const metadata: Metadata = { title: 'Hotel Bohemian Garni | Luxury Belgrade Stays', description: 'Experience old Belgrade elegance at Hotel Bohemian Garni. Historic brewery heritage meets modern luxury in the heart of the city.', openGraph: { "title": "Hotel Bohemian Garni | Luxury Belgrade Stays", "description": "Book your stay at our historic Belgrade boutique hotel.", "siteName": "Hotel Bohemian Garni" }, }; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}