"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve"; import AboutMetric from "@/components/sections/about/AboutMetric"; import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { Star, Clock, CheckCircle, Shield, Zap, Users, Heart, Award } from "lucide-react"; export default function HomePage() { const navItems = [ { name: "Home", id: "home" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }, { name: "Reviews", id: "reviews" }, ]; const handleContactSubmit = (email: string) => { console.log("Contact form submitted with:", email); }; return ( {/* Navbar */} {/* Hero Section */}
{/* Trust Bar - Metrics */}
{/* Services Section */}
{/* Why Choose Section */}
{/* Testimonials Section */}
{/* Service Area Section */}
{/* Contact CTA Section */}
{/* Footer */}
); }