14 lines
497 B
React
14 lines
497 B
React
|
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 · {' '}
|
||
|
GitHub: <a href="https://github.com/iebb/F1Manager-Calc">iebb/F1Manager-Calc</a> · {' '}
|
||
|
Contact: <a href="https://twitter.com/CyberHono">@CyberHono</a>
|
||
|
</Typography>
|
||
|
</Container>
|
||
|
)
|
||
|
}
|