From f50c16f9069b8f9a146a3d4907126dfc283d3ada Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 20:15:22 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 38 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..76198e0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,54 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; import { Inter } 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 { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Bäckerei Reischmann | Premium Swiss Artisan Bakery Kloten", + description: "Handcrafted Swiss bakery in Kloten. Fresh sourdough, butter croissants & fine patisserie made daily. Tradition meets excellence.", + keywords: "Bakery Kloten, Swiss bread, artisan bakery, croissants, patisserie, sourdough", + metadataBase: new URL("https://www.baeckerei-reischmann.ch"), + alternates: { + canonical: "https://www.baeckerei-reischmann.ch", + }, + openGraph: { + title: "Bäckerei Reischmann", + description: "Premium Swiss artisan bakery. Handcrafted daily in Kloten.", + type: "website", + siteName: "Bäckerei Reischmann", + images: [ + { + url: "http://img.b2bpic.net/free-photo/tray-burger-buns-sprinkled-with-sesame-black-seed_140725-8678.jpg", + alt: "Bäckerei Reischmann bakery showcase", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Bäckerei Reischmann", + description: "Premium Swiss artisan bakery. Handcrafted daily in Kloten.", + images: ["http://img.b2bpic.net/free-photo/tray-burger-buns-sprinkled-with-sesame-black-seed_140725-8678.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +57,9 @@ export default function RootLayout({ return ( - + {children}