Update src/app/layout.tsx

This commit is contained in:
2026-06-07 11:35:49 +00:00
parent 26f3485784
commit 33384e7fc7

View File

@@ -8,19 +8,17 @@ import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: 'Bella Italia Ristorante - Authentic Italian Cuisine',
description: 'Experience the true taste of Italy at Bella Italia Ristorante. Savor traditional pasta, pizza, and exquisite wines in a cozy, authentic atmosphere.',
title: 'Bella Italia Ristorante - Authentische italienische Küche',
description: 'Erleben Sie den wahren Geschmack Italiens im Bella Italia Ristorante. Genießen Sie traditionelle Pasta, Pizza und exquisite Weine in einer gemütlichen, authentischen Atmosphäre.',
};
export default function RootLayout({
@@ -29,10 +27,10 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<html lang="de" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
className={`${halant.variable} ${inter.variable} antialiased}`}
>
<Tag />
{children}
@@ -45,4 +43,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}