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() { 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" } ] }, 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"}, ]} /> 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() {