-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.js
executable file
·92 lines (89 loc) · 1.77 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import {
faCog,
faComment,
faNewspaper,
faPlayCircle,
faStar,
faDollarSign,
faUserCircle,
faHeart,
faBell
} from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
export const Routes = [
// {
// name: 'News Feed',
// path: '/dashboard/news-feed',
// badge: false,
// icon: (<FontAwesomeIcon icon={faNewspaper} />)
// },
{
name: 'Profile',
path: '/dashboard/profile',
badge: false,
icon: <FontAwesomeIcon icon={faUserCircle} />
},
{
name: 'Videos',
path: '/dashboard/videos',
badge: false,
icon: <FontAwesomeIcon icon={faPlayCircle} />
},
{
name: 'Favourites',
path: '/dashboard/favourites',
badge: false,
icon: <FontAwesomeIcon icon={faHeart} />
// faStar
},
{
name: 'Messages',
path: '/dashboard/messages',
badge: false,
icon: <FontAwesomeIcon icon={faComment} />
},
{
name: 'Settings',
path: '/dashboard/setting',
badge: false,
icon: <FontAwesomeIcon icon={faCog} />
},
{
name: 'Wallet',
path: '/dashboard/wallet',
badge: false,
icon: <FontAwesomeIcon icon={faDollarSign} />
}
];
export const NavbarRoutes = [
{
name: 'News Feed',
path: '/dashboard/news-feed',
badge: false,
icon: <FontAwesomeIcon icon={faNewspaper} />
},
{
name: 'Messages',
path: '/dashboard/messages',
badge: false,
icon: <FontAwesomeIcon icon={faComment} />
}
];
export const DropdownRoutes = [
{
name: 'Privacy Policy',
path: '/privacy-policy'
},
{
name: 'Terms & Conditions',
path: '/terms-and-conditions'
},
{
name: 'Copyrights Reserved',
path: '/copyrights'
},
{
name: 'Trademark License',
path: '/trademark-license'
}
];