Update src/app/layout.tsx

This commit is contained in:
2026-03-03 23:10:27 +00:00
parent 7b6073409c
commit d46b5ac407

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>
);
}