Update src/app/page.tsx

This commit is contained in:
2026-06-11 04:25:59 +00:00
parent 35e7946966
commit 6839b380c6

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -30,18 +58,7 @@ export default function LandingPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home", id: "#home"},
{
name: "Services", id: "#services"},
{
name: "About", id: "#about"},
{
name: "Reviews", id: "#reviews"},
{
name: "Contact", id: "#contact"},
]}
navItems={commonNavItems}
brandName="Prizm Heating & Ventilation"
/>
</div>
@@ -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"},
]}
/>
</div>
@@ -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"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home", href: "#home"},
{
label: "Services", href: "#services"},
{
label: "About", href: "#about"},
{
label: "Reviews", href: "#reviews"},
{
label: "Contact", href: "#contact"},
],
},
{
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: "#"},
],
},
]}
columns={footerColumns}
logoText="Prizm Heating & Ventilation"
/>
</div>