init commit,

This commit is contained in:
louiscklaw
2025-05-28 09:55:51 +08:00
commit efe70ceb69
8042 changed files with 951668 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
import Box from '@mui/material/Box';
import Button from '@mui/material/Button';
import Typography from '@mui/material/Typography';
import { RouterLink } from 'src/routes/components';
import { MaintenanceIllustration } from 'src/assets/illustrations';
// ----------------------------------------------------------------------
export function MaintenanceView() {
return (
<Box sx={{ display: 'flex', alignItems: 'center', flexDirection: 'column' }}>
<Typography variant="h3" sx={{ mb: 2 }}>
Website currently under maintenance
</Typography>
<Typography sx={{ color: 'text.secondary' }}>
We are currently working hard on this page!
</Typography>
<MaintenanceIllustration sx={{ my: { xs: 5, sm: 10 } }} />
<Button component={RouterLink} href="/" size="large" variant="contained">
Go to home
</Button>
</Box>
);
}