lab7 start (copied lab6)

This commit is contained in:
2026-04-14 11:08:41 +10:00
parent 4031d1497c
commit 400aca13a2
32 changed files with 4628 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
import Container from '@mui/material/Container';
import Grid from '@mui/material/Grid';
import Typography from '@mui/material/Typography';
import { styled } from '@mui/material/styles';
const StyledContainer = styled(Container)(({ theme }) => ({
backgroundColor: theme.palette.action.hover,
borderRadius: `calc(${theme.shape.borderRadius}px + 8px)`,
marginTop: "50px",
padding: "20px",
color: theme.palette.text.secondary
}));
function CustomFooter() {
return (
<StyledContainer >
<Grid style={{ justifyContent: "space-around",}} container>
<Typography> OkunElya</Typography>
<Typography> 2026</Typography>
<Typography> FEFU</Typography>
</Grid>
</StyledContainer>
);
}
export default CustomFooter;