Update src/app/layout.tsx

This commit is contained in:
2026-06-03 06:55:38 +00:00
parent b05ec8ae68
commit 8d4e150615

View File

@@ -6,23 +6,22 @@ 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";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: 'Bella Italia Ristorante | Authentic Italian Flavors',
description: 'Experience the true taste of Italy at Bella Italia Ristorante. Savor traditional pasta, pizza, and exquisite wines in a cozy, authentic atmosphere.',
title: 'Restaurant Tramontana | Croatian-Mediterranean Cuisine in Regensburg',
description: 'Savor authentic Croatian-Mediterranean dishes in the charming old town of Regensburg. Restaurant Tramontana offers an unforgettable culinary experience.',
};
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -31,9 +30,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script