Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-11 20:15:28 +00:00
4 changed files with 52 additions and 25 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -44,4 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -103,7 +103,7 @@ export default function HomePage() {
author: "Täglich aus unserer Backstube",
description: "Jeden Morgen entstehen unsere Brote und Patisserie direkt in unserer handwerklich ausgestatteten Backstube. Keine Tiefkühlprodukte, keine Kompromisse.",
tags: ["Qualität", "Handwerk"],
imageSrc: "http://img.b2bpic.net/free-photo/front-view-chef-kneading-dough-hands_23-2148742218.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-chef-kneading-dough-hands_23-2148742218.jpg?_wi=1",
imageAlt: "artisan baker hands kneading dough",
},
{
@@ -112,7 +112,7 @@ export default function HomePage() {
author: "Regionale Zutaten",
description: "Wir verwenden nur hochwertige regionale Zutaten und authentisches Bäckerhandwerk. Jedes Produkt erzählt die Geschichte unseres Engagements für Exzellenz.",
tags: ["Regional", "Premium"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273159.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273159.jpg?_wi=1",
imageAlt: "traditional Swiss bakery interior warm",
},
{
@@ -121,7 +121,7 @@ export default function HomePage() {
author: "Kloten Tradition",
description: "Für Jahrzehnte ist Bäckerei Reischmann ein Ort für frisches Brot, guten Kaffee und echte Begegnung im Herzen von Kloten. Ein Stück Schweizer Tradition.",
tags: ["Tradition", "Gemeinschaft"],
imageSrc: "http://img.b2bpic.net/free-photo/loaf-bread-female-hands-supermarket_169016-37060.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/loaf-bread-female-hands-supermarket_169016-37060.jpg?_wi=1",
imageAlt: "fresh bread oven baking production",
},
]}
@@ -144,7 +144,7 @@ export default function HomePage() {
price: "CHF 6.80",
rating: 5,
reviewCount: "127+",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-bread-chopper-with-black-background_23-2148288118.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-bread-chopper-with-black-background_23-2148288118.jpg?_wi=1",
imageAlt: "Premium Swiss sourdough bread",
},
{
@@ -154,7 +154,7 @@ export default function HomePage() {
price: "CHF 3.20",
rating: 5,
reviewCount: "245+",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-croissant-with-coffee_23-2148337181.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-croissant-with-coffee_23-2148337181.jpg?_wi=1",
imageAlt: "Luxury butter croissant pastry",
},
{
@@ -164,7 +164,7 @@ export default function HomePage() {
price: "CHF 7.50",
rating: 5,
reviewCount: "89+",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-plum-pie-with-chemex-coffee-ingredients-with-fabric-wooden-table-with-fabric_181624-24626.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-plum-pie-with-chemex-coffee-ingredients-with-fabric-wooden-table-with-fabric_181624-24626.jpg?_wi=1",
imageAlt: "Premium Swiss patisserie dessert",
},
{
@@ -174,7 +174,7 @@ export default function HomePage() {
price: "CHF 8.90",
rating: 5,
reviewCount: "156+",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-slices-snacks-with-cream_23-2148361978.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-slices-snacks-with-cream_23-2148361978.jpg?_wi=1",
imageAlt: "Artisan fresh sandwich lunch",
},
]}

View File

@@ -90,7 +90,7 @@ export default function SortimentPage() {
price: "CHF 6.80",
rating: 5,
reviewCount: "127+",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-bread-chopper-with-black-background_23-2148288118.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-bread-chopper-with-black-background_23-2148288118.jpg?_wi=2",
imageAlt: "Premium Swiss sourdough bread",
},
{
@@ -100,7 +100,7 @@ export default function SortimentPage() {
price: "CHF 3.20",
rating: 5,
reviewCount: "245+",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-croissant-with-coffee_23-2148337181.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-croissant-with-coffee_23-2148337181.jpg?_wi=2",
imageAlt: "Luxury butter croissant pastry",
},
{
@@ -110,7 +110,7 @@ export default function SortimentPage() {
price: "CHF 7.50",
rating: 5,
reviewCount: "89+",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-plum-pie-with-chemex-coffee-ingredients-with-fabric-wooden-table-with-fabric_181624-24626.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-plum-pie-with-chemex-coffee-ingredients-with-fabric-wooden-table-with-fabric_181624-24626.jpg?_wi=2",
imageAlt: "Premium Swiss patisserie dessert",
},
{
@@ -120,7 +120,7 @@ export default function SortimentPage() {
price: "CHF 8.90",
rating: 5,
reviewCount: "156+",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-slices-snacks-with-cream_23-2148361978.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-slices-snacks-with-cream_23-2148361978.jpg?_wi=2",
imageAlt: "Artisan fresh sandwich lunch",
},
{

View File

@@ -93,7 +93,7 @@ export default function AboutPage() {
author: "Täglich aus unserer Backstube",
description: "Jeden Morgen entstehen unsere Brote und Patisserie direkt in unserer handwerklich ausgestatteten Backstube. Keine Tiefkühlprodukte, keine Kompromisse.",
tags: ["Qualität", "Handwerk"],
imageSrc: "http://img.b2bpic.net/free-photo/front-view-chef-kneading-dough-hands_23-2148742218.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-chef-kneading-dough-hands_23-2148742218.jpg?_wi=2",
imageAlt: "artisan baker hands kneading dough",
},
{
@@ -102,7 +102,7 @@ export default function AboutPage() {
author: "Regionale Zutaten",
description: "Wir verwenden nur hochwertige regionale Zutaten und authentisches Bäckerhandwerk. Jedes Produkt erzählt die Geschichte unseres Engagements für Exzellenz.",
tags: ["Regional", "Premium"],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273159.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-bakery_23-2150273159.jpg?_wi=2",
imageAlt: "traditional Swiss bakery interior warm",
},
{
@@ -111,7 +111,7 @@ export default function AboutPage() {
author: "Kloten Tradition",
description: "Für Jahrzehnte ist Bäckerei Reischmann ein Ort für frisches Brot, guten Kaffee und echte Begegnung im Herzen von Kloten. Ein Stück Schweizer Tradition.",
tags: ["Tradition", "Gemeinschaft"],
imageSrc: "http://img.b2bpic.net/free-photo/loaf-bread-female-hands-supermarket_169016-37060.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/loaf-bread-female-hands-supermarket_169016-37060.jpg?_wi=2",
imageAlt: "fresh bread oven baking production",
},
]}