"use client" import { motion } from "framer-motion" const stats = [ { label: "Active Workers", value: "12,450", suffix: "+" }, { label: "Tasks Completed", value: "2.3M", suffix: "" }, { label: "Total Earnings", value: "$450K", suffix: "" }, { label: "Avg Task Pay", value: "$2.50", suffix: "" }, ] export function StatsSection() { return (
{stats.map((stat, index) => (
{stat.value} {stat.suffix}

{stat.label}

))}
) }