Dabbled in some more boostrap, created introduction componented, changed nav bar

This commit is contained in:
2019-04-09 19:58:46 -04:00
parent 27c3a713bb
commit 9690782d81
16 changed files with 104 additions and 73 deletions

View File

@@ -0,0 +1,24 @@
import React, {Component} from 'react';
import './header.css';
class Header extends Component {
render() {
return (
<div className="container-fluid">
<div className="row justify-content-end nav-background-color">
<div className="col-1 nav-menu-item pt-2 pb-2">
<h3>Home</h3>
</div>
<div className="col-1 nav-menu-item pt-2 pb-2">
<h3>About Me</h3>
</div>
<div className="col-1 nav-menu-item pt-2 pb-2">
<h3>Contact</h3>
</div>
</div>
</div>
);
}
}
export default Header;