From 6e5feced49ad2dd382586b946de4cf5b2ef04cfa Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 23:12:12 +0000 Subject: [PATCH] Add src/app/service-area/page.tsx --- src/app/service-area/page.tsx | 192 ++++++++++++++++++++++++++++++++++ 1 file changed, 192 insertions(+) create mode 100644 src/app/service-area/page.tsx diff --git a/src/app/service-area/page.tsx b/src/app/service-area/page.tsx new file mode 100644 index 0000000..cf84e9c --- /dev/null +++ b/src/app/service-area/page.tsx @@ -0,0 +1,192 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import FeatureBento from "@/components/sections/feature/FeatureBento"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import { MapPin, Phone, AlertCircle, Clock } from "lucide-react"; + +export default function ServiceAreaPage() { + const navItems = [ + { 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: [ + { label: "Towing Services", href: "/services" }, + { label: "Roadside Assistance", href: "/services" }, + { label: "Vehicle Transport", href: "/services" }, + { label: "Mechanical Help", href: "/services" }, + ], + }, + { + 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", onClick: handleCallNow }, + { label: "Request a Quote", href: "/contact" }, + { label: "FAQ", href: "/#faq" }, + { label: "Service Hours", href: "/service-area" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Disclaimer", href: "#" }, + ], + }, + ]; + + return ( + + {/* Sticky Call Now Button */} + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file