From 5030a10ca5f48a68a11781d9ceb0b117be5e8754 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 04:29:29 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 75 +++++++++++++++++------------------------- 1 file changed, 30 insertions(+), 45 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 982acf6..601277d 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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 ( @@ -61,34 +73,7 @@ export default function AboutPage() {