1
1
import ArrowRight from '@mui/icons-material/ArrowRight' ;
2
2
import EngineeringIcon from '@mui/icons-material/Engineering' ;
3
3
import Home from '@mui/icons-material/Home' ;
4
+ import KeyIcon from '@mui/icons-material/Key' ;
4
5
import KeyboardArrowDown from '@mui/icons-material/KeyboardArrowDown' ;
5
6
import Settings from '@mui/icons-material/Settings' ;
6
7
import Box from '@mui/material/Box' ;
7
8
import Divider from '@mui/material/Divider' ;
8
- import IconButton from '@mui/material/IconButton' ;
9
+ import ViewModuleIcon from '@mui/icons-material/ViewModule' ;
10
+ import IconButton from '@mui/material/IconButton' ; import GroupIcon from '@mui/icons-material/Group' ;
9
11
import List from '@mui/material/List' ;
12
+ import StorageIcon from '@mui/icons-material/Storage' ;
10
13
import ListItem from '@mui/material/ListItem' ;
11
14
import ListItemButton from '@mui/material/ListItemButton' ;
12
15
import ListItemIcon from '@mui/material/ListItemIcon' ;
@@ -18,6 +21,10 @@ import { Link } from 'react-router-dom';
18
21
19
22
const data = [
20
23
{ icon : < EngineeringIcon /> , label : 'Requirements' , to : 'requirements' } ,
24
+ { icon : < ViewModuleIcon /> , label : 'Modules' , to : 'modules' } ,
25
+ { icon : < GroupIcon /> , label : 'Tenants' , to : 'tenants' } ,
26
+ { icon : < StorageIcon /> , label : 'Servers' , to : 'servers' } ,
27
+ { icon : < KeyIcon /> , label : 'Secrets' , to : 'secrets' } ,
21
28
] ;
22
29
23
30
const Nav = styled ( List ) < { component ?: React . ElementType } > ( {
@@ -123,7 +130,7 @@ export function Navigation() {
123
130
} }
124
131
>
125
132
< ListItemText
126
- primary = "Build "
133
+ primary = "Settings "
127
134
primaryTypographyProps = { {
128
135
fontSize : 15 ,
129
136
fontWeight : 'medium' ,
0 commit comments