import { tools } from '@/lib/tools'; import { Box, Code2, Shield } from 'lucide-react'; const stats = [ { value: tools.length, label: 'Tools', icon: Box }, { value: '100%', label: 'Open Source', icon: Code2 }, { value: '∞', label: 'Privacy First', icon: Shield }, ]; export default function Stats() { return (
{stats.map((stat, i) => { const Icon = stat.icon; return (
{stat.value} {stat.label}
); })}
); }