Skip to content

Commit

Permalink
Merge pull request #59 from chingu-voyages/feature/navbar
Browse files Browse the repository at this point in the history
Feature/navbar
  • Loading branch information
Guitarhub786 authored Nov 1, 2020
2 parents 08b9ba2 + 401b6b7 commit a161315
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
import React from "react";
import logo from '../assets/img/logo.svg'
import '../css/Navbar.css'

export default function Navbar() {
const styles = {
height: 100,
height: 70,
padding: 10
}

return (
<nav>
<img src={require("../assets/img/logo.svg")} style={styles} alt="logo" />
<img src={logo} style={styles} alt="logo" />
<ul className="nav-links">
{/* <li><a href="#">Home</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Contacts</a></li>
<li><a href="#">Logout</a></li> */}
<li><a target='_blank' href="https://github.com/chingu-voyages/v24-geckos-team-02/graphs/contributors">About</a></li>
</ul>
</nav>
)
Expand Down
1 change: 1 addition & 0 deletions src/css/Navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ nav {
justify-content: space-around;
min-height: 10vh;
align-items: center;
background-color: rgb(238, 236, 236);
}

nav .nav-links {
Expand Down

0 comments on commit a161315

Please sign in to comment.