From 294200227ecc2ef8a24912a797347d3351dcf2c7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Mar 2026 10:26:20 +0000 Subject: [PATCH 1/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..a72d7a6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}