CI / changes (push) Successful in 11s
CI / commitlint (push) Has been skipped
CI / openapi (push) Has been skipped
CI / web (push) Successful in 1m5s
CI / go (push) Successful in 1m5s
CI / bird2 (push) Successful in 19s
CI / release (push) Successful in 4m22s
Modified .npmrc to set a new store directory. Updated eslint configuration to ignore additional paths. Adjusted tsconfig to exclude specific components and refined the SectionCardsSkeleton and AnalyticsDashboardSkeleton for better layout and loading states. Removed the deprecated DashboardQuickActions component to streamline the codebase.
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import { CardGrid } from "./components/card-grid"
|
|
|
|
export function Page() {
|
|
return (
|
|
<div className="flex min-h-svh w-full max-w-5xl items-center justify-center p-6">
|
|
<CardGrid />
|
|
</div>
|
|
)
|
|
} |