"use client" import { motion } from "framer-motion" import { CheckSquare, TrendingUp, Wallet, Zap } from "lucide-react" const steps = [ { icon: Wallet, title: "Connect Wallet", description: "Link your Celo wallet to get started in seconds", }, { icon: CheckSquare, title: "Complete Tasks", description: "Choose from available tasks and complete them", }, { icon: Zap, title: "AI Verification", description: "Gemini AI verifies your work instantly", }, { icon: TrendingUp, title: "Earn & Withdraw", description: "Get paid in cUSD directly to your wallet", }, ] export function HowItWorks() { return (

How it{" "} works

Get started in 4 simple steps

{steps.map((step, index) => ( {index < steps.length - 1 && (
)}
{index + 1}

{step.title}

{step.description}

))}
) }