From d96497a022737c7cd31a9a3a1702c222235d8b1f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 06:20:25 +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 73da86b..0181f39 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -47,7 +47,7 @@ export default function AboutPage() { description="ProHVAC Services" subdescription="Serving the community for over 30 years" icon={Zap} - imageSrc="http://img.b2bpic.net/free-photo/hvac-repairman-adjusts-pressure-levels_482257-91172.jpg" + imageSrc="http://img.b2bpic.net/free-photo/hvac-repairman-adjusts-pressure-levels_482257-91172.jpg?_wi=2" imageAlt="Professional HVAC team installing cooling system" mediaAnimation="slide-up" useInvertedBackground={false} -- 2.49.1 From b74a8c3b2bdae52ef5b5188eea220259dc018a7c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 06:20:26 +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 3135f79..69f1c8c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -55,7 +55,7 @@ export default function ContactPage() { }, ]} layoutOrder="default" - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg?_wi=2" imageAlt="HVAC professional ready to help with your service needs" frameStyle="card" mediaAnimation="slide-up" -- 2.49.1 From 187b2d4a688d6dd1770d4161845268f86a9f9b10 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 06:20:26 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82b392d..c410d1e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Roboto } 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 { Roboto } 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 roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,41 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"], }); +export const metadata: Metadata = { + title: "Professional HVAC Services | AC Repair & Installation | ProHVAC", + description: "Fast, reliable HVAC services for AC repair, installation & maintenance. 24/7 emergency service. Licensed, insured, local experts. Free quotes available.", + keywords: "HVAC repair, air conditioning repair, AC installation, furnace repair, emergency HVAC service, HVAC maintenance", + metadataBase: new URL("https://prohvac.local"), + alternates: { + canonical: "https://prohvac.local", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Professional HVAC Services | ProHVAC Services", + description: "Fast, reliable HVAC services for your home and business. Licensed, insured, 24/7 emergency service.", + siteName: "ProHVAC Services", + type: "website", + url: "https://prohvac.local", + images: [ + { + url: "http://img.b2bpic.net/free-photo/white-tiled-building-blue-sky_181624-6378.jpg", + alt: "Professional HVAC Services", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Professional HVAC Services | ProHVAC Services", + description: "Fast, reliable AC repair, installation & maintenance. 24/7 emergency service available.", + images: [ + "http://img.b2bpic.net/free-photo/white-tiled-building-blue-sky_181624-6378.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}