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() {