From 52d3f479cbebaf923142ecf7db7c704b163c8ea3 Mon Sep 17 00:00:00 2001
From: tinkle-community
Date: Thu, 1 Jan 2026 19:44:14 +0800
Subject: [PATCH] feat: enhance market access strip UI and update fallback
stats
---
.../components/landing/core/TerminalHero.tsx | 34 ++++++++++++-------
1 file changed, 22 insertions(+), 12 deletions(-)
diff --git a/web/src/components/landing/core/TerminalHero.tsx b/web/src/components/landing/core/TerminalHero.tsx
index 7e56e103..6c6d5489 100644
--- a/web/src/components/landing/core/TerminalHero.tsx
+++ b/web/src/components/landing/core/TerminalHero.tsx
@@ -165,16 +165,26 @@ export default function TerminalHero() {
{/* Market Access Strip - Prominent Display */}
-
- {['CRYPTO', 'US STOCKS', 'FOREX', 'METALS'].map((market) => (
-
-
-
-
-
- {market}
-
- ))}
+ {/* Market Access Strip - Prominent Display */}
+
+
+
+
+
+
+ Live Data Feeds Active
+
+
+ {['CRYPTO', 'US STOCKS', 'FOREX', 'METALS'].map((market) => (
+
+ ))}
+
{/* Command Line Input Simulation */}
@@ -287,14 +297,14 @@ function CommunityStats() {
const stats = [
{
label: 'GITHUB STARS',
- value: isLoading ? '...' : (error ? '1.2k+' : stars.toLocaleString()),
+ value: isLoading ? '...' : (error ? '9.5k+' : stars.toLocaleString()),
icon: Star,
color: 'text-yellow-400',
href: OFFICIAL_LINKS.github
},
{
label: 'FORKS',
- value: isLoading ? '...' : (error ? '240+' : forks.toLocaleString()),
+ value: isLoading ? '...' : (error ? '2.5k+' : forks.toLocaleString()),
icon: GitFork,
color: 'text-blue-400',
href: `${OFFICIAL_LINKS.github}/fork`