'use client'; import { motion } from 'framer-motion'; const stats = [ { number: '6', label: 'Tools', icon: ( ), }, { number: '100%', label: 'Open Source', icon: ( ), }, { number: '∞', label: 'Privacy First', icon: ( ), }, ]; export default function Stats() { return (
{stats.map((stat, index) => ( {stat.icon}
{stat.number}
{stat.label}
))}
); }