"use client"; import { useState } from 'react'; import { MousePointer, Command, Coins, HeartHandshake } from 'lucide-react'; const benefits = [ { icon: , title: "User-Friendly", description: "Intuitive, drag-and-drop design means you can focus on what matters—your expertise.", gradient: "from-purple-500/10 via-purple-500/5 to-transparent" }, { icon: , title: "All-in-One Solution", description: "No need for multiple tools; manage everything from one centralized platform.", gradient: "from-blue-500/10 via-blue-500/5 to-transparent" }, { icon: , title: "Scalable Revenue Streams", description: "Monetize your services through community building and our AI marketplace.", gradient: "from-indigo-500/10 via-indigo-500/5 to-transparent" }, { icon: , title: "Dedicated Support", description: "Our expert team is here to help you succeed every step of the way.", gradient: "from-violet-500/10 via-violet-500/5 to-transparent" } ]; export default function WhyChooseUs() { const [hoveredIndex, setHoveredIndex] = useState(null); return (

Why Choose Us

Everything you need to succeed with AI

{benefits.map((benefit, index) => (
setHoveredIndex(index)} onMouseLeave={() => setHoveredIndex(null)} > {/* Animated background */}
{/* Content container */}
{/* Icon container */}
{benefit.icon}
{/* Text content */}

{benefit.title}

{benefit.description}

{/* Decorative elements */}
))}
{/* Bottom decoration */}
); }