first commit
This commit is contained in:
11
src/layout/MinimalLayout.jsx
Normal file
11
src/layout/MinimalLayout.jsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Outlet } from 'react-router-dom';
|
||||
import { Box } from '@mui/material';
|
||||
|
||||
// Used by auth + maintenance pages — full-bleed, no shell.
|
||||
export default function MinimalLayout() {
|
||||
return (
|
||||
<Box sx={{ minHeight: '100vh', bgcolor: 'background.default' }}>
|
||||
<Outlet />
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user