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