import { motion } from 'framer-motion'; import { LineChart, Line, XAxis, YAxis, Tooltip, ResponsiveContainer, ReferenceLine, Area, AreaChart } from 'recharts'; import { Trophy, TrendingUp, Clock, Sparkles, CheckCircle2, XCircle, MessageSquareText, BarChart3 } from 'lucide-react'; import clsx from 'clsx'; function rewardColor(r) { if (r >= 0.75) return '#00FF88'; if (r >= 0.45) return '#FFAA00'; return '#FF4455'; } function StatCard({ icon: Icon, label, value, color, subtitle }) { return (
{subtitle}
}