From fbaefbf5b8f33581232a98856d3ff849a115479d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 1 Mar 2026 16:50:11 +0100 Subject: [PATCH] fix: replace misleading 'Data collected' stat with 'Browser-first' Co-Authored-By: Claude Sonnet 4.6 --- components/Stats.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() {