Update src/app/layout.tsx

This commit is contained in:
2026-03-14 11:52:39 +00:00
parent 5668f72cd9
commit 97fdc42e1d

View File

@@ -1,24 +1,40 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 { Figtree } 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 figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "A99 Barber Shop - Premium Haircuts in Haarlem",
description: "Professional barbershop in Haarlem offering precision haircuts, beard trimming, fades and grooming services. 4.8★ rated. Located in Schalkwijk Shopping Center.",
keywords: "barber shop Haarlem, haircut, beard trimming, fade haircut, professional grooming, Schalkwijk",
openGraph: {
title: "A99 Barber Shop - Premium Haircuts in Haarlem",
description: "Experience premium barbershop excellence. Fast, professional haircuts and grooming services in Haarlem.",
siteName: "A99 Barber Shop",
type: "website",
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +43,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +57,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}