Update src/app/layout.tsx

This commit is contained in:
2026-03-12 16:21:15 +00:00
parent dd7c99a5b8
commit 815b7986fc

View File

@@ -1,28 +1,44 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Inter } 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 { Public_Sans } from "next/font/google";
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 publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Armour Barber Shop - Classic Haircuts & Old-School Service",
description: "Classic barbering for over 20 years. Quality haircuts, friendly service, affordable prices. Walk-ins welcome. No appointments needed. Cash only.",
keywords: "barber shop, haircuts, traditional barbering, men's haircuts, beard trim, quality haircuts, affordable, neighborhood barber",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Armour Barber Shop",
description: "Classic haircuts and old-school service. Over 20 years of barbering excellence.",
type: "website",
siteName: "Armour Barber Shop",
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +47,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +61,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}