5 Commits

Author SHA1 Message Date
751bf22138 Update src/app/page.tsx 2026-03-03 23:10:28 +00:00
d46b5ac407 Update src/app/layout.tsx 2026-03-03 23:10:27 +00:00
7b6073409c Merge version_1 into main
Merge version_1 into main
2026-03-03 23:09:26 +00:00
c3e2bd249a Merge version_1 into main
Merge version_1 into main
2026-03-03 23:08:31 +00:00
6f55b32603 Merge version_1 into main
Merge version_1 into main
2026-03-03 23:07:18 +00:00
2 changed files with 15 additions and 43 deletions

View File

@@ -1,55 +1,28 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Bäckerei Meister | Authentic German Baked Goods", description: "Traditional German bakery with 70+ years of heritage. Fresh artisan bread, pastries, and specialties made with premium ingredients daily.", keywords: "german bakery, authentic bread, pretzels, lebkuchen, stollen, german pastries", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Bäckerei Meister | Authentic German Baked Goods", description: "Traditional German bakery with 70+ years of heritage. Fresh artisan bread, pastries, and specialties made with premium ingredients daily.", url: "https://baeckerei-meister.com", siteName: "Bäckerei Meister", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/traditional-irish-soda-bread-with-raisins-freshly-baked_123827-37342.jpg", alt: "Traditional German breads collection"},
],
},
twitter: {
card: "summary_large_image", title: "Bäckerei Meister | Authentic German Baked Goods", description: "Traditional German bakery with 70+ years of heritage. Fresh artisan bread, pastries, and specialties made with premium ingredients daily.", images: ["http://img.b2bpic.net/free-photo/traditional-irish-soda-bread-with-raisins-freshly-baked_123827-37342.jpg"],
},
};
title: "Bäckerei Meister | Authentic German Baked Goods", description: "Experience authentic German baked goods crafted with heritage recipes and premium ingredients from Bäckerei Meister."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${poppins.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -94,9 +94,9 @@ export default function LandingPage() {
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
products={[
{ id: "1", name: "Vollkornbrot", price: "$6.99", imageSrc: "http://img.b2bpic.net/free-photo/baked-bread_93675-134413.jpg", imageAlt: "Dark German whole grain bread" },
{ id: "2", name: "Croissants", price: "$4.49", imageSrc: "http://img.b2bpic.net/free-photo/croissants-flat-lay-plaster-kitchen-towel_176474-8190.jpg?_wi=2", imageAlt: "Buttery golden croissants" },
{ id: "3", name: "Lebkuchen", price: "$7.99", imageSrc: "http://img.b2bpic.net/free-photo/top-view-star-shaped-cookies-with-pomegranate-cinnamon_23-2148368267.jpg", imageAlt: "Traditional German spiced gingerbread" }
{ id: "1", name: "Vollkornbrot - Artisan Whole Grain", price: "From $6.99", imageSrc: "http://img.b2bpic.net/free-photo/baked-bread_93675-134413.jpg", imageAlt: "Dark German whole grain bread" },
{ id: "2", name: "Croissants - French-Inspired Premium", price: "From $4.49", imageSrc: "http://img.b2bpic.net/free-photo/croissants-flat-lay-plaster-kitchen-towel_176474-8190.jpg?_wi=2", imageAlt: "Buttery golden croissants" },
{ id: "3", name: "Lebkuchen - Traditional Spiced Heritage", price: "From $7.99", imageSrc: "http://img.b2bpic.net/free-photo/top-view-star-shaped-cookies-with-pomegranate-cinnamon_23-2148368267.jpg", imageAlt: "Traditional German spiced gingerbread" }
]}
/>
</div>