-
Notifications
You must be signed in to change notification settings - Fork 596
/
routes.js
103 lines (86 loc) · 2.42 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
93
94
95
96
97
98
99
100
101
102
103
/*!
=========================================================
* * 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";
const dashboardRoutes = [
{
path: "/dashboard",
name: "Dashboard",
rtlName: "لوحة القيادة",
icon: Dashboard,
layout: "/admin",
},
{
path: "/user-profile",
name: "User Profile",
rtlName: "ملف تعريفي للمستخدم",
icon: Person,
layout: "/admin",
},
{
path: "/table-list",
name: "Table List",
rtlName: "قائمة الجدول",
icon: "content_paste",
layout: "/admin",
},
{
path: "/typography",
name: "Typography",
rtlName: "طباعة",
icon: LibraryBooks,
layout: "/admin",
},
{
path: "/icons",
name: "Icons",
rtlName: "الرموز",
icon: BubbleChart,
layout: "/admin",
},
{
path: "/maps",
name: "Maps",
rtlName: "خرائط",
icon: LocationOn,
layout: "/admin",
},
{
path: "/notifications",
name: "Notifications",
rtlName: "إخطارات",
icon: Notifications,
layout: "/admin",
},
{
path: "/rtl-page",
name: "RTL Support",
rtlName: "پشتیبانی از راست به چپ",
icon: Language,
layout: "/rtl",
},
{
path: "/upgrade-to-pro",
name: "Upgrade To PRO",
rtlName: "التطور للاحترافية",
icon: Unarchive,
layout: "/admin",
},
];
export default dashboardRoutes;