Merge version_3 into main #6
@@ -8,6 +8,34 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
|||||||
import { Sparkles } from "lucide-react";
|
import { Sparkles } from "lucide-react";
|
||||||
|
|
||||||
export default function AboutPage() {
|
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 (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="bounce-effect"
|
defaultButtonVariant="bounce-effect"
|
||||||
@@ -24,23 +52,7 @@ export default function AboutPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={commonNavItems}
|
||||||
{
|
|
||||||
name: "Home", id: "/"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Services", id: "/services"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "About", id: "/about"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Reviews", id: "#reviews"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "#contact"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
brandName="Prizm Heating & Ventilation"
|
brandName="Prizm Heating & Ventilation"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -61,34 +73,7 @@ export default function AboutPage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={footerColumns}
|
||||||
{
|
|
||||||
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: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="Prizm Heating & Ventilation"
|
logoText="Prizm Heating & Ventilation"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -10,9 +10,9 @@ import { MessageCircle } from "lucide-react";
|
|||||||
export default function ContactUsPage() {
|
export default function ContactUsPage() {
|
||||||
const commonNavItems = [
|
const commonNavItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "/#services" },
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "About", id: "/#about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Reviews", id: "/#reviews" },
|
{ name: "Reviews", id: "#reviews" },
|
||||||
{ name: "Contact", id: "/contact-us" }
|
{ name: "Contact", id: "/contact-us" }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -20,9 +20,9 @@ export default function ContactUsPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Home", href: "/" },
|
{ label: "Home", href: "/" },
|
||||||
{ label: "Services", href: "/#services" },
|
{ label: "Services", href: "/services" },
|
||||||
{ label: "About", href: "/#about" },
|
{ label: "About", href: "/about" },
|
||||||
{ label: "Reviews", href: "/#reviews" },
|
{ label: "Reviews", href: "#reviews" },
|
||||||
{ label: "Contact", href: "/contact-us" }
|
{ label: "Contact", href: "/contact-us" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -16,9 +16,9 @@ import { Activity, CheckCircle, Cloud, CookingPot, Grid, Home, Lightbulb, Sparkl
|
|||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
const commonNavItems = [
|
const commonNavItems = [
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "/#services" },
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "About", id: "/#about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Reviews", id: "/#reviews" },
|
{ name: "Reviews", id: "#reviews" },
|
||||||
{ name: "Contact", id: "/contact-us" }
|
{ name: "Contact", id: "/contact-us" }
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -26,9 +26,9 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Home", href: "/" },
|
{ label: "Home", href: "/" },
|
||||||
{ label: "Services", href: "/#services" },
|
{ label: "Services", href: "/services" },
|
||||||
{ label: "About", href: "/#about" },
|
{ label: "About", href: "/about" },
|
||||||
{ label: "Reviews", href: "/#reviews" },
|
{ label: "Reviews", href: "#reviews" },
|
||||||
{ label: "Contact", href: "/contact-us" }
|
{ label: "Contact", href: "/contact-us" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -74,7 +74,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
text: "Request an Estimate", href: "/contact-us"},
|
text: "Request an Estimate", href: "/contact-us"},
|
||||||
{
|
{
|
||||||
text: "View Services", href: "/#services"},
|
text: "View Services", href: "/services"},
|
||||||
]}
|
]}
|
||||||
mediaItems={[
|
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."
|
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={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "See All Services", href: "/#services"},
|
text: "See All Services", href: "/services"},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -8,6 +8,34 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
|||||||
import { Activity, Cloud, CookingPot, Home, Wind } from "lucide-react";
|
import { Activity, Cloud, CookingPot, Home, Wind } from "lucide-react";
|
||||||
|
|
||||||
export default function ServicesPage() {
|
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 (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="bounce-effect"
|
defaultButtonVariant="bounce-effect"
|
||||||
@@ -24,23 +52,7 @@ export default function ServicesPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={commonNavItems}
|
||||||
{
|
|
||||||
name: "Home", id: "/"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Services", id: "/services"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "About", id: "/about"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Reviews", id: "#reviews"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "#contact"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
brandName="Prizm Heating & Ventilation"
|
brandName="Prizm Heating & Ventilation"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -119,34 +131,7 @@ export default function ServicesPage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={footerColumns}
|
||||||
{
|
|
||||||
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: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="Prizm Heating & Ventilation"
|
logoText="Prizm Heating & Ventilation"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user