diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index b462f16..3c7de1f 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -1,37 +1,30 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; import FeatureBento from "@/components/sections/feature/FeatureBento"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { - Zap, - MapPin, - Users, - Heart, - DollarSign, - CheckCircle, - Wrench, - Lightbulb, - AlertCircle, -} from "lucide-react"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import { Zap, MapPin, Users, Heart, DollarSign, CheckCircle, Wrench, Lightbulb, AlertCircle, Phone } from "lucide-react"; export default function ServicesPage() { 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" }, @@ -39,26 +32,23 @@ export default function ServicesPage() { ], }, { - title: "Company", - items: [ - { label: "About Us", href: "/" }, - { label: "Customer Reviews", href: "/" }, - { label: "Service Area", href: "/services" }, - { label: "Contact Us", href: "#contact-cta" }, + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Customer Reviews", href: "/reviews" }, + { label: "Service Area", href: "/service-area" }, + { label: "Contact Us", href: "/contact" }, ], }, { - title: "Get Help", - items: [ - { label: "Call Now", href: "tel:+15619999999" }, - { label: "Request a Quote", href: "#contact-cta" }, - { label: "FAQ", href: "/" }, - { label: "Service Hours", href: "#" }, + title: "Get Help", items: [ + { label: "Call Now", href: "tel:+15619999999", onClick: handleCallNow }, + { label: "Request a Quote", href: "/contact" }, + { 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: "#" }, @@ -79,112 +69,90 @@ export default function ServicesPage() { secondaryButtonStyle="glass" headingFontWeight="light" > + {/* Sticky Call Now Button */} + + + +
+
- -
- -