"use client"; import Link from "next/link"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import PricingCardOne from "@/components/sections/pricing/PricingCardOne"; import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FooterCard from "@/components/sections/footer/FooterCard"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ArrowRight, Shield, Zap, TrendingUp, Plug, Headphones, Users, Building, Globe, Sparkles, Star, Crown, MessageSquare, Twitter, Linkedin, Github, } from "lucide-react"; export default function HomePage() { const navItems = [ { name: "Features", id: "/services" }, { name: "Pricing", id: "/pricing" }, { name: "About", id: "/about" }, { name: "Resources", id: "/resources" }, { name: "Contact", id: "/contact" }, ]; return (
); }