From 9bfa56e2269df57bf336e9c02c7fada0496cd381 Mon Sep 17 00:00:00 2001 From: tinkle-community Date: Fri, 6 Feb 2026 02:32:29 +0800 Subject: [PATCH] chore: update GitHub stats defaults (stars 10,500+, forks 2,800+, community 6,600+) --- web/src/components/landing/core/TerminalHero.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/components/landing/core/TerminalHero.tsx b/web/src/components/landing/core/TerminalHero.tsx index 7e9adb49..d7fc2625 100644 --- a/web/src/components/landing/core/TerminalHero.tsx +++ b/web/src/components/landing/core/TerminalHero.tsx @@ -298,14 +298,14 @@ function CommunityStats() { const stats = [ { label: 'GITHUB STARS', - value: isLoading ? '...' : (error ? '9,700+' : stars.toLocaleString()), + value: isLoading ? '...' : (error ? '10,500+' : stars.toLocaleString()), icon: Star, color: 'text-yellow-400', href: OFFICIAL_LINKS.github }, { label: 'FORKS', - value: isLoading ? '...' : (error ? '2,600+' : forks.toLocaleString()), + value: isLoading ? '...' : (error ? '2,800+' : forks.toLocaleString()), icon: GitFork, color: 'text-blue-400', href: `${OFFICIAL_LINKS.github}/fork` @@ -319,7 +319,7 @@ function CommunityStats() { }, { label: 'DEV COMMUNITY', - value: '6,000+', // Updated as per user request + value: '6,600+', icon: MessageCircle, color: 'text-blue-500', href: OFFICIAL_LINKS.telegram