Separate Client Portal & Dashboard

This commit is contained in:
2022-05-23 10:38:16 +07:00
parent f2e84e6244
commit 89bb57f357
569 changed files with 60252 additions and 280 deletions

View File

@@ -0,0 +1,38 @@
// @mui
import { Box, Typography, Stack } from '@mui/material';
// assets
import { UploadIllustration } from '../../assets';
// ----------------------------------------------------------------------
export default function BlockContent() {
return (
<Stack
spacing={2}
alignItems="center"
justifyContent="center"
direction={{ xs: 'column', md: 'row' }}
sx={{ width: 1, textAlign: { xs: 'center', md: 'left' } }}
>
<UploadIllustration sx={{ width: 220 }} />
<Box sx={{ p: 3 }}>
<Typography gutterBottom variant="h5">
Drop or Select file
</Typography>
<Typography variant="body2" sx={{ color: 'text.secondary' }}>
Drop files here or click&nbsp;
<Typography
variant="body2"
component="span"
sx={{ color: 'primary.main', textDecoration: 'underline' }}
>
browse
</Typography>
&nbsp;thorough your machine
</Typography>
</Box>
</Stack>
);
}