diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..d42467a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}