Update src/app/layout.tsx

This commit is contained in:
2026-03-13 18:45:38 +00:00
parent 6c51f487dd
commit 89fb59521b

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 { Archivo } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Berliner Möbel Premium Custom Furniture & Interiors Berlin",
description: "Custom furniture, kitchens, wardrobes, ceramics, stone surfaces & interior design solutions. Premium European craftsmanship based in Berlin.",
keywords: "custom furniture Berlin, luxury kitchen design, premium interiors, built-in furniture, stone countertops, ceramic surfaces",
metadataBase: new URL("https://berliner-moebel.de"),
alternates: {
canonical: "https://berliner-moebel.de",
},
openGraph: {
title: "Berliner Möbel Premium Custom Interiors",
description: "Crafted interiors made real. Custom furniture, ceramics, stone, and complete interior solutions from Berlin.",
url: "https://berliner-moebel.de",
siteName: "Berliner Möbel",
type: "website",
images: [
{
url: "https://berliner-moebel.de/og-image.jpg",
alt: "Luxury custom kitchen interior design",
},
],
},
twitter: {
card: "summary_large_image",
title: "Berliner Möbel Premium Custom Furniture",
description: "Crafted interiors made real. Custom furniture production, premium materials, professional installation.",
images: ["https://berliner-moebel.de/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}