Merge version_1 into main #6

Merged
bender merged 7 commits from version_1 into main 2026-03-10 18:53:59 +00:00
7 changed files with 96 additions and 57 deletions

View File

@@ -50,15 +50,15 @@ export default function ContactPage() {
background={{ variant: "plain" }}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg?_wi=5",
imageAlt: "Professional handyman ready to help",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg?_wi=6",
imageAlt: "Expert tradesperson at work",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/mid-adult-businessman-giving-presentation-group-industrial-workers-factory_637285-4792.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mid-adult-businessman-giving-presentation-group-industrial-workers-factory_637285-4792.jpg?_wi=2",
imageAlt: "Professional team collaboration",
},
]}
@@ -85,28 +85,28 @@ export default function ContactPage() {
id: "01",
title: "Call Us Directly",
description: "Quick response to your service requests. Our team is available to answer questions and schedule appointments at your convenience.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg?_wi=6",
imageAlt: "Direct phone contact service",
},
{
id: "02",
title: "Fast Response Times",
description: "We understand your time is valuable. Expect quick callbacks and efficient scheduling. Most requests answered within 2 business hours.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg?_wi=6",
imageAlt: "Fast response professional service",
},
{
id: "03",
title: "Free Estimates",
description: "No obligation quotes for your projects. We provide transparent pricing so you know exactly what to expect before work begins.",
imageSrc: "http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg?_wi=6",
imageAlt: "Transparent estimate process",
},
{
id: "04",
title: "Flexible Scheduling",
description: "We work around your schedule. Early morning, evening, or weekend appointments available to minimize disruption to your daily routine.",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150577001.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150577001.jpg?_wi=4",
imageAlt: "Convenient scheduling options",
},
]}

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } 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 { Open_Sans } 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 openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Earl Boys Services LLC - Home Repair & Handyman Richmond VA",
description: "Professional handyman and home repair services in Richmond, VA. Plumbing, electrical, painting, flooring & more. Fast, reliable, affordable. Call 804-938-0669 for free estimate.",
keywords: "handyman Richmond VA, home repair services, plumbing services Richmond, electrical repair, home improvement Virginia",
metadataBase: new URL("https://earlboysservices.com"),
alternates: {
canonical: "https://earlboysservices.com",
},
openGraph: {
title: "Earl Boys Services LLC - Richmond Home Repair Experts",
description: "Trusted local handyman and home services in Richmond, VA. Quality workmanship, fast response, fair pricing.",
url: "https://earlboysservices.com",
siteName: "Earl Boys Services LLC",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg",
alt: "Earl Boys Services - Professional Home Repair",
},
],
},
twitter: {
card: "summary_large_image",
title: "Professional Home Repair Services - Richmond, VA",
description: "Earl Boys Services LLC - Your trusted local handyman. Plumbing, electrical, painting & more.",
images: ["http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -66,17 +66,17 @@ export default function HomePage() {
mediaItems={[
{
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg?_wi=1",
imageAlt: "Professional handyman tools and equipment",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg",
"http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg?_wi=1",
imageAlt: "Skilled handyman performing home repair work",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg",
"http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg?_wi=1",
imageAlt: "Professional plumbing service technician",
},
]}
@@ -114,7 +114,7 @@ export default function HomePage() {
price: "Starting at $75",
variant: "Repairs & Installation",
imageSrc:
"http://img.b2bpic.net/free-vector/minimalist-plumbing-pros-logo_742173-8790.jpg",
"http://img.b2bpic.net/free-vector/minimalist-plumbing-pros-logo_742173-8790.jpg?_wi=1",
imageAlt: "Plumbing services icon",
},
{
@@ -123,7 +123,7 @@ export default function HomePage() {
price: "Starting at $85",
variant: "Interior & Exterior",
imageSrc:
"http://img.b2bpic.net/free-vector/design-artwork-logo-template_23-2149507393.jpg",
"http://img.b2bpic.net/free-vector/design-artwork-logo-template_23-2149507393.jpg?_wi=1",
imageAlt: "Painting services icon",
},
{
@@ -132,7 +132,7 @@ export default function HomePage() {
price: "Starting at $80",
variant: "Repair & Installation",
imageSrc:
"http://img.b2bpic.net/free-vector/energy-logo-design-template_23-2150024111.jpg",
"http://img.b2bpic.net/free-vector/energy-logo-design-template_23-2150024111.jpg?_wi=1",
imageAlt: "Electrical services icon",
},
{
@@ -159,7 +159,7 @@ export default function HomePage() {
price: "Starting at $120",
variant: "Hardwood & Tile",
imageSrc:
"http://img.b2bpic.net/free-photo/installing-ceramic-floor-tiles-construction-site-construction-workers-workers-laying-tiles-floor-with-cement-adhesive-renovating-floor-vertical-frame_166373-2129.jpg",
"http://img.b2bpic.net/free-photo/installing-ceramic-floor-tiles-construction-site-construction-workers-workers-laying-tiles-floor-with-cement-adhesive-renovating-floor-vertical-frame_166373-2129.jpg?_wi=1",
imageAlt: "Flooring installation services icon",
},
]}
@@ -180,7 +180,7 @@ export default function HomePage() {
tag="About Us"
tagIcon={Award}
tagAnimation="entrance-slide"
imageSrc="http://img.b2bpic.net/free-photo/mid-adult-businessman-giving-presentation-group-industrial-workers-factory_637285-4792.jpg"
imageSrc="http://img.b2bpic.net/free-photo/mid-adult-businessman-giving-presentation-group-industrial-workers-factory_637285-4792.jpg?_wi=1"
imageAlt="Earl Boys Services professional team"
buttons={[
{
@@ -209,7 +209,7 @@ export default function HomePage() {
description:
"Experienced, courteous team members who take pride in quality workmanship",
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg",
"http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg?_wi=1",
imageAlt: "Professional quality workmanship",
},
{
@@ -218,7 +218,7 @@ export default function HomePage() {
description:
"Quick scheduling and efficient service completion to minimize disruption to your home",
imageSrc:
"http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg",
"http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg?_wi=1",
imageAlt: "Fast professional service",
},
{
@@ -227,7 +227,7 @@ export default function HomePage() {
description:
"Fair, upfront quotes with no hidden charges. Affordable solutions for every budget",
imageSrc:
"http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg",
"http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg?_wi=1",
imageAlt: "Affordable pricing transparency",
},
{
@@ -236,7 +236,7 @@ export default function HomePage() {
description:
"Richmond-based business invested in our community and committed to local service excellence",
imageSrc:
"http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150577001.jpg",
"http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150577001.jpg?_wi=1",
imageAlt: "Local community service",
},
]}

View File

@@ -52,15 +52,15 @@ export default function ElectricalServicesPage() {
}}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg?_wi=3",
imageAlt: "Professional electrician at work"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg?_wi=3",
imageAlt: "Electrical installation work"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg?_wi=4",
imageAlt: "Professional tradesperson"
}
]}
@@ -94,28 +94,28 @@ export default function ElectricalServicesPage() {
id: "01",
title: "Licensed & Insured",
description: "Fully licensed electricians meeting all Richmond and Virginia electrical codes. Complete insurance coverage for your peace of mind.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg?_wi=3",
imageAlt: "Professional electrician tools"
},
{
id: "02",
title: "Safety First Approach",
description: "We prioritize safety in every electrical project. Proper grounding, circuit protection, and code compliance are non-negotiable.",
imageSrc: "http://img.b2bpic.net/free-vector/energy-logo-design-template_23-2150024111.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/energy-logo-design-template_23-2150024111.jpg?_wi=2",
imageAlt: "Electrical safety standards"
},
{
id: "03",
title: "Rapid Response",
description: "Electrical emergencies don't wait. We offer fast scheduling and emergency service availability for urgent electrical issues.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg?_wi=3",
imageAlt: "Quick professional service"
},
{
id: "04",
title: "Fair Transparent Pricing",
description: "Upfront quotes with no hidden fees. We explain the work needed and provide honest estimates before starting any project.",
imageSrc: "http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg?_wi=3",
imageAlt: "Transparent pricing"
}
]}

View File

@@ -50,15 +50,15 @@ export default function FlooringServicesPage() {
background={{ variant: "plain" }}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/installing-ceramic-floor-tiles-construction-site-construction-workers-workers-laying-tiles-floor-with-cement-adhesive-renovating-floor-vertical-frame_166373-2129.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/installing-ceramic-floor-tiles-construction-site-construction-workers-workers-laying-tiles-floor-with-cement-adhesive-renovating-floor-vertical-frame_166373-2129.jpg?_wi=2",
imageAlt: "Professional flooring installation with tile",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg?_wi=5",
imageAlt: "Skilled flooring technician at work",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg?_wi=6",
imageAlt: "Professional tradesperson quality work",
},
]}
@@ -85,28 +85,28 @@ export default function FlooringServicesPage() {
id: "01",
title: "Premium Material Selection",
description: "We source and install high-quality hardwood, laminate, and tile options. Professional consultation to match your style and budget.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg?_wi=5",
imageAlt: "Professional quality flooring materials",
},
{
id: "02",
title: "Expert Installation",
description: "Precise measurement, preparation, and installation. Flawless finishes with proper underlayment and finishing techniques for lasting durability.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg?_wi=5",
imageAlt: "Expert flooring installation process",
},
{
id: "03",
title: "Competitive Pricing",
description: "Transparent quotes with no hidden fees. Professional work at fair prices. Get quality flooring without breaking your budget.",
imageSrc: "http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg?_wi=5",
imageAlt: "Transparent pricing and fair estimates",
},
{
id: "04",
title: "Quick Project Completion",
description: "Efficient team minimizes disruption to your home. We work clean and professional, respecting your space and timeline.",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150577001.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150577001.jpg?_wi=3",
imageAlt: "Fast and efficient professional service",
},
]}

