From 0e9430fb3fd35d7f842293b9f39ada7428325be3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:23:56 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1a97dba..f3632e3 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -79,7 +79,7 @@ export default function AboutPage() { description: "24/7 emergency plumbing services for burst pipes, water leaks, and urgent issues. Fast response times and professional solutions to minimize water damage and restore your plumbing system.", imageSrc: - "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg", + "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg?_wi=3", imageAlt: "drain cleaning professional plumber", }, { @@ -88,7 +88,7 @@ export default function AboutPage() { description: "Professional drain cleaning using state-of-the-art equipment. We clear stubborn clogs, tree roots, and debris to restore proper drainage and prevent backups.", imageSrc: - "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg", + "http://img.b2bpic.net/free-photo/profile-man-touching-socket-wall-with-screwdriver_259150-58245.jpg?_wi=4", imageAlt: "drain cleaning professional plumber", }, { @@ -97,7 +97,7 @@ export default function AboutPage() { description: "Advanced leak detection technology to identify hidden water leaks in walls, underground, and fixtures. Quick repairs prevent costly water damage and reduce your water bills.", imageSrc: - "http://img.b2bpic.net/free-photo/focused-plumber-working-assembling-pipelines-install-plumbing-system-while-building-new-house_662251-539.jpg", + "http://img.b2bpic.net/free-photo/focused-plumber-working-assembling-pipelines-install-plumbing-system-while-building-new-house_662251-539.jpg?_wi=2", imageAlt: "water leak detection plumbing repair", }, ]} -- 2.49.1 From ddd8d98c040d1dcc6fec69309d73f63a185c7272 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:23:57 +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 039f86b..5d76257 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -43,7 +43,7 @@ export default function ContactPage() { tag="Contact Us" title="Emergency Plumbing? Call Now" description="Available 24/7 for emergency plumbing services in Miami-Dade County. Our team responds quickly to burst pipes, leaks, clogs, and other urgent plumbing issues." - imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881677.jpg" + imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881677.jpg?_wi=3" imageAlt="Professional plumber ready to help" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From b48fae7b7de8d274ddff84ec7ffe187c9ff2853a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:23:57 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 47 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..43ae713 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,52 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; import { Inter } 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 { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Main Plumbing Services - 24/7 Emergency Plumbing Miami", + description: "Licensed emergency plumbing services in Miami-Dade County. 24/7 response for burst pipes, drain cleaning, leak repair, water heater installation & sewer services.", + keywords: "emergency plumbing Miami, plumber Miami-Dade, drain cleaning Miami, leak repair, water heater installation, sewer line repair, 24/7 plumbing", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Main Plumbing Services - 24/7 Emergency Plumbing in Miami", + description: "Professional licensed plumbers available 24/7 for emergency repairs, drain cleaning, leak detection, water heater installation, and sewer services throughout Miami-Dade County.", + type: "website", + siteName: "Main Plumbing Services", + images: [ + { + url: "http://img.b2bpic.net/free-photo/annoyed-slavic-cleaner-man-with-rubber-gloves-holding-alarm-clock_141793-124525.jpg", + alt: "Main Plumbing Services - Emergency Plumbing in Miami", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Main Plumbing Services - 24/7 Emergency Plumbing", + description: "Fast response emergency plumbing in Miami. Licensed professionals for all your plumbing needs.", + images: [ + "http://img.b2bpic.net/free-photo/annoyed-slavic-cleaner-man-with-rubber-gloves-holding-alarm-clock_141793-124525.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +55,9 @@ export default function RootLayout({ return ( - + {children}