"use client"; import { Button } from "@/components/ui/button"; import { motion } from "framer-motion"; import { ArrowRight, ChevronDown } from "lucide-react"; import { useState } from "react"; import { FeatureShowcase } from "./_sections/feature-showcase"; import { HeroSection } from "./_sections/hero-section"; import { HowItWorks } from "./_sections/how-it-works"; import { IntegrationsSection } from "./_sections/integrations-section"; import { StatsSection } from "./_sections/stats-section"; import { TaskExamples } from "./_sections/task-examples"; import { Testimonials } from "./_sections/testimonials"; export default function Home() { const [expandedFaq, setExpandedFaq] = useState(null); const faqItems = [ { q: "How much can I earn?", a: "Earnings vary by task complexity. Most workers earn $200-500/month.", }, { q: "How long does verification take?", a: "AI verification is instant. Most tasks are approved within seconds.", }, { q: "When do I get paid?", a: "Payments are instant to your Celo wallet. No waiting periods.", }, { q: "Is there a minimum withdrawal?", a: "No minimum. Withdraw any amount anytime to your wallet.", }, ]; return (
{/* Security & Trust Section */}

Secure &{" "} Transparent

Your earnings and data are protected with blockchain technology

{[ { title: "Smart Contract Verified", desc: "All payments verified on-chain", }, { title: "Zero Hidden Fees", desc: "100% transparent pricing model", }, { title: "Instant Withdrawals", desc: "Access your earnings anytime", }, ].map((item, i) => (

{item.title}

{item.desc}

))}
{/* FAQ Section */}

Frequently Asked{" "} Questions

{faqItems.map((item, i) => (
{item.a}
))}
{/* Final CTA Section */}
Ready to start{" "} earning ? Join thousands of workers completing AI-verified tasks on Celo Sepolia
); }