Update src/app/layout.tsx

This commit is contained in:
2026-03-22 10:26:20 +00:00
parent 917647826c
commit 294200227e

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Bistro Unterbayern Traditionelle Bayerische Küche in Sulzbach/Saar",
description: "Genießen Sie traditionelle deutsche Küche in gemütlicher Atmosphäre. Großzügige Portionen, faire Preise, freundliches Personal. Täglich ab 17:00 Uhr.",
keywords: "Bistro, Bayerische Küche, Restaurant Sulzbach, Schnitzel, Traditionelle Deutsche Küche, Gemütlich",
metadataBase: new URL("https://bistro-unterbayern.de"),
alternates: {
canonical: "https://bistro-unterbayern.de",
},
openGraph: {
title: "Bistro Unterbayern Willkommen in unserer urigen Stube",
description: "Traditionelle bayerische Küche mit großzügigen Portionen und fairen Preisen in Sulzbach/Saar.",
url: "https://bistro-unterbayern.de",
siteName: "Bistro Unterbayern",
type: "website",
images: [
{
url: "https://bistro-unterbayern.de/og-image.jpg",
alt: "Bistro Unterbayern Traditionelle Bayerische Küche",
},
],
},
twitter: {
card: "summary_large_image",
title: "Bistro Unterbayern",
description: "Traditionelle bayerische Küche urig, gemütlich, lecker",
images: ["https://bistro-unterbayern.de/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}