diff --git a/apps/web/src/app/dashboard/loading.tsx b/apps/web/src/app/dashboard/loading.tsx new file mode 100644 index 0000000..3faaeba --- /dev/null +++ b/apps/web/src/app/dashboard/loading.tsx @@ -0,0 +1,41 @@ +export default function DashboardLoading() { + return ( +
+ {/* Metrics Section Skeleton */} +
+

Engineering Overview

+
+ {Array.from({ length: 4 }).map((_, i) => ( +
+
+
+
+ ))} +
+
+ + {/* Repositories Section Skeleton */} +
+
+

Your Repositories

+
+
+ +
+ {Array.from({ length: 6 }).map((_, i) => ( +
+
+
+
+
+
+
+
+
+
+ ))} +
+
+
+ ); +}