Update src/app/layout.tsx

This commit is contained in:
2026-03-11 07:25:19 +00:00
parent 8a053a4904
commit ec1aed3f76

View File

@@ -6,18 +6,50 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Barbershop Deutschland Traditionelle Barberkunst in Premium Qualität",
description: "Premium Barbershop mit erfahrenen Barbern. Herrenhaarschnitte, Bartpflege, Nassrasur und Friseur Ausbildung in Deutschland.",
keywords: "Barbershop Deutschland, Friseur, Haarschnitt, Nassrasur, Bartpflege, Ausbildung, Friseur Ausbildung",
metadataBase: new URL("https://barbershop-de.example.com"),
alternates: {
canonical: "https://barbershop-de.example.com",
},
openGraph: {
title: "Barbershop Deutschland Traditionelle Barberkunst",
description: "Premium Barbershop mit erfahrenen Barbern. Herrenhaare, Bartpflege und Ausbildung.",
url: "https://barbershop-de.example.com",
siteName: "Barbershop Deutschland",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/mid-section-view-hairdresser-s-hand-with-electric-trimmer_23-2147839811.jpg",
alt: "Barbershop Premium Salon",
},
],
},
twitter: {
card: "summary_large_image",
title: "Barbershop Deutschland Traditionelle Barberkunst",
description: "Premium Barbershop mit erfahrenen Barbern.",
images: ["http://img.b2bpic.net/free-photo/mid-section-view-hairdresser-s-hand-with-electric-trimmer_23-2147839811.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -26,7 +58,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -38,4 +72,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}