taxonomy/config/dashboard.ts

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",
},
],
}