Update Hospital Portal

This commit is contained in:
ivan-sim
2023-11-17 17:16:47 +07:00
parent 00b8fa763e
commit 13ef733010
9 changed files with 389 additions and 885 deletions

View File

@@ -19,10 +19,10 @@ const MENU_OPTIONS = [
label: 'Profile',
linkTo: '/profile',
},
{
label: 'Settings',
linkTo: '/',
},
// {
// label: 'Settings',
// linkTo: '/',
// },
];
// ----------------------------------------------------------------------

View File

@@ -7,23 +7,26 @@ import { DocIllustration } from '@/assets';
export default function NavbarDocs() {
return (
<Stack
spacing={3}
sx={{ px: 5, pb: 5, mt: 10, width: 1, textAlign: 'center', display: 'block' }}
>
<DocIllustration sx={{ width: 1 }} />
<>
<Stack
spacing={3}
sx={{ px: 5, pb: 5, mt: 10, width: 1, textAlign: 'center', display: 'block' }}
>
<DocIllustration sx={{ width: 1 }} />
{/* <div>
<Typography gutterBottom variant="subtitle1">
Hi, Rayan Moran
</Typography>
<Typography variant="body2" sx={{ color: 'text.secondary' }}>
Need help?
<br /> Please check our docs
</Typography>
</div>
<div>
<Typography gutterBottom variant="subtitle1">
Hi, Rayan Moran
</Typography>
<Typography variant="body2" sx={{ color: 'text.secondary' }}>
Need help?
<br /> Please check our docs
</Typography>
</div>
<Button variant="contained">Documentation</Button> */}
</Stack>
<Button variant="contained">Documentation</Button>
<Typography variant='body2'>Hak Cipta © 2023 - 2024 Link Sehat</Typography>
</Stack>
</>
);
}