CI / changes (push) Successful in 10s
CI / commitlint (push) Has been skipped
CI / openapi (push) Has been skipped
CI / web (push) Successful in 52s
CI / go (push) Has been skipped
CI / bird2 (push) Has been skipped
CI / release (push) Successful in 4m7s
Refactored multiple dashboard components to utilize the new PanelCard for better organization and presentation. Updated the DashboardFramePanel, DashboardQuickLinks, and DashboardOperationsBreakdown components to streamline layouts and enhance user experience. Removed deprecated components and improved loading states in various sections, ensuring a cohesive interface throughout the application.
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import { Chart } from "./components/chart"
|
|
|
|
export function Page() {
|
|
return (
|
|
<div className="flex min-h-svh w-full items-center justify-center p-6">
|
|
<Chart />
|
|
</div>
|
|
)
|
|
} |