Update src/app/about/page.tsx

This commit is contained in:
2026-06-11 04:29:29 +00:00
parent 306ad21464
commit 5030a10ca5

View File

@@ -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>