Locaft-backend/src/components/NavBar.js

34 lines
921 B
JavaScript
Raw Normal View History

2020-11-21 09:27:17 -08:00
import React, {Component} from 'react';
import '../navbar.css';
2020-11-20 09:26:49 -08:00
2020-11-21 09:27:17 -08:00
class NavBar extends Component {
2020-11-20 09:26:49 -08:00
2020-11-21 09:27:17 -08:00
render(){
2020-11-20 09:26:49 -08:00
return(
2020-11-21 09:27:17 -08:00
<div class="nav">
<input type="checkbox" id="nav-check" />
<div class="nav-header">
<div class="nav-title">
locaft
</div>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<a href="//github.io/jo_geek" target="_blank">Github</a>
<a href="http://stackoverflow.com/users/4084003/" target="_blank">Stackoverflow</a>
<a href="https://in.linkedin.com/in/jonesvinothjoseph" target="_blank">LinkedIn</a>
<a href="https://codepen.io/jo_Geek/" target="_blank">Codepen</a>
<a href="https://jsfiddle.net/user/jo_Geek/" target="_blank">JsFiddle</a>
</div>
</div>
2020-11-20 09:26:49 -08:00
)
2020-11-21 09:27:17 -08:00
}
}
export default NavBar;