"use client" import { motion } from "framer-motion" import { Brain, Wallet, Zap } from "lucide-react" export function FeatureShowcase() { const features = [ { title: "Seamless Task Marketplace", description: "Browse thousands of AI-verified tasks. Filter by category, difficulty, and earning potential.", icon: Zap, delay: 0, }, { title: "AI-Powered Verification", description: "Advanced AI models verify your work instantly. Get paid only for quality submissions.", icon: Brain, delay: 0.1, }, { title: "Instant Payments", description: "Earn cUSD instantly on Celo Sepolia. Withdraw anytime with zero fees.", icon: Wallet, delay: 0.2, }, ] return (

Why Choose{" "} D.M.T.P

The most advanced AI-powered microtask platform with instant payments and transparent verification.

{features.map((feature, i) => { const Icon = feature.icon return (
{/* Icon */}

{feature.title}

{feature.description}

) })}
) }