From 474ec71b1cdd65ebbdafcbea0181c5ed88328437 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 20:03:22 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ddb578e..4080bb6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -103,7 +103,7 @@ const AboutPage = () => { }, ]} enableKpiAnimation={true} - imageSrc="http://img.b2bpic.net/free-photo/man-working-roof-with-drill_23-2148748770.jpg" + imageSrc="http://img.b2bpic.net/free-photo/man-working-roof-with-drill_23-2148748770.jpg?_wi=3" imageAlt="Dedicated GP Roofing crew team" mediaAnimation="slide-up" imagePosition="right" -- 2.49.1 From 65f7989fcfbc6abf1e4276b4664e7ee442dabfb2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 20:03:22 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b3b143d..f9747a1 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -94,7 +94,7 @@ const ContactPage = () => { }, ]} enableKpiAnimation={true} - imageSrc="http://img.b2bpic.net/free-photo/full-shot-roofer-working-with-helmet_23-2149343710.jpg" + imageSrc="http://img.b2bpic.net/free-photo/full-shot-roofer-working-with-helmet_23-2149343710.jpg?_wi=2" imageAlt="Professional roofing estimate and consultation" mediaAnimation="slide-up" imagePosition="right" -- 2.49.1 From 3d0dfb8dd029ba92daf5ef50c6a2f303fbb3e674 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 20:03:22 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..9d10fba 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_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 { Nunito_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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "GP Roofing Kentucky | Professional Roofing Contractor", + description: "Expert roofing contractor serving Kentucky. Roof replacement, repair, and installation by trusted professionals. Free estimates, 24/7 emergency service.", + keywords: "Kentucky roofing contractor, roof replacement, roof repair, professional roofer", + metadataBase: new URL("https://gproofingky.com"), + alternates: { + canonical: "https://gproofingky.com", + }, + openGraph: { + title: "GP Roofing Kentucky | Trusted Professional Roofing", + description: "Quality roofing services with hardworking crew, fair pricing, and professional installation.", + url: "https://gproofingky.com", + siteName: "GP Roofing Kentucky", + type: "website", + images: [ + { + url: "https://gproofingky.com/og-image.jpg", + alt: "GP Roofing Kentucky - Professional Roofing Services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "GP Roofing Kentucky | Professional Roofing Contractor", + description: "Expert roofing services in Kentucky with 5-star customer reviews.", + images: ["https://gproofingky.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}