added footer

This commit is contained in:
StevanFreeborn
2022-06-25 12:00:55 -05:00
parent 60215c4279
commit 0447157364
5 changed files with 72 additions and 6 deletions
+38
View File
@@ -0,0 +1,38 @@
import React from 'react';
import { Github } from 'react-bootstrap-icons';
import Container from 'react-bootstrap/Container';
import Row from 'react-bootstrap/Row';
import Col from 'react-bootstrap/Col';
export default function Footer() {
return (
<footer className='mt-auto py-3'>
<Container>
<hr/>
<Row>
<Col className='text-start'>
<span>
<span className='highlight'>criminal</span>mindsapi &#169; 2022
</span>
</Col>
<Col className='text-end'>
<a
className='text-dark'
href='https://github.com/StevanFreeborn/criminalmindsapi'
target='_blank'
rel="noreferrer"
>
<Github size={25} />
</a>
</Col>
</Row>
</Container>
</footer>
)
}