hw 6 data.tsx created and copied all from lab

This commit is contained in:
2026-04-13 22:36:52 +10:00
parent 20192c86db
commit 1825ad084b
37 changed files with 1077 additions and 259 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;