f15b035b88
Replaces monolithic AdminDashboard/ClientDashboard with a per-user configurable widget grid. 15 widget types: ProductionStats, QueueStatus, RecentRenders, CostOverview, WorkerStatus, KPISummary, OrderThroughput, Revenue, ItemStatus, ProcessingTimes, RenderTimeByOutputType, OutputTypeUsage, TopProducts, OrdersByUser, RenderBackendStats. DashboardTimeframeContext provides shared timeframe state. Dashboard config persisted in DB via GET/PUT /api/dashboard/config. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
import DashboardGrid from '../components/dashboard/DashboardGrid'
|
|
|
|
export default function DashboardPage() {
|
|
return (
|
|
<div className="p-8">
|
|
<h1 className="text-2xl font-bold text-content mb-6">Dashboard</h1>
|
|
<DashboardGrid />
|
|
</div>
|
|
)
|
|
}
|