From 66239761b525212affd6d4d3858fcd90c4616d33 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 15:27:53 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ca7f2ff..15731bc 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -79,7 +79,7 @@ export default function AboutPage() { title: "Professional Plumbing", description: "From routine maintenance to emergency repairs. We handle all plumbing needs with expert care and fast response times.", tag: "Popular", - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg?_wi=3", imageAlt: "professional plumber fixing pipe", }, { @@ -87,7 +87,7 @@ export default function AboutPage() { title: "Electrical Services", description: "Certified electricians for installations, repairs, and inspections. Licensed, insured, and code-compliant work guaranteed.", tag: "Available", - imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-53652.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-53652.jpg?_wi=3", imageAlt: "electrician installing outlet", }, { @@ -95,7 +95,7 @@ export default function AboutPage() { title: "HVAC Solutions", description: "Heating, cooling, and ventilation expertise. Maintenance plans and emergency repairs available 24/7.", tag: "Emergency", - imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smart-factory-expert-using-vr-headset-test-automated-systems_482257-119716.jpg?_wi=3", imageAlt: "hvac technician working unit", }, { @@ -103,7 +103,7 @@ export default function AboutPage() { title: "General Repairs", description: "Drywall, painting, carpentry, and general home maintenance. Professional results at competitive prices.", tag: "Quick", - imageSrc: "http://img.b2bpic.net/free-photo/professional-engineer-contractor-drilling-wooden-panel-male-carpenter-with-safety-helmet-working-building-some-furniture_662251-471.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/professional-engineer-contractor-drilling-wooden-panel-male-carpenter-with-safety-helmet-working-building-some-furniture_662251-471.jpg?_wi=3", imageAlt: "general home repair work", }, ]} From bd9b8bcc295e56e2ae5cc4e6824c586cac5391c2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 15:27:54 +0000 Subject: [PATCH 2/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 2ed8420..6b8d0f3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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"; +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"], }); +export const metadata: Metadata = { + title: "Professional Local Services | Free Quote & Same-Day Service", + description: "Expert plumbing, electrical, HVAC, and general repair services. Licensed, insured, 24/7 emergency response. Get a free quote today. Serving the community for 15+ years.", + keywords: "plumbing services, electrical repair, HVAC maintenance, home repair, local services, emergency service, free quote", + metadataBase: new URL("https://localpro-services.com"), + alternates: { + canonical: "https://localpro-services.com", + }, + openGraph: { + title: "Professional Local Services | Trusted Since 2009", + description: "Expert service across plumbing, electrical, HVAC, and repairs. Licensed, insured, and ready to help. Call for free quote.", + url: "https://localpro-services.com", + siteName: "Local Pro Services", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg", + alt: "Professional service team", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Professional Local Services Available 24/7", + description: "Expert plumbing, electrical, HVAC, and general repairs. Free quotes. Licensed & insured.", + images: [ + "http://img.b2bpic.net/free-photo/cheerful-asian-plumber-sitting-floor-repairing-kitchen-sink_1098-17780.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}