F1Manager-Calc/components/Footer.jsx

14 lines
497 B
React
Raw Normal View History

2023-04-17 20:50:24 +02:00
import {Container, Divider, Typography} from "@mui/material";
export default function Footer() {
return (
<Container maxWidth="xl" component="main" sx={{ pt: 2, pb: 3 }}>
<Divider variant="fullWidth" />
<Typography>
Another ieb Project &middot; {' '}
GitHub: <a href="https://github.com/iebb/F1Manager-Calc">iebb/F1Manager-Calc</a> &middot; {' '}
Contact: <a href="https://twitter.com/CyberHono">@CyberHono</a>
</Typography>
</Container>
)
}