first commit - create home login and register

This commit is contained in:
2024-11-10 11:46:56 +01:00
commit c1d7b0d7ec
66 changed files with 3966 additions and 0 deletions

View File

@ -0,0 +1,21 @@
import { styled } from '@mui/material';
import MuiCard from '@mui/material/Card';
export const Card = styled(MuiCard)(({ theme }) => ({
display: 'flex',
flexDirection: 'column',
alignSelf: 'center',
width: '100%',
padding: theme.spacing(4),
gap: theme.spacing(2),
margin: 'auto',
[theme.breakpoints.up('sm')]: {
maxWidth: '450px',
},
boxShadow:
'hsla(220, 30%, 5%, 0.05) 0px 5px 15px 0px, hsla(220, 25%, 10%, 0.05) 0px 15px 35px -5px',
...theme.applyStyles('dark', {
boxShadow:
'hsla(220, 30%, 5%, 0.5) 0px 5px 15px 0px, hsla(220, 25%, 10%, 0.08) 0px 15px 35px -5px',
}),
}));