diff --git a/src/app/page.tsx b/src/app/page.tsx index bf99144..75174c9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,6 +14,34 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar import { Activity, CheckCircle, Cloud, CookingPot, Grid, Home, Lightbulb, Sparkles, Wind, Wrench } from "lucide-react"; export default function LandingPage() { + 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 ( @@ -55,9 +72,9 @@ export default function LandingPage() { tag="Greater Victoria Heating & Ventilation" buttons={[ { - text: "Request an Estimate", href: "#contact"}, + text: "Request an Estimate", href: "/contact-us"}, { - text: "View Services", href: "#services"}, + text: "View Services", href: "/#services"}, ]} mediaItems={[ { @@ -151,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"}, ]} /> @@ -233,41 +250,14 @@ export default function LandingPage() { text="Planning a heat pump or ventilation upgrade? Start with a team known for clean work, careful planning, and a professional experience from day one." buttons={[ { - text: "Request Your Estimate", href: "#"}, + text: "Request Your Estimate", href: "/contact-us"}, ]} />