Update src/app/layout.tsx

This commit is contained in:
2026-03-10 14:32:03 +00:00
parent 15631ceb78
commit 4f845ad149

View File

@@ -1,24 +1,52 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 { Manrope } 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 manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "ASBEST - Dutch Boerenrock Band | Live Shows & Bookings",
description: "ASBEST brings raw, loud Dutch boerenrock energy. Experience festival vibes, screaming guitars, and countryside party atmosphere. Book for festivals, events, and barn parties.",
keywords: "boerenrock, Dutch rock band, ASBEST, festival music, countryside rock, live performances, band booking",
openGraph: {
title: "ASBEST - Boerenrock Band",
description: "Loud energetic Dutch rock from the countryside. Festival vibes and barn party energy.",
type: "website",
siteName: "ASBEST",
images: [
{
url: "http://img.b2bpic.net/free-photo/medium-shot-people-playing-together_23-2149223661.jpg",
alt: "ASBEST live performance",
},
],
},
twitter: {
card: "summary_large_image",
title: "ASBEST - Boerenrock Energy",
description: "Dutch rock band delivering screaming guitars and festival vibes",
images: ["http://img.b2bpic.net/free-photo/medium-shot-people-playing-together_23-2149223661.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +55,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +69,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}