diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 797b84d..4c5f46f 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -1,24 +1,27 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; +import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; import FaqBase from "@/components/sections/faq/FaqBase"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Wrench } from "lucide-react"; +import { AlertCircle, Zap, Droplets, Shield } from "lucide-react"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Water Heaters", id: "/water-heaters" }, + { name: "About", id: "/about" }, + { name: "Reviews", id: "/reviews" }, + { name: "Contact", id: "/contact" }, +]; export default function ServicesPage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Services", id: "/services" }, - { name: "Water Heaters", id: "/water-heaters" }, - { name: "About", id: "/about" }, - { name: "Reviews", id: "/reviews" }, - { name: "Contact", id: "/contact" }, - ]; - return ( ({ + name: item.name, + id: item.id, + }))} button={{ text: "Call Now", href: "tel:(279)348-7473"}} /> @@ -45,111 +51,206 @@ export default function ServicesPage() { {/* Hero Section */}
- {/* Services Detail */} -
+ {/* Service Categories */} +
+ {/* Why Choose Our Services */} +
+ +
+ + {/* Service Quality Metrics */} +
+ +
+ + {/* Customer Testimonials */} +
+ +
+ + {/* Service Areas & Availability */} +
+ +
+ {/* FAQ */}
+ {/* CTA Section */} +
+ +
+ {/* Footer */}