"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; import { Zap, Award } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Home", id: "home" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, { name: "Reviews", id: "reviews" }, { name: "Contact", id: "contact" }, ]; const navButton = { text: "Call Now", href: "tel:+15194441234"}; return ( {/* Navbar */} {/* Main Contact CTA */}
{/* Why Choose Section */}
{/* Final CTA */}
{/* Footer */}
); }