Merge version_3 into main #6
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -24,23 +52,7 @@ export default function AboutPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"
|
||||
},
|
||||
{
|
||||
name: "Services", id: "/services"
|
||||
},
|
||||
{
|
||||
name: "About", id: "/about"
|
||||
},
|
||||
{
|
||||
name: "Reviews", id: "#reviews"
|
||||
},
|
||||
{
|
||||
name: "Contact", id: "#contact"
|
||||
}
|
||||
]}
|
||||
navItems={commonNavItems}
|
||||
brandName="Prizm Heating & Ventilation"
|
||||
/>
|
||||
</div>
|
||||
@@ -61,34 +73,7 @@ export default function AboutPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
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>
|
||||
|
||||
@@ -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" }
|
||||
]
|
||||
},
|
||||
|
||||
@@ -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"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -24,23 +52,7 @@ export default function ServicesPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"
|
||||
},
|
||||
{
|
||||
name: "Services", id: "/services"
|
||||
},
|
||||
{
|
||||
name: "About", id: "/about"
|
||||
},
|
||||
{
|
||||
name: "Reviews", id: "#reviews"
|
||||
},
|
||||
{
|
||||
name: "Contact", id: "#contact"
|
||||
}
|
||||
]}
|
||||
navItems={commonNavItems}
|
||||
brandName="Prizm Heating & Ventilation"
|
||||
/>
|
||||
</div>
|
||||
@@ -119,34 +131,7 @@ export default function ServicesPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user