Our Impact
@@ -55,36 +52,42 @@ export function StatsSection() {
A snapshot of our growing community and contributions.
-
- {stats.map((stat, index) => (
-
+ {error ? (
+
+ Unable to fetch data. Please try again later.
+
+ ) : (
+
+ {stats.map((stat, index) => (
-
-
-
- {stat.value}
-
-
{stat.label}
-
- ))}
-
+
+
+
+
+ {stat.value}
+
+ {stat.label}
+
+ ))}
+
+ )}