From ff9ebbce64fd397aa779a8ba0dbbbef5dc942a00 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 16:19:28 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 60 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 51 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..9e7189d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}