From 8a1fd3ea07c0e127632c9f5b6d3cc9cf569eaeb8 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 15:57:04 +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 459cfde..05e5077 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -62,7 +62,7 @@ export default function AboutPage() { { value: "Top Rated", title: "Local Service" } ]} useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/portrait-male-female-deliverers-handshaking-each-other-smiling_23-2149561231.jpg" + imageSrc="http://img.b2bpic.net/free-photo/portrait-male-female-deliverers-handshaking-each-other-smiling_23-2149561231.jpg?_wi=2" imageAlt="Local service team working" mediaAnimation="slide-up" metricsAnimation="slide-up" From 7b9881a4b0836eebfa16567b7a8efe6eda81785a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 15:57:04 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 68 +++++++++++++++++++++++----------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32ad074..8ff8f80 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,48 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Raleway } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: 'LocalService Pros - Reliable Home & Business Services', - description: 'Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.', - keywords: ["local service, home services, business services, professional repair, local contractor, free quote"], - openGraph: { - "title": "LocalService Pros - Reliable Home & Business Services", - "description": "Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.", - "url": "https://www.localservicepros.com", - "siteName": "LocalService Pros", - "images": [ - { - "url": "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530687.jpg", - "alt": "Local service professional working" - } - ], - "type": "website" - }, - twitter: { - "card": "summary_large_image", - "title": "LocalService Pros - Reliable Home & Business Services", - "description": "Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.", - "images": [ - "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530687.jpg" - ] - }, - robots: { - "index": true, - "follow": true - }, -}; +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); const raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + metadataBase: new URL("https://www.localservicepros.com"), + title: "LocalService Pros - Reliable Home & Business Services", description: "Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.", keywords: ["local service", "home services", "business services", "professional repair", "local contractor", "free quote"], + openGraph: { + title: "LocalService Pros - Reliable Home & Business Services", description: "Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.", url: "https://www.localservicepros.com", siteName: "LocalService Pros", images: [ + { + url: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530687.jpg", alt: "Local service professional working" + } + ], + type: "website" + }, + twitter: { + card: "summary_large_image", title: "LocalService Pros - Reliable Home & Business Services", description: "Your trusted local experts for fast, professional home and business services. Get a free quote and reliable help today in your area.", images: [ + "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530687.jpg" + ] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -53,7 +51,9 @@ export default function RootLayout({ return ( - + {children}