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} +
+
+ ))} +
+
+
+ ); +}