"use client"; import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial"; import SplitAbout from "@/components/sections/about/SplitAbout"; import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; import ProductCardThree from "@/components/sections/product/ProductCardThree"; import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Sparkles, Leaf, Beaker, Award, Heart, Mail, Check, Star, CheckCircle, HelpCircle } from "lucide-react"; export default function HomePage() { return ( {/* Navbar */} {/* Hero Section */}
{/* About Section */}
{/* Features Section */}
{/* Products Section */}
{/* Testimonials Section */}
{/* Social Proof Section */}
{/* Contact CTA Section */}
{/* Footer */}
); }