From 65df3f4002e1b75eddf7436ac035575d128c0e85 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:29:13 +0000 Subject: [PATCH 1/9] Add src/app/about/page.tsx --- src/app/about/page.tsx | 183 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..d62c96a --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,183 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; +import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Award, CheckCircle, Users, Clock, Zap, Phone, Mail, MapPin, Target, Lightbulb, Heart } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 09480331256a145f3f34af99f45fe2640facf5fd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:29:14 +0000 Subject: [PATCH 2/9] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 163 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..cf9c2bd --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,163 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Phone, Mail, MapPin, Clock, AlertCircle, CheckCircle } from 'lucide-react'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 4ce11c1555a943af7372411e32a7c3b866a87660 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:29:14 +0000 Subject: [PATCH 3/9] Update src/app/layout.tsx --- src/app/layout.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd04bd0..2955c85 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,7 +5,8 @@ import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ProServe Plumbing - Trusted Plumbing Services", description: "Professional plumbing solutions for residential and commercial properties. Licensed, insured, and available for emergency service."}; + title: "ProServe Plumbing - Trusted Plumbing Services", description: "Professional plumbing solutions for residential and commercial properties. Licensed, insured, and available for emergency service." +}; export default function RootLayout({ children, -- 2.49.1 From 697ce5f010e74c58c969596087aecdc69dfb8c63 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:29:14 +0000 Subject: [PATCH 4/9] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 56b14a9..7958f75 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,8 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Why Us", id: "why-us" }, { name: "Testimonials", id: "testimonials" }, - { name: "Contact", id: "contact" } + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" } ]} button={{ text: "Call Now", href: "tel:+1-555-0123" @@ -51,7 +52,7 @@ export default function LandingPage() { background={{ variant: "plain" }} buttons={[ { text: "Call Now", href: "tel:+1-555-0123" }, - { text: "Get Free Quote", href: "#contact" } + { text: "Get Free Quote", href: "/contact" } ]} buttonAnimation="slide-up" mediaItems={[ -- 2.49.1 From 767b0c12959fad37536e3c46dd07edc2d414fb03 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:29:15 +0000 Subject: [PATCH 5/9] Add src/app/services/installation/page.tsx --- src/app/services/installation/page.tsx | 163 +++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 src/app/services/installation/page.tsx diff --git a/src/app/services/installation/page.tsx b/src/app/services/installation/page.tsx new file mode 100644 index 0000000..b42d2c0 --- /dev/null +++ b/src/app/services/installation/page.tsx @@ -0,0 +1,163 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Phone, Mail, MapPin, Zap, CheckCircle, Award } from 'lucide-react'; + +export default function InstallationServicePage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From aa95d69ea547d16254a541a1a881cbf1be308c97 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:29:15 +0000 Subject: [PATCH 6/9] Add src/app/services/maintenance/page.tsx --- src/app/services/maintenance/page.tsx | 166 ++++++++++++++++++++++++++ 1 file changed, 166 insertions(+) create mode 100644 src/app/services/maintenance/page.tsx diff --git a/src/app/services/maintenance/page.tsx b/src/app/services/maintenance/page.tsx new file mode 100644 index 0000000..502688c --- /dev/null +++ b/src/app/services/maintenance/page.tsx @@ -0,0 +1,166 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Phone, Mail, MapPin, Shield, Zap, Clock } from 'lucide-react'; + +export default function MaintenanceServicePage() { + return ( + + + +
+ +
+ +
+
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From aa92be38578adae6fab15b88ac2eaaab04351fe7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:29:16 +0000 Subject: [PATCH 7/9] Add src/app/services/page.tsx --- src/app/services/page.tsx | 188 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 188 insertions(+) create mode 100644 src/app/services/page.tsx diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..8fb9f40 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,188 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { MapPin, Phone, Mail, Wrench, Zap, ArrowRight } from 'lucide-react'; + +export default function ServicesPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 80089bce348b8c41bfee59361aceed9d645666ab Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:29:16 +0000 Subject: [PATCH 8/9] Add src/app/services/repair/page.tsx --- src/app/services/repair/page.tsx | 163 +++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 src/app/services/repair/page.tsx diff --git a/src/app/services/repair/page.tsx b/src/app/services/repair/page.tsx new file mode 100644 index 0000000..762f606 --- /dev/null +++ b/src/app/services/repair/page.tsx @@ -0,0 +1,163 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Phone, Mail, MapPin, Wrench, Clock, Shield } from 'lucide-react'; + +export default function RepairServicePage() { + return ( + + + +
+ +
+ +
+ +
+ +
+
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From cec44b4e5554e344a0396b1619b08bba4f3959f2 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:29:17 +0000 Subject: [PATCH 9/9] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 676c0e8..6219701 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f7f6f7; - --card: #ffffff; - --foreground: #0c1325; - --primary-cta: #0798ff; + --background: #ffffff; + --card: #f9f9f9; + --foreground: #000612e6; + --primary-cta: #15479c; --primary-cta-text: #f7f6f7; - --secondary-cta: #ffffff; + --secondary-cta: #ff8c42; --secondary-cta-text: #0c1325; - --accent: #93c7ff; - --background-accent: #a8cde8; + --accent: #0a7039; + --background-accent: #e2e2e2; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1