l-min-components 1.0.183 → 1.0.187

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "l-min-components",
3
- "version": "1.0.183",
3
+ "version": "1.0.187",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -374,6 +374,7 @@ export const Navbar2 = styled.nav`
374
374
  align-items: center;
375
375
  position: fixed;
376
376
  z-index: 99;
377
+ justify-content: space-between;
377
378
  `;
378
379
 
379
380
  export const Nav2 = styled.ul`
@@ -33,7 +33,7 @@ const HeaderComponentTwo = (props) => {
33
33
  return (
34
34
  <Navbar2>
35
35
  <img src={logo} alt="Learngual logo" />
36
- <Nav2>
36
+ {/* <Nav2>
37
37
  <li>
38
38
  <a href="#" className="active">
39
39
  What we do
@@ -48,14 +48,14 @@ const HeaderComponentTwo = (props) => {
48
48
  <li>
49
49
  <a href="#">Contact</a>
50
50
  </li>
51
- </Nav2>
51
+ </Nav2> */}
52
52
 
53
53
  <NavGroup2>
54
54
  <CountryFlagGroup2>
55
55
  <ReactFlagsSelect
56
56
  selected={selected}
57
57
  onSelect={(code) => setSelected(code)}
58
- showOptionLabel={false}
58
+ showOptionLabel={true}
59
59
  />
60
60
  <ArrowDownIcon />
61
61
  </CountryFlagGroup2>
@@ -71,28 +71,18 @@ export const sideMenuOptions = [
71
71
  userType: "developer",
72
72
  routes: [
73
73
  {
74
- path: "/dashboard",
75
- icon: <DashboardIcon />,
76
- text: "Dashboard",
77
- },
78
- { path: "/reports/students", icon: <AwardIcon />, text: "Reports" },
79
-
80
- {
81
- path: "/courses",
82
- icon: <BookIcon />,
83
- text: "Courses",
84
- },
85
- {
86
- path: "/manage-teams",
87
- icon: <TeamsIcon />,
88
- text: "Manage Teams",
74
+ path: "/",
75
+ icon: <FaCode />,
76
+ text: "Api",
77
+ // notifications: 2,
89
78
  },
90
79
  {
91
- path: "/announcements",
92
- icon: <VolumeIcon />,
93
- text: "Announcements",
94
- notifications: 3,
80
+ path: "/documentation",
81
+ icon: <DocumentIcon />,
82
+ text: "Documentation",
83
+ // notifications: 5,
95
84
  },
85
+ { path: "/report", icon: <AwardIcon />, text: "Report" },
96
86
  ],
97
87
  },
98
88
  {