From 2949d4a3f9eb00f7e4321155560c0b530e2b035f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 23:46:51 +0000 Subject: [PATCH 1/3] 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 7b11ff9..74e0601 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -73,7 +73,7 @@ export default function AboutPage() { description="Founded in 2000, ProRoof has been serving homeowners and businesses with exceptional roofing solutions for over two decades." subdescription="We believe in honest pricing, expert craftsmanship, and standing behind every project. Your satisfaction is our guarantee." icon={Shield} - imageSrc="http://img.b2bpic.net/free-photo/business-executives-discussing-laptop_107420-65775.jpg" + imageSrc="http://img.b2bpic.net/free-photo/business-executives-discussing-laptop_107420-65775.jpg?_wi=2" imageAlt="ProRoof office and team" mediaAnimation="opacity" useInvertedBackground={false} -- 2.49.1 From f42b586b8c8d1fa1c06abeadffb67eef03eb7b1b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 23:46:52 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++++++++++++++++++++++++++++++-------- 1 file changed, 34 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..c20ed4c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,48 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } 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 { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ProRoof | Professional Roofing Experts", + description: "Expert roofing solutions including repair, replacement, and storm damage. Licensed, insured, 25+ years experience. Free estimates.", + keywords: "roofing, roof repair, roof replacement, roofing contractor, storm damage, licensed roofer, residential roofing", + openGraph: { + title: "ProRoof | Professional Roofing Solutions", + description: "Expert roofing contractor with 25+ years experience. Free estimates, licensed and insured.", + siteName: "ProRoof", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "ProRoof | Professional Roofing Experts", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +51,9 @@ export default function RootLayout({ return ( - + {children}