mirror of
https://github.com/shadcn-ui/taxonomy
synced 2026-05-24 01:38:28 +00:00
44 lines
740 B
TypeScript
44 lines
740 B
TypeScript
import { DashboardConfig } from "types"
|
|
|
|
export const dashboardConfig: DashboardConfig = {
|
|
mainNav: [
|
|
{
|
|
title: "Documentation",
|
|
href: "/docs",
|
|
},
|
|
{
|
|
title: "Support",
|
|
href: "/support",
|
|
disabled: true,
|
|
},
|
|
],
|
|
sidebarNav: [
|
|
{
|
|
title: "Posts",
|
|
href: "/dashboard",
|
|
icon: "post",
|
|
},
|
|
{
|
|
title: "Pages",
|
|
href: "/",
|
|
icon: "page",
|
|
disabled: true,
|
|
},
|
|
{
|
|
title: "Media",
|
|
href: "/",
|
|
icon: "media",
|
|
disabled: true,
|
|
},
|
|
{
|
|
title: "Billing",
|
|
href: "/dashboard/billing",
|
|
icon: "billing",
|
|
},
|
|
{
|
|
title: "Settings",
|
|
href: "/dashboard/settings",
|
|
icon: "settings",
|
|
},
|
|
],
|
|
}
|