Files
criminalmindsapi/client/src/components/footer.js
T

68 lines
1.9 KiB
JavaScript
Raw Normal View History

2022-06-25 12:00:55 -05:00
import React from 'react';
2022-06-26 11:49:03 -05:00
2022-06-25 12:00:55 -05:00
import { Github } from 'react-bootstrap-icons';
2022-06-26 11:39:44 -05:00
import { Globe } from 'react-bootstrap-icons';
import { Envelope } from 'react-bootstrap-icons';
2022-06-26 11:49:03 -05:00
2022-06-25 12:00:55 -05:00
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'>
2022-06-26 11:39:44 -05:00
2022-06-26 11:57:25 -05:00
<Container fluid>
2022-06-25 12:00:55 -05:00
<hr/>
<Row>
<Col className='text-start'>
2022-06-26 11:49:03 -05:00
2022-06-25 12:00:55 -05:00
<span>
2022-06-26 11:49:03 -05:00
2022-06-25 12:00:55 -05:00
<span className='highlight'>criminal</span>mindsapi &#169; 2022
2022-06-26 11:49:03 -05:00
2022-06-25 12:00:55 -05:00
</span>
2022-06-26 11:49:03 -05:00
2022-06-25 12:00:55 -05:00
</Col>
<Col className='text-end'>
2022-06-26 11:39:44 -05:00
2022-06-25 12:00:55 -05:00
<a
2022-06-26 11:39:44 -05:00
className='text-dark m-1'
2022-06-25 12:00:55 -05:00
href='https://github.com/StevanFreeborn/criminalmindsapi'
target='_blank'
rel="noreferrer"
>
<Github size={25} />
</a>
2022-06-26 11:39:44 -05:00
<a
className='text-dark m-1'
href='https://stevanfreeborn.com'
target='_blank'
rel="noreferrer"
>
<Globe size={25} />
</a>
<a
className='text-dark m-1'
href='mailto:stevan.freeborn@gmail.com'
target='_blank'
rel="noreferrer"
>
<Envelope size={25} />
</a>
2022-06-25 12:00:55 -05:00
</Col>
</Row>
</Container>
2022-06-26 11:39:44 -05:00
2022-06-25 12:00:55 -05:00
</footer>
)
}