Files
82a7346b-498f-4ea7-a060-42e…/src/app/layout.tsx
2026-04-17 17:34:48 +00:00

49 lines
1.4 KiB
TypeScript

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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}