Update src/app/layout.tsx

This commit is contained in:
2026-03-15 20:52:12 +00:00
parent 209e377c94
commit 263d9562bb

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Kirko Cuts - Premium Local Barber in Dent, Minnesota",
description: "Fresh fades, clean cuts, and sharp line-ups by Jesse Kirchenwitz. Your trusted local barber serving Dent, MN with precision and pride.",
keywords: "barber Dent Minnesota, fade haircut Dent MN, local barber Dent, hair salon Dent, barbershop Dent",
metadataBase: new URL("https://kirkocuts.mn"),
alternates: {
canonical: "https://kirkocuts.mn",
},
openGraph: {
title: "Kirko Cuts - Premium Local Barber in Dent, Minnesota",
description: "Fresh fades and sharp cuts by Jesse Kirchenwitz. Book your cut today.",
url: "https://kirkocuts.mn",
siteName: "Kirko Cuts",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-old-man-getting-haircut_23-2149220572.jpg",
alt: "Fresh fade haircut",
},
],
},
twitter: {
card: "summary_large_image",
title: "Kirko Cuts - Premium Local Barber in Dent, Minnesota",
description: "Fresh fades and sharp cuts by Jesse Kirchenwitz. Book your cut today.",
images: ["http://img.b2bpic.net/free-photo/close-up-old-man-getting-haircut_23-2149220572.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}