// ============================================ // Dashboard — Stats & Quick Actions Component // ============================================ const Dashboard = { init() { this.renderStats(); this.renderQuickActions(); this.renderSystemStatus(); }, renderStats() { const container = Helpers.$('#dashboard-stats'); if (!container) return; const images = MockData.images; const goodCount = images.filter(i => i.isGood).length; const badCount = images.filter(i => !i.isGood).length; const unsortedCount = images.filter(i => i.isGood === null).length; container.innerHTML = `