Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c05b51924 | |||
| 751bf22138 | |||
| d46b5ac407 | |||
| 7b6073409c | |||
| c3e2bd249a | |||
| 6f55b32603 |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user