Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import React, {ReactElement} from 'react';
import {Container} from 'react-bootstrap';
import github from "super-tiny-icons/images/svg/github.svg"
export default function Footer(): ReactElement {
return (
<footer className='footer mt-auto py-3 text-white'>
<Container className="d-flex flex-column justify-content-center bg-primary p-1">
<a href={"https://github.com/filefighter"} className="align-self-center"><img src={github}
alt={"github logo"}
width={"50px"}/></a>
<span className="align-self-center mt-2">Made by</span>
<div className="d-flex justify-content-around">
<span>Gimleux</span>
<span>Open-Schnick</span>
<span>qvalentin</span>
</div>
</Container>
</footer>
);
}
|