diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 801f157..0ddc453 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,27 +1,30 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import FeatureBento from "@/components/sections/feature/FeatureBento"; -import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Zap, MapPin, Users, Heart, Wrench, Lightbulb, Clock } from "lucide-react"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import { AlertCircle, Phone } from "lucide-react"; -const AboutPage = () => { +export default function AboutPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Services", id: "services" }, - { name: "About", id: "about" }, - { name: "Reviews", id: "reviews" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Reviews", id: "/reviews" }, + { name: "Service Area", id: "/service-area" }, + { name: "Contact", id: "/contact" }, ]; + const handleCallNow = () => { + window.location.href = "tel:+15619999999"; + }; + const footerColumns = [ { - title: "Services", - items: [ + title: "Services", items: [ { label: "Towing Services", href: "/services" }, { label: "Roadside Assistance", href: "/services" }, { label: "Vehicle Transport", href: "/services" }, @@ -29,26 +32,23 @@ const AboutPage = () => { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Customer Reviews", href: "/reviews" }, - { label: "Service Area", href: "/services" }, + { label: "Service Area", href: "/service-area" }, { label: "Contact Us", href: "/contact" }, ], }, { - title: "Get Help", - items: [ - { label: "Call Now", href: "tel:+15619999999" }, + title: "Get Help", items: [ + { label: "Call Now", href: "tel:+15619999999", onClick: handleCallNow }, { label: "Request a Quote", href: "/contact" }, - { label: "FAQ", href: "/" }, - { label: "Service Hours", href: "#" }, + { label: "FAQ", href: "/#faq" }, + { label: "Service Hours", href: "/services" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Disclaimer", href: "#" }, @@ -69,11 +69,44 @@ const AboutPage = () => { secondaryButtonStyle="glass" headingFontWeight="light" > + {/* Sticky Call Now Button */} + +
+ +