fix: replace misleading 'Data collected' stat with 'Browser-first'

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-01 16:50:11 +01:00
parent 075aa0b6c5
commit fbaefbf5b8

View File

@@ -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() {