Files
HartOMat/frontend/src/pages/Dashboard.tsx
T
Hartmut f15b035b88 feat(L1): modular widget dashboard — 15 configurable widgets
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>
2026-03-06 23:11:13 +01:00

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>
)
}