Update src/app/layout.tsx

This commit is contained in:
2026-03-16 17:17:58 +00:00
parent 8c72e868ba
commit 716eb41c51

View File

@@ -1,27 +1,53 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Feuerverzinkerei Picker - Korrosionsschutz in Arnsberg",
description: "Professionelles Feuerverzinken für Stahlbau, Metallbau und Industrie in Arnsberg. Schnelle Verarbeitung, DIN-zertifiziert, langlebiger Korrosionsschutz. Jetzt Angebot anfragen!",
keywords: "Feuerverzinken Arnsberg, Verzinkerei NRW, Metall verzinken, Korrosionsschutz Stahl, Verzinkerei Sauerland",
metadataBase: new URL("https://feuerverzinkerei-picker.de"),
alternates: {
canonical: "https://feuerverzinkerei-picker.de",
},
openGraph: {
title: "Feuerverzinkerei Picker - Korrosionsschutz Arnsberg",
description: "Professionelles Feuerverzinken für maximalen Korrosionsschutz. DIN-zertifiziert, schnelle Bearbeitung, zuverlässiger Service.",
siteName: "Feuerverzinkerei Picker",
type: "website",
url: "https://feuerverzinkerei-picker.de",
},
twitter: {
card: "summary_large_image",
title: "Feuerverzinkerei Picker - Korrosionsschutz",
description: "Professionelles Feuerverzinken mit DIN-Zertifizierung",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
@@ -31,7 +57,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}