feat(manage): add dashboard overview and charts components

- DashboardOverview: stat cards, top contributors, playability distribution,
  and Steam sync health sections
- DashboardCharts: placeholder for future ECharts integration
This commit is contained in:
2026-04-30 20:48:28 +08:00
parent 244a29bd1b
commit ce3c88ec54
2 changed files with 218 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
"use client";
// Future: ECharts integration for trends over time
// For now, the overview stats are sufficient
export function DashboardCharts() {
return null;
}