From dca9b4180413fa25d9c6919e7701807dde97851f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 16:52:47 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 722bb8d..f4988ed 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -92,7 +92,7 @@ export default function AboutPage() { "Grew through word-of-mouth recommendations from satisfied customers", "Now a team of skilled professionals serving thousands of homes yearly", ], - imageSrc: "http://img.b2bpic.net/free-photo/foreman-orange-work-clothes-protective-eyewear-thoughtfully-looking-camera-using-handsaw-workshop_574295-1625.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/foreman-orange-work-clothes-protective-eyewear-thoughtfully-looking-camera-using-handsaw-workshop_574295-1625.jpg?_wi=2", imageAlt: "Professional plumber with expertise", }, { @@ -103,7 +103,7 @@ export default function AboutPage() { "Quality: Every job completed to the highest standards", "Respect: We treat your home like our own", ], - imageSrc: "http://img.b2bpic.net/free-photo/happy-auto-repairman-shaking-hands-with-his-customers-workshop_637285-7786.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-auto-repairman-shaking-hands-with-his-customers-workshop_637285-7786.jpg?_wi=2", imageAlt: "Customer service excellence", }, { @@ -114,7 +114,7 @@ export default function AboutPage() { "Continuous training on latest plumbing technologies", "Background checks and professional certifications", ], - imageSrc: "http://img.b2bpic.net/free-photo/happy-family-technicians-electricians-plumbers-craftsmen-feeling-happy_273609-7884.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-family-technicians-electricians-plumbers-craftsmen-feeling-happy_273609-7884.jpg?_wi=2", imageAlt: "Professional plumbing team", }, { @@ -125,7 +125,7 @@ export default function AboutPage() { "24/7 emergency response for urgent issues", "100% satisfaction guarantee on all work", ], - imageSrc: "http://img.b2bpic.net/free-photo/professional-female-driver-job_52683-101621.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/professional-female-driver-job_52683-101621.jpg?_wi=2", imageAlt: "Fast response service guarantee", }, ]} -- 2.49.1 From 5e455bb78afb14032d9f3815288b3ced9b9902ad Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 16:52:47 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4bc6af7..605c13d 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -111,7 +111,7 @@ export default function ContactPage() { "Emergency Line: Same number, 24/7", "Local Orem-based support team", ], - imageSrc: "http://img.b2bpic.net/free-photo/professional-female-driver-job_52683-101621.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/professional-female-driver-job_52683-101621.jpg?_wi=3", imageAlt: "Fast response emergency service", }, { @@ -122,7 +122,7 @@ export default function ContactPage() { "Quick response during business hours", "Perfect for non-urgent inquiries", ], - imageSrc: "http://img.b2bpic.net/free-photo/closeup-woman-calculating-bills-calculator_1262-14874.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-woman-calculating-bills-calculator_1262-14874.jpg?_wi=2", imageAlt: "Professional communication", }, { @@ -133,7 +133,7 @@ export default function ContactPage() { "Serving Utah County and surrounding areas", "Quick response times to your location", ], - imageSrc: "http://img.b2bpic.net/free-photo/happy-family-technicians-electricians-plumbers-craftsmen-feeling-happy_273609-7884.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-family-technicians-electricians-plumbers-craftsmen-feeling-happy_273609-7884.jpg?_wi=3", imageAlt: "Professional plumbing team", }, { @@ -144,7 +144,7 @@ export default function ContactPage() { "Rapid dispatch to your location", "Licensed and insured technicians", ], - imageSrc: "http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/woman-fixing-kitchen-sink_53876-139620.jpg?_wi=2", imageAlt: "Emergency plumber responding quickly", }, ]} -- 2.49.1 From 48a927a908cf98b3bbc71c7e871cbe620378dc8e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 16:52:48 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 44 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..48b8728 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,58 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito } 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 { Nunito } 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 nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Orem Plumbers & Drain Cleaning | Fast, Reliable 24/7 Service", + description: "Emergency plumbing services in Orem, Utah. Same-day appointments, licensed & insured, honest pricing. Drain cleaning, water heater repair, leak detection & more.", + keywords: "plumber in Orem Utah, drain cleaning Orem, emergency plumber Orem, water heater repair Orem, plumbing services Utah County, affordable plumbing", + metadataBase: new URL("https://oremplumbers.com"), + alternates: { + canonical: "https://oremplumbers.com", + }, + openGraph: { + title: "Orem Plumbers & Drain Cleaning | Fast Reliable Service", + description: "Professional plumbing services in Orem, Utah. 24/7 emergency response, same-day appointments, licensed and insured.", + siteName: "Orem Plumbers & Drain Cleaning", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/foreman-orange-work-clothes-protective-eyewear-thoughtfully-looking-camera-using-handsaw-workshop_574295-1625.jpg", + alt: "professional plumber installing pipes", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Orem Plumbers & Drain Cleaning", + description: "Fast, reliable 24/7 plumbing services in Orem, Utah. Same-day appointments available.", + images: [ + "http://img.b2bpic.net/free-photo/foreman-orange-work-clothes-protective-eyewear-thoughtfully-looking-camera-using-handsaw-workshop_574295-1625.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +61,9 @@ export default function RootLayout({ return ( - + {children}