Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { DashboardConfig } from "@/types";
export const dashboardConfig: DashboardConfig = {
sidebarNav: [
{
title: "Home",
href: "/home",
icon: "post",
},
{
title: "Games",
href: "/games",
icon: "billing",
},
{
title: "Communities",
href: "/communities",
icon: "settings",
},
{
title: "Notifications",
href: "/notifications",
icon: "settings",
},
{
title: "Followers",
href: "/followers",
icon: "settings",
},
{
title: "My Profile",
href: "",
icon: "settings",
},
{
title: "Settings",
href: "/settings",
icon: "settings",
},
{
title: "Help",
href: "/help",
icon: "settings",
},
],
}