From 5030a10ca5f48a68a11781d9ceb0b117be5e8754 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 04:29:29 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 75 +++++++++++++++++------------------------- 1 file changed, 30 insertions(+), 45 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 982acf6..601277d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -8,6 +8,34 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import { Sparkles } from "lucide-react"; export default function AboutPage() { + const commonNavItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Reviews", id: "#reviews" }, + { name: "Contact", id: "/contact-us" } + ]; + + const footerColumns = [ + { + items: [ + { label: "Home", href: "/" }, + { label: "Services", href: "/services" }, + { label: "About", href: "/about" }, + { label: "Reviews", href: "#reviews" }, + { label: "Contact", href: "/contact-us" } + ] + }, + { + items: [ + { label: "Greater Victoria, BC", href: "#" }, + { label: "Phone: (XXX) XXX-XXXX", href: "tel:XXX-XXX-XXXX" }, + { label: "Email: info@prizmhvac.com", href: "mailto:info@prizmhvac.com" }, + { label: "Hours: Mon-Fri, 8 AM - 5 PM", href: "#" } + ] + } + ]; + return ( @@ -61,34 +73,7 @@ export default function AboutPage() { -- 2.49.1 From 072333cc90a6353859733ef4124df233b6f964b1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 04:29:30 +0000 Subject: [PATCH 2/4] Update src/app/contact-us/page.tsx --- src/app/contact-us/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/contact-us/page.tsx b/src/app/contact-us/page.tsx index 6bbd529..6497c74 100644 --- a/src/app/contact-us/page.tsx +++ b/src/app/contact-us/page.tsx @@ -10,9 +10,9 @@ import { MessageCircle } from "lucide-react"; export default function ContactUsPage() { const commonNavItems = [ { name: "Home", id: "/" }, - { name: "Services", id: "/#services" }, - { name: "About", id: "/#about" }, - { name: "Reviews", id: "/#reviews" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Reviews", id: "#reviews" }, { name: "Contact", id: "/contact-us" } ]; @@ -20,9 +20,9 @@ export default function ContactUsPage() { { items: [ { label: "Home", href: "/" }, - { label: "Services", href: "/#services" }, - { label: "About", href: "/#about" }, - { label: "Reviews", href: "/#reviews" }, + { label: "Services", href: "/services" }, + { label: "About", href: "/about" }, + { label: "Reviews", href: "#reviews" }, { label: "Contact", href: "/contact-us" } ] }, -- 2.49.1 From 9b4ab5cfb3fc187b65fdff91f631835cd6bf3fc9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 04:29:30 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 75174c9..4784dee 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,9 +16,9 @@ import { Activity, CheckCircle, Cloud, CookingPot, Grid, Home, Lightbulb, Sparkl export default function LandingPage() { const commonNavItems = [ { name: "Home", id: "/" }, - { name: "Services", id: "/#services" }, - { name: "About", id: "/#about" }, - { name: "Reviews", id: "/#reviews" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Reviews", id: "#reviews" }, { name: "Contact", id: "/contact-us" } ]; @@ -26,9 +26,9 @@ export default function LandingPage() { { items: [ { label: "Home", href: "/" }, - { label: "Services", href: "/#services" }, - { label: "About", href: "/#about" }, - { label: "Reviews", href: "/#reviews" }, + { label: "Services", href: "/services" }, + { label: "About", href: "/about" }, + { label: "Reviews", href: "#reviews" }, { label: "Contact", href: "/contact-us" } ] }, @@ -74,7 +74,7 @@ export default function LandingPage() { { text: "Request an Estimate", href: "/contact-us"}, { - text: "View Services", href: "/#services"}, + text: "View Services", href: "/services"}, ]} mediaItems={[ { @@ -168,7 +168,7 @@ export default function LandingPage() { description="Prizm Heating & Ventilation provides residential ductwork, ventilation, and heat pump support services for homeowners across Greater Victoria. Every installation is planned carefully, executed cleanly, and finished with attention to detail." buttons={[ { - text: "See All Services", href: "/#services"}, + text: "See All Services", href: "/services"}, ]} /> -- 2.49.1 From 97ea9dddd841f688b9221670d8d63a10607d31dd Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 04:29:31 +0000 Subject: [PATCH 4/4] Update src/app/services/page.tsx --- src/app/services/page.tsx | 75 ++++++++++++++++----------------------- 1 file changed, 30 insertions(+), 45 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index b1ad594..d1345c9 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -8,6 +8,34 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import { Activity, Cloud, CookingPot, Home, Wind } from "lucide-react"; export default function ServicesPage() { + const commonNavItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Reviews", id: "#reviews" }, + { name: "Contact", id: "/contact-us" } + ]; + + const footerColumns = [ + { + items: [ + { label: "Home", href: "/" }, + { label: "Services", href: "/services" }, + { label: "About", href: "/about" }, + { label: "Reviews", href: "#reviews" }, + { label: "Contact", href: "/contact-us" } + ] + }, + { + items: [ + { label: "Greater Victoria, BC", href: "#" }, + { label: "Phone: (XXX) XXX-XXXX", href: "tel:XXX-XXX-XXXX" }, + { label: "Email: info@prizmhvac.com", href: "mailto:info@prizmhvac.com" }, + { label: "Hours: Mon-Fri, 8 AM - 5 PM", href: "#" } + ] + } + ]; + return ( @@ -119,34 +131,7 @@ export default function ServicesPage() { -- 2.49.1