From 5bc35ebf982b9f07fc1cea06b7dfc5e03533ed27 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 21:27:47 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 07d9830..7cbcefd 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -47,32 +47,32 @@ export default function AboutPage() { carouselItems={[ { id: "about-carousel-1", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-working-with-drill_23-2148643260.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-working-with-drill_23-2148643260.jpg?_wi=2", imageAlt: "Professional plumber at work", }, { id: "about-carousel-2", - imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-with-client-fix-kitchen-problems_23-2150990685.jpg?_wi=5", imageAlt: "Expert plumber service", }, { id: "about-carousel-3", - imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746301.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746301.jpg?_wi=2", imageAlt: "Water heater installation", }, { id: "about-carousel-4", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746294.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746294.jpg?_wi=2", imageAlt: "Professional plumbing inspection", }, { id: "about-carousel-5", - imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55822.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55822.jpg?_wi=2", imageAlt: "Expert pipe installation", }, { id: "about-carousel-6", - imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg?_wi=2", imageAlt: "Quality plumbing repair", }, ]} -- 2.49.1 From 1460215610d5c5cd7f06fb40b45d869e34824edd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 21:27:47 +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 cbf06f9..1839e66 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -43,7 +43,7 @@ export default function ContactPage() { Date: Fri, 13 Mar 2026 21:27:48 +0000 Subject: [PATCH 3/5] 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 0d09ce2..ca5d1f3 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 { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "ProFlow Plumbing | Expert Plumbers in Your Area", + description: "Professional plumbing services including emergency repair, water heater installation, drain cleaning, and leak detection. Licensed, insured, same-day service available.", + keywords: "plumber, plumbing services, emergency plumbing, water heater repair, drain cleaning, leak detection, local plumber", + metadataBase: new URL("https://proflowplumbing.com"), + alternates: { + canonical: "https://proflowplumbing.com", + }, + openGraph: { + title: "ProFlow Plumbing | Professional Plumbing Solutions", + description: "Expert plumbing services with same-day emergency response. Licensed, insured, transparent pricing.", + url: "https://proflowplumbing.com", + siteName: "ProFlow Plumbing", + type: "website", + images: [ + { + url: "https://proflowplumbing.com/og-image.jpg", + alt: "Professional plumber at work", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ProFlow Plumbing | Professional Plumbing Services", + description: "Expert local plumbers with 24/7 emergency response. Same-day service available.", + images: ["https://proflowplumbing.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}