import { motion } from 'framer-motion'; import { TrendingUp, Users, Zap, Globe } from 'lucide-react'; export default function Stats() { const stats = [ { icon: , value: "98%", label: "User Satisfaction" }, { icon: , value: "50K+", label: "Active Users" }, { icon: , value: "2ms", label: "Response Time" }, { icon: , value: "190+", label: "Countries" } ]; return ( {stats.map((stat, index) => ( {stat.icon} {stat.value} {stat.label} ))} ); }