mirror of
https://github.com/mgerb/mywebsite
synced 2026-03-05 15:55:25 +00:00
working on sidebar/sensors
This commit is contained in:
@@ -2,9 +2,9 @@ import React from 'react';
|
||||
|
||||
//components
|
||||
import SensorList from './sensors/SensorList';
|
||||
import AboutMe from './utils/AboutMe';
|
||||
|
||||
//assets
|
||||
import me from '../../assets/images/me.jpg';
|
||||
import '../../assets/scss/Sidebar.scss';
|
||||
|
||||
export default class Sidebar extends React.Component {
|
||||
@@ -36,33 +36,7 @@ export default class Sidebar extends React.Component {
|
||||
class="fa fa-2x fa-navicon"
|
||||
aria-hidden="true" />
|
||||
</a>
|
||||
<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>
|
||||
<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>
|
||||
|
||||
<br/>
|
||||
|
||||
<h2>Sensors</h2>
|
||||
<hr/>
|
||||
<AboutMe/>
|
||||
{this.props.sensor.fetchedList ? <SensorList list={this.props.sensor.list}/> : null}
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user