Update src/app/layout.tsx

This commit is contained in:
2026-03-11 16:19:28 +00:00
parent 21d20b2d94
commit ff9ebbce64

View File

@@ -1,29 +1,69 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } 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";
import { DM_Sans } 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"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Hinkle Roofing - Trusted Contractor Birmingham AL",
description: "Licensed roofing contractor in Birmingham, Alabama. Roof repairs, replacements, inspections & storm damage. 4.7⭐ 200+ reviews. Free estimates.",
keywords: "roofing contractor Birmingham AL, roof repair Birmingham, roof replacement, storm damage repair, roof inspection",
metadataBase: new URL("https://hinkleroofing.com"),
alternates: {
canonical: "https://hinkleroofing.com",
},
openGraph: {
title: "Hinkle Roofing - Trusted Roofing Experts Birmingham",
description: "Professional roofing services in Birmingham, AL. Licensed, insured, and rated 4.7⭐ by 200+ customers.",
url: "https://hinkleroofing.com",
siteName: "Hinkle Roofing",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/long-shot-men-working-roof-together_23-2149343676.jpg",
alt: "Hinkle Roofing - Professional roofing contractor",
},
],
},
twitter: {
card: "summary_large_image",
title: "Trusted Roofing Experts Birmingham AL",
description: "Roof repairs, replacements & inspections. 4.7⭐ rated. Free estimates.",
images: [
"http://img.b2bpic.net/free-photo/long-shot-men-working-roof-together_23-2149343676.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -32,7 +72,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -44,4 +86,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}