mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 10:22:53 +00:00
44 lines
1.7 KiB
JavaScript
44 lines
1.7 KiB
JavaScript
import React from 'react';
|
|
import {Link} from 'react-router';
|
|
|
|
import me from '../../../assets/images/me.jpg';
|
|
|
|
export default class AboutMe extends React.Component{
|
|
|
|
render(){
|
|
return(
|
|
<div>
|
|
<h2>About Me</h2>
|
|
<img src={me}/>
|
|
<p>
|
|
My name is Mitchell and I have a passion for software development. I am currently a software engineer and enjoy working on personal projects in my free time.
|
|
</p>
|
|
<p>
|
|
Check out the source code for this site <a class="link" target="_blank" href="https://github.com/mgerb/mywebsite">here <i class="fa fa-github" aria-hidden="true"/></a>.
|
|
</p>
|
|
<p>
|
|
<i class="fa fa-home" aria-hidden="true"></i>
|
|
<Link to={"/"} class="link"> Home</Link>
|
|
</p>
|
|
<p>
|
|
<i class="fa fa-envelope" aria-hidden="true"></i>
|
|
<a class="link" href="mailto:mgerb42@gmail.com"> eMail</a>
|
|
</p>
|
|
<p>
|
|
<i class="fa fa-linkedin-square" aria-hidden="true"></i>
|
|
<a class="link" href="https://www.linkedin.com/in/mitchell-gerber-125391b3" target="_blank"> LinkedIn</a>
|
|
</p>
|
|
<p>
|
|
<i class="fa fa-github" aria-hidden="true"></i>
|
|
<a class="link" href="https://github.com/mgerb" target="_blank"> GitHub</a>
|
|
</p>
|
|
{/*
|
|
<p>
|
|
<i class="fa fa-wpforms" aria-hidden="true"> </i>
|
|
<a href="/resume" class="link"> Resume</a>
|
|
</p>
|
|
*/}
|
|
</div>
|
|
);
|
|
}
|
|
} |