CUB-133: Build Dashboard page with summary cards
Dev Build / build-test (pull_request) Successful in 2m10s

This commit is contained in:
2026-05-07 20:07:45 -04:00
parent fd26b205bf
commit 32798fbf14
9 changed files with 338 additions and 21 deletions
@@ -0,0 +1,8 @@
export default function LoadingSpinner() {
return (
<div className="flex flex-col items-center gap-3">
<div className="w-10 h-10 border-4 border-emerald-500/30 border-t-emerald-400 rounded-full animate-spin" />
<p className="text-slate-400 text-sm">Loading dashboard</p>
</div>
)
}