View File

@@ -52,15 +52,15 @@ export default function PaintingServicesPage() {
}}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg?_wi=4",
imageAlt: "Professional painter at work"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg?_wi=4",
imageAlt: "Painting service in progress"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg?_wi=5",
imageAlt: "Professional tradesperson"
}
]}
@@ -94,28 +94,28 @@ export default function PaintingServicesPage() {
id: "01",
title: "Expert Preparation",
description: "Proper surface preparation is key to lasting paint jobs. We clean, patch, and prime thoroughly for flawless results that last for years.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg?_wi=4",
imageAlt: "Professional painting preparation"
},
{
id: "02",
title: "Premium Materials",
description: "We use high-quality paints and finishes that provide durability, color retention, and protection against the elements and wear.",
imageSrc: "http://img.b2bpic.net/free-vector/design-artwork-logo-template_23-2149507393.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/design-artwork-logo-template_23-2149507393.jpg?_wi=2",
imageAlt: "Premium paint selection"
},
{
id: "03",
title: "Interior & Exterior Expertise",
description: "From living room refreshes to complete exterior transformations, we handle all painting projects with the same attention to detail and professionalism.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg?_wi=4",
imageAlt: "Interior and exterior painting"
},
{
id: "04",
title: "Clean Professional Work",
description: "Minimal disruption to your home and life. We protect your furniture and floors, maintain a clean work site, and leave no mess behind.",
imageSrc: "http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg?_wi=4",
imageAlt: "Professional cleanup"
}
]}

