6 Commits

Author SHA1 Message Date
3c05b51924 Merge version_2 into main
Merge version_2 into main
2026-03-03 23:10:32 +00:00
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,54 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Poppins } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({ const geist = Geist({
variable: "--font-poppins", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
}); });
const halant = Halant({ const geistMono = Geist_Mono({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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: { 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."};
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"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${poppins.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1417,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -94,9 +94,9 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
products={[ 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: "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", 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: "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", 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: "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> </div>