added info to about page
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
import React from 'react';
|
||||
import { Github } from 'react-bootstrap-icons';
|
||||
import { Globe } from 'react-bootstrap-icons';
|
||||
import { Envelope } from 'react-bootstrap-icons';
|
||||
import Container from 'react-bootstrap/Container';
|
||||
import Row from 'react-bootstrap/Row';
|
||||
import Col from 'react-bootstrap/Col';
|
||||
@@ -7,6 +9,7 @@ import Col from 'react-bootstrap/Col';
|
||||
export default function Footer() {
|
||||
return (
|
||||
<footer className='mt-auto py-3'>
|
||||
|
||||
<Container>
|
||||
|
||||
<hr/>
|
||||
@@ -20,19 +23,40 @@ export default function Footer() {
|
||||
</Col>
|
||||
|
||||
<Col className='text-end'>
|
||||
|
||||
<a
|
||||
className='text-dark'
|
||||
className='text-dark m-1'
|
||||
href='https://github.com/StevanFreeborn/criminalmindsapi'
|
||||
target='_blank'
|
||||
rel="noreferrer"
|
||||
>
|
||||
<Github size={25} />
|
||||
</a>
|
||||
|
||||
<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>
|
||||
|
||||
</Col>
|
||||
|
||||
</Row>
|
||||
|
||||
</Container>
|
||||
|
||||
</footer>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user