-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathroutes.js
52 lines (52 loc) · 1001 Bytes
/
routes.js
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
47
48
49
50
51
52
var routes = [
{
path: "/dashboard",
name: "Dashboard",
icon: "ni ni-tv-2 text-primary",
layout: "/admin",
disabled: false,
},
{
path: "/userprofile",
name: "My Profile",
icon: "ni ni-single-02 text-yellow",
layout: "/admin",
disabled: false,
},
{
path: "/channels",
name: "Channels",
icon: "ni ni-world text-danger",
layout: "/admin",
disabled: false,
},
{
path: "/feed",
name: "Feed",
icon: "ni ni-collection text-green",
layout: "/admin",
disabled: false,
},
{
path: "/search",
name: "Search",
icon: "ni ni-zoom-split-in text-muted",
layout: "/admin",
disabled: false,
},
{
path: "/publish",
name: "Publish",
icon: "ni ni-send text-primary",
layout: "/admin",
disabled: false,
},
{
path: "/publishing",
name: "Calendar",
icon: "ni ni-calendar-grid-58 text-success",
layout: "/admin",
disabled: false,
},
];
export default routes;