From 6df60533530661175c6326538b5f2e31d5be13ca Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 12:09:49 +0000 Subject: [PATCH 1/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 28c3504..2d79a0e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -69,7 +69,7 @@ export default function ContactPage() { useInvertedBackground={true} mediaAnimation="slide-up" mediaPosition="right" - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-outdoors_23-2149085492.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-outdoors_23-2149085492.jpg?_wi=2" imageAlt="roofing contractor team professional group portrait" inputPlaceholder="Enter your email address" buttonText="Schedule Free Inspection" @@ -119,7 +119,7 @@ export default function ContactPage() { faqsAnimation="slide-up" textboxLayout="default" useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/architects-hold-building-plan-check-work_1150-24366.jpg" + imageSrc="http://img.b2bpic.net/free-photo/architects-hold-building-plan-check-work_1150-24366.jpg?_wi=4" imageAlt="roofing inspector professional inspection roof" mediaPosition="right" /> -- 2.49.1 From e07c39d3f8021676bb996cc06f43f38f26b1308d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 12:09:50 +0000 Subject: [PATCH 2/6] 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 42fa6ab..7cde7f7 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 { 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 { 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Professional Roofing Services | RoofCare Pro | Residential & Commercial", + description: "Expert roofing services for residential and commercial properties. Installation, repair, maintenance & emergency services. 24/7 support. Get your free inspection today.", + keywords: "roofing services, roof installation, roof repair, roofing contractor, residential roofing, commercial roofing, emergency roofing, roof replacement", + metadataBase: new URL("https://roofcarepro.com"), + alternates: { + canonical: "https://roofcarepro.com", + }, + openGraph: { + title: "Professional Roofing Services | RoofCare Pro", + description: "Expert roofing solutions with 15+ years of experience. Free inspections, transparent pricing, 24/7 emergency services.", + url: "https://roofcarepro.com", + siteName: "RoofCare Pro", + type: "website", + images: [ + { + url: "https://roofcarepro.com/og-hero.jpg", + alt: "Professional roofing services hero image", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Professional Roofing Services | RoofCare Pro", + description: "Expert roofing solutions with 15+ years of experience. Free inspections, 24/7 emergency services.", + images: ["https://roofcarepro.com/twitter-hero.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}