Newer
Older
import { DashboardConfig } from "@/types";
export const dashboardConfig: DashboardConfig = {
sidebarNav: [
{
title: "Home",
href: "/home",
},
{
title: "Games",
href: "/games",
},
{
title: "Communities",
href: "/communities",
},
{
title: "Notifications",
href: "/notifications",
},
{
title: "Followers",
href: "/followers",
},
{
title: "My Profile",
href: "",
},
{
title: "Settings",
href: "/settings",
icon: "settings",
},
{
title: "Help",
href: "/help",
},
],
}