diff --git a/components/Stats.tsx b/components/Stats.tsx index 9e3d65b..8af3258 100644 --- a/components/Stats.tsx +++ b/components/Stats.tsx @@ -1,10 +1,10 @@ import { tools } from '@/lib/tools'; -import { Box, Code2, Shield } from 'lucide-react'; +import { Box, Code2, Globe } from 'lucide-react'; const stats = [ { value: tools.length, label: 'Tools available', icon: Box }, { value: '100%', label: 'Open source', icon: Code2 }, - { value: '0', label: 'Data collected', icon: Shield }, + { value: '100%', label: 'Browser-first', icon: Globe }, ]; export default function Stats() {