-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroutes.js
More file actions
105 lines (87 loc) · 2.34 KB
/
routes.js
File metadata and controls
105 lines (87 loc) · 2.34 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
/*!
=========================================================
* * NextJS Material Dashboard v1.1.0 based on Material Dashboard React v1.9.0
=========================================================
* Product Page: https://www.creative-tim.com/product/nextjs-material-dashboard
* Copyright 2021 Creative Tim (https://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/nextjs-material-dashboard/blob/master/LICENSE.md)
* Coded by Creative Tim
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
// @material-ui/icons
import Dashboard from "@material-ui/icons/Dashboard";
import Person from "@material-ui/icons/Person";
import LibraryBooks from "@material-ui/icons/LibraryBooks";
import BubbleChart from "@material-ui/icons/BubbleChart";
import LocationOn from "@material-ui/icons/LocationOn";
import Notifications from "@material-ui/icons/Notifications";
import Unarchive from "@material-ui/icons/Unarchive";
import Language from "@material-ui/icons/Language";
import { Chat, Twitter } from "@material-ui/icons";
const dashboardRoutes = [
{
path: "/",
name: "Artists",
rtlName: "الفنانين",
icon: Person,
layout: "/artists",
},
{
path: "/",
name: "Music",
rtlName: "ألبومات",
icon: "content_paste",
layout: "/music",
},
{
path: "/",
name: "Profile",
rtlName: " الملف الشخصي ",
icon: LibraryBooks,
layout: "/user",
},
{
path: "/",
name: "Favourite",
rtlName: "المفضل",
icon: BubbleChart,
layout: "/favourite",
},
{
path: "/",
name: "Music Tweets",
rtlName: "تغريدة الموسيقى",
icon: Twitter,
layout: "/tweet",
},
{
path: "/",
name: "Local",
rtlName: "محلي",
icon: LocationOn,
layout: "/maps",
},
{
path: "/",
name: "Notifications",
rtlName: "إشعارات",
icon: Notifications,
layout: "/notifications",
},
{
path: "/",
name: "Settings",
rtlName: "إعدادات",
icon: Language,
layout: "/settings",
},
{
path: "/Logout",
name: "Log out",
rtlName: "تسجيل خروج",
icon: Unarchive,
layout: "/logout",
},
];
export default dashboardRoutes;