Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-12 07:09:46 +00:00
6 changed files with 75 additions and 39 deletions

View File

@@ -118,7 +118,7 @@ export default function AboutPage() {
"Exceptional service from start to finish. They diagnosed the problem accurately and fixed it right the first time. No hidden charges!",
icon: ThumbsUp,
imageSrc:
"http://img.b2bpic.net/free-photo/serious-mature-business-leader-wearing-wristwatch_74855-3703.jpg",
"http://img.b2bpic.net/free-photo/serious-mature-business-leader-wearing-wristwatch_74855-3703.jpg?_wi=2",
imageAlt: "Robert Thompson",
},
{
@@ -129,7 +129,7 @@ export default function AboutPage() {
"They handle our commercial plumbing needs with professionalism and urgency. Never let us down during critical times.",
icon: Star,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-pretty-smiling-woman-posing-white-background_231208-1813.jpg",
"http://img.b2bpic.net/free-photo/portrait-pretty-smiling-woman-posing-white-background_231208-1813.jpg?_wi=2",
imageAlt: "Lisa Anderson",
},
{
@@ -140,7 +140,7 @@ export default function AboutPage() {
"Scheduled maintenance visits keep our properties running smoothly. Their technicians are knowledgeable and courteous.",
icon: CheckCircle,
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-business-man-listening-music_23-2148763848.jpg",
"http://img.b2bpic.net/free-photo/front-view-business-man-listening-music_23-2148763848.jpg?_wi=2",
imageAlt: "James Wilson",
},
{
@@ -151,7 +151,7 @@ export default function AboutPage() {
"Emergency call at midnight and they showed up within the hour. Professional, fast, and honest. Highly recommended!",
icon: Heart,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-cheerful-teenage-girl-sitting-cafe_1262-3048.jpg",
"http://img.b2bpic.net/free-photo/portrait-cheerful-teenage-girl-sitting-cafe_1262-3048.jpg?_wi=2",
imageAlt: "Patricia Lee",
},
{
@@ -162,7 +162,7 @@ export default function AboutPage() {
"Their preventative maintenance program saved us from a catastrophic failure. Worth every penny!",
icon: Award,
imageSrc:
"http://img.b2bpic.net/free-photo/serious-mature-business-leader-wearing-wristwatch_74855-3703.jpg",
"http://img.b2bpic.net/free-photo/serious-mature-business-leader-wearing-wristwatch_74855-3703.jpg?_wi=3",
imageAlt: "Mark Garcia",
},
{
@@ -173,7 +173,7 @@ export default function AboutPage() {
"The only plumber I call. Been with them for 10 years and they've never disappointed. True professionals.",
icon: Sparkles,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-pretty-smiling-woman-posing-white-background_231208-1813.jpg",
"http://img.b2bpic.net/free-photo/portrait-pretty-smiling-woman-posing-white-background_231208-1813.jpg?_wi=3",
imageAlt: "Susan Martinez",
},
]}

View File

@@ -80,7 +80,7 @@ export default function ContactPage() {
required: true,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881158.jpg"
imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881158.jpg?_wi=2"
imageAlt="professional plumber smiling portrait work"
mediaAnimation="slide-up"
mediaPosition="right"

View File

@@ -1,29 +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 { DM_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 { Manrope } from "next/font/google";
import { DM_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 manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Option One Plumbing - San Dimas Plumbers 35+ Years",
description: "San Dimas' trusted plumbers for 35+ years. 24/7 emergency service, free estimates, background-checked technicians. Call (909) 361-5286 now!",
keywords: "plumber San Dimas, emergency plumbing, 24/7 plumber, plumbing repair, water heater, drain cleaning",
metadataBase: new URL("https://optioneoneplumbing.com"),
alternates: {
canonical: "https://optioneoneplumbing.com",
},
openGraph: {
title: "Option One Plumbing - San Dimas' Trusted Plumbers",
description: "35+ years of professional plumbing service. Emergency available 24/7. Free estimates. (909) 361-5286",
url: "https://optioneoneplumbing.com",
siteName: "Option One Plumbing",
type: "website",
images: [
{
url: "https://optioneoneplumbing.com/og-image.jpg",
alt: "Option One Plumbing - Professional Service",
},
],
},
twitter: {
card: "summary_large_image",
title: "Option One Plumbing - San Dimas Plumbers",
description: "24/7 emergency plumbing. 35+ years serving San Dimas & surrounding areas.",
images: ["https://optioneoneplumbing.com/twitter-image.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -32,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -44,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -78,7 +78,7 @@ export default function HomePage() {
handle: "San Dimas Resident",
testimonial: "Called at 11 PM with a burst pipe. They arrived in 30 minutes and fixed it perfectly. Outstanding service!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/serious-mature-business-leader-wearing-wristwatch_74855-3703.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/serious-mature-business-leader-wearing-wristwatch_74855-3703.jpg?_wi=1",
imageAlt: "Michael Rodriguez",
},
{
@@ -86,7 +86,7 @@ export default function HomePage() {
handle: "Business Owner",
testimonial: "Used Option One for 5 years. Knowledgeable, professional, and always on time. Highly recommend!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-smiling-woman-posing-white-background_231208-1813.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-smiling-woman-posing-white-background_231208-1813.jpg?_wi=1",
imageAlt: "Sarah Johnson",
},
{
@@ -94,7 +94,7 @@ export default function HomePage() {
handle: "Homeowner",
testimonial: "Best plumber in the area. Fair pricing and they actually fixed the root cause, not just the symptom.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-business-man-listening-music_23-2148763848.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-business-man-listening-music_23-2148763848.jpg?_wi=1",
imageAlt: "David Chen",
},
{
@@ -102,7 +102,7 @@ export default function HomePage() {
handle: "Property Manager",
testimonial: "Reliable, trustworthy, and their work is guaranteed. They've saved us thousands with preventative advice.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-teenage-girl-sitting-cafe_1262-3048.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-teenage-girl-sitting-cafe_1262-3048.jpg?_wi=1",
imageAlt: "Jennifer Martinez",
},
]}
@@ -123,37 +123,37 @@ export default function HomePage() {
id: "1",
title: "Leak Detection and Repair",
tags: ["Emergency", "Preventative"],
imageSrc: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990736.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990736.jpg?_wi=1",
},
{
id: "2",
title: "Faucet Installation and Repair",
tags: ["Installation", "Repair"],
imageSrc: "http://img.b2bpic.net/free-photo/steel-faucet-interior-modern-bathroom-with-window_169016-26704.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/steel-faucet-interior-modern-bathroom-with-window_169016-26704.jpg?_wi=1",
},
{
id: "3",
title: "Garbage Disposal Service",
tags: ["Installation", "Maintenance"],
imageSrc: "http://img.b2bpic.net/free-photo/man-cleans-up-forest-throws-bottle-into-trash-bag-closeup_169016-23002.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-cleans-up-forest-throws-bottle-into-trash-bag-closeup_169016-23002.jpg?_wi=1",
},
{
id: "4",
title: "Water Heater Installation",
tags: ["Installation", "Replacement"],
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg?_wi=1",
},
{
id: "5",
title: "Drain Cleaning and Unclogging",
tags: ["Emergency", "Professional"],
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746312.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746312.jpg?_wi=1",
},
{
id: "6",
title: "Sewer Repair",
tags: ["Advanced", "Reliable"],
imageSrc: "http://img.b2bpic.net/free-photo/portrait-oilfield-worker-standing-by-gas-pipe-construction-site_342744-364.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-oilfield-worker-standing-by-gas-pipe-construction-site_342744-364.jpg?_wi=1",
},
]}
animationType="slide-up"

View File

@@ -87,7 +87,7 @@ export default function ReviewsPage() {
"Exceptional service from start to finish. They diagnosed the problem accurately and fixed it right the first time. No hidden charges!",
icon: ThumbsUp,
imageSrc:
"http://img.b2bpic.net/free-photo/serious-mature-business-leader-wearing-wristwatch_74855-3703.jpg",
"http://img.b2bpic.net/free-photo/serious-mature-business-leader-wearing-wristwatch_74855-3703.jpg?_wi=4",
imageAlt: "Robert Thompson",
},
{
@@ -98,7 +98,7 @@ export default function ReviewsPage() {
"They handle our commercial plumbing needs with professionalism and urgency. Never let us down during critical times.",
icon: Star,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-pretty-smiling-woman-posing-white-background_231208-1813.jpg",
"http://img.b2bpic.net/free-photo/portrait-pretty-smiling-woman-posing-white-background_231208-1813.jpg?_wi=4",
imageAlt: "Lisa Anderson",
},
{
@@ -109,7 +109,7 @@ export default function ReviewsPage() {
"Scheduled maintenance visits keep our properties running smoothly. Their technicians are knowledgeable and courteous.",
icon: CheckCircle,
imageSrc:
"http://img.b2bpic.net/free-photo/front-view-business-man-listening-music_23-2148763848.jpg",
"http://img.b2bpic.net/free-photo/front-view-business-man-listening-music_23-2148763848.jpg?_wi=3",
imageAlt: "James Wilson",
},
{
@@ -120,7 +120,7 @@ export default function ReviewsPage() {
"Emergency call at midnight and they showed up within the hour. Professional, fast, and honest. Highly recommended!",
icon: Heart,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-cheerful-teenage-girl-sitting-cafe_1262-3048.jpg",
"http://img.b2bpic.net/free-photo/portrait-cheerful-teenage-girl-sitting-cafe_1262-3048.jpg?_wi=3",
imageAlt: "Patricia Lee",
},
{
@@ -131,7 +131,7 @@ export default function ReviewsPage() {
"Their preventative maintenance program saved us from a catastrophic failure. Worth every penny!",
icon: Award,
imageSrc:
"http://img.b2bpic.net/free-photo/serious-mature-business-leader-wearing-wristwatch_74855-3703.jpg",
"http://img.b2bpic.net/free-photo/serious-mature-business-leader-wearing-wristwatch_74855-3703.jpg?_wi=5",
imageAlt: "Mark Garcia",
},
{
@@ -142,7 +142,7 @@ export default function ReviewsPage() {
"The only plumber I call. Been with them for 10 years and they've never disappointed. True professionals.",
icon: Sparkles,
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-pretty-smiling-woman-posing-white-background_231208-1813.jpg",
"http://img.b2bpic.net/free-photo/portrait-pretty-smiling-woman-posing-white-background_231208-1813.jpg?_wi=5",
imageAlt: "Susan Martinez",
},
]}

View File

@@ -59,37 +59,37 @@ export default function ServicesPage() {
id: "1",
title: "Leak Detection and Repair",
tags: ["Emergency", "Preventative"],
imageSrc: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990736.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990736.jpg?_wi=2",
},
{
id: "2",
title: "Faucet Installation and Repair",
tags: ["Installation", "Repair"],
imageSrc: "http://img.b2bpic.net/free-photo/steel-faucet-interior-modern-bathroom-with-window_169016-26704.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/steel-faucet-interior-modern-bathroom-with-window_169016-26704.jpg?_wi=2",
},
{
id: "3",
title: "Garbage Disposal Service",
tags: ["Installation", "Maintenance"],
imageSrc: "http://img.b2bpic.net/free-photo/man-cleans-up-forest-throws-bottle-into-trash-bag-closeup_169016-23002.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-cleans-up-forest-throws-bottle-into-trash-bag-closeup_169016-23002.jpg?_wi=2",
},
{
id: "4",
title: "Water Heater Installation",
tags: ["Installation", "Replacement"],
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg?_wi=2",
},
{
id: "5",
title: "Drain Cleaning and Unclogging",
tags: ["Emergency", "Professional"],
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746312.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746312.jpg?_wi=2",
},
{
id: "6",
title: "Sewer Repair",
tags: ["Advanced", "Reliable"],
imageSrc: "http://img.b2bpic.net/free-photo/portrait-oilfield-worker-standing-by-gas-pipe-construction-site_342744-364.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-oilfield-worker-standing-by-gas-pipe-construction-site_342744-364.jpg?_wi=2",
},
{
id: "7",
@@ -185,7 +185,7 @@ export default function ServicesPage() {
required: true,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881158.jpg"
imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881158.jpg?_wi=1"
imageAlt="Professional plumbing technician"
mediaAnimation="slide-up"
mediaPosition="right"