From dac0ae1dde0e11c6f802660802ea6d61886cf7ea Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:07:11 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5cbc98f..1050a01 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,7 +8,7 @@ const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Pro Renton Plumbers | 24/7 Emergency Plumbing Services", description: - "Trusted local plumbers in Renton providing fast, reliable repairs and installations. Licensed, insured, 24/7 emergency service available. Call (253) 235-2228."}; + "Trusted local plumbers in Renton providing fast, reliable repairs and installations. Licensed, insured, 24/7 emergency service available."}; export default function RootLayout({ children, -- 2.49.1 From 4cb88a0855a725e9f4e69c44a851bb8cf22c51b3 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:07:12 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 192 +++++++++++++++++++++++------------------------ 1 file changed, 96 insertions(+), 96 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 080b383..b8d2328 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,6 +7,7 @@ import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll" import FeatureBento from "@/components/sections/feature/FeatureBento"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; @@ -29,6 +30,7 @@ import { Clock, Award, Users, + TrendingUp, Hammer, Gauge, } from "lucide-react"; @@ -36,14 +38,21 @@ import { export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Services", id: "#services" }, - { name: "Reviews", id: "#testimonials" }, - { name: "Contact", id: "#contact" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; + const navLinks = navItems.map((item) => { + if (item.id === "/") { + return { name: item.name, id: item.id }; + } + return { name: item.name, id: item.id }; + }); + return (
- -
-
+
+ +
+
@@ -200,11 +201,11 @@ export default function HomePage() { title="Why Choose Pro Renton Plumbers" description="We're not just another plumbing company. We're your neighbors, committed to providing honest, reliable service backed by years of experience and hundreds of satisfied customers throughout Renton. Every job is backed by our satisfaction guarantee." metrics={[ - { value: "25+", title: "Years Combined Experience" }, + { value: "25+", title: "Years of Combined Experience" }, { value: "500+", title: "Happy Customers Served" }, { value: "100%", title: "Satisfaction Guarantee" }, ]} - imageSrc="https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=500&q=80" + imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-auto-repairman-looking-camera-while-his-customers-are-standing-background_637285-7790.jpg" imageAlt="Professional plumbing team" useInvertedBackground={false} mediaAnimation="slide-up" @@ -215,7 +216,7 @@ export default function HomePage() {
-
+
-- 2.49.1 From 98608dc0d5fb1777bf26d60e7272961f10a81382 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:07:12 +0000 Subject: [PATCH 3/3] Update src/app/services/page.tsx --- src/app/services/page.tsx | 82 +++++++++++++++++++++++++-------------- 1 file changed, 53 insertions(+), 29 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 0b989d7..75be0b3 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -4,6 +4,7 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import FeatureBento from "@/components/sections/feature/FeatureBento"; +import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { @@ -17,20 +18,23 @@ import { Zap, Hammer, Shield, - Gauge, + TrendingUp, + Users, + Award, + CheckCircle, } from "lucide-react"; export default function ServicesPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Services", id: "/services" }, - { name: "Reviews", id: "/" }, - { name: "Contact", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; return (
@@ -53,42 +57,34 @@ export default function ServicesPage() {
+
+ +
+
-- 2.49.1