From 06a9d33556edbb0be6ccb425220e79c378032ea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=BF=94?= Date: Thu, 30 Apr 2026 19:12:26 +0800 Subject: [PATCH] feat: add StatsBar reusable component for social proof stats --- src/components/ui/stats-bar.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/components/ui/stats-bar.tsx diff --git a/src/components/ui/stats-bar.tsx b/src/components/ui/stats-bar.tsx new file mode 100644 index 0000000..3a5cc89 --- /dev/null +++ b/src/components/ui/stats-bar.tsx @@ -0,0 +1,22 @@ +import { STATS } from '@/lib/constants'; + +export function StatsBar() { + return ( +
+
+
+ {STATS.map((stat) => ( +
+
+ {stat.value} +
+
+ {stat.label} +
+
+ ))} +
+
+
+ ); +}