Finished contact section, website is officially version 1

This commit is contained in:
2019-04-17 18:30:00 -04:00
parent a828bfb086
commit b63e565866
13 changed files with 59 additions and 28 deletions

View File

@@ -7,21 +7,22 @@ import TwitterIcon from '../../images/twitter-logo.svg';
class Footer extends Component {
render() {
return (
<div className="container-fluid footer-background-color">
<div className="row justify-content-center">
<div className="container-fluid">
<div className="section-height"></div>
<div className="row justify-content-center footer-background-color">
<div className="col-3 p-3 text-center">
<a href="https://github.com/gio101046" className="d-block" target="_blank" rel="noopener noreferrer">
<img alt="Github Icon" src={GithubIcon} width="64" height="64" />
<img alt="Github Icon" src={GithubIcon} width="32" height="32" />
</a>
</div>
<div className="col-3 p-3 text-center">
<a href="https://www.linkedin.com/in/giovaniluisrodriguez/" className="d-block" target="_blank" rel="noopener noreferrer">
<img alt="LinkedIn Icon" src={LinkedInIcon} width="64" height="64" />
<img alt="LinkedIn Icon" src={LinkedInIcon} width="32" height="32" />
</a>
</div>
<div className="col-3 p-3 text-center">
<a href="https://twitter.com/gcode0727" className="d-block" target="_blank" rel="noopener noreferrer">
<img alt="Twitter Icon" src={TwitterIcon} width="64" height="64" />
<img alt="Twitter Icon" src={TwitterIcon} width="32" height="32" />
</a>
</div>
</div>