Skip to content

Commit

Permalink
feat: add dashboard grid
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Jan 16, 2024
1 parent dc1dc82 commit 6339ff4
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions apps/web/src/app/features/dashboard/dashboard-feature.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
import { UiCard, UiContainer } from '@pubkey-ui/core'
import { UiContainer, UiDashboardGrid } from '@pubkey-ui/core'
import { IconApps, IconBug, IconListDetails, IconServer } from '@tabler/icons-react'

export function DashboardFeature() {
return (
<UiContainer>
<UiCard title="Dashboard">
<div>GM</div>
</UiCard>
<UiDashboardGrid
links={[
{ to: '/account', label: 'Account', icon: IconListDetails },
{ to: '/clusters', label: 'Clusters', icon: IconServer },
{ to: '/demo', label: 'Demo', icon: IconApps },
{ to: '/dev', label: 'Dev', icon: IconBug },
]}
/>
</UiContainer>
)
}

0 comments on commit 6339ff4

Please sign in to comment.