View File

@@ -56,17 +56,17 @@ export default function PlumbingPage() {
mediaItems={[
{
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg",
"http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg?_wi=2",
imageAlt: "Professional plumber fixing pipes",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg",
"http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg?_wi=2",
imageAlt: "Professional home repair work",
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg?_wi=2",
imageAlt: "Professional tradesman with tools",
},
]}
@@ -101,7 +101,7 @@ export default function PlumbingPage() {
description:
"Quick identification and repair of water leaks in pipes, faucets, and fixtures to prevent water damage and waste",
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg",
"http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg?_wi=3",
imageAlt: "Plumber fixing pipes",
},
{
@@ -110,7 +110,7 @@ export default function PlumbingPage() {
description:
"Professional installation of new plumbing systems and replacement of old, corroded, or damaged pipes",
imageSrc:
"http://img.b2bpic.net/free-vector/minimalist-plumbing-pros-logo_742173-8790.jpg",
"http://img.b2bpic.net/free-vector/minimalist-plumbing-pros-logo_742173-8790.jpg?_wi=2",
imageAlt: "Plumbing installation services",
},
{
@@ -119,7 +119,7 @@ export default function PlumbingPage() {
description:
"Expert drain cleaning services to clear clogs and keep your plumbing system flowing smoothly",
imageSrc:
"http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg",
"http://img.b2bpic.net/free-photo/woman-standing-ladder-balance_23-2149366706.jpg?_wi=2",
imageAlt: "Professional maintenance work",
},
]}
@@ -145,7 +145,7 @@ export default function PlumbingPage() {
description:
"All our plumbers are fully licensed, insured, and trained in the latest plumbing codes and techniques",
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg",
"http://img.b2bpic.net/free-photo/front-view-tools-carpentry-table_23-2148643196.jpg?_wi=2",
imageAlt: "Professional tools and equipment",
},
{
@@ -154,7 +154,7 @@ export default function PlumbingPage() {
description:
"We offer emergency plumbing services to handle urgent repairs whenever you need us",
imageSrc:
"http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg",
"http://img.b2bpic.net/free-photo/frustrated-young-husband-wife-doing-paperwork-together-calculating-their-expenses-managing-bills-using-laptop-computer-calculator-modern-kitchen_273609-1677.jpg?_wi=2",
imageAlt: "Professional service response",
},
{
@@ -163,7 +163,7 @@ export default function PlumbingPage() {
description:
"Transparent, honest pricing with no surprises. We provide free estimates before starting any work",
imageSrc:
"http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150577001.jpg",
"http://img.b2bpic.net/free-photo/full-shot-people-garage-sale_23-2150577001.jpg?_wi=2",
imageAlt: "Pricing transparency",
},
]}