mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
59 lines
996 B
JavaScript
59 lines
996 B
JavaScript
|
import Link from 'next/link'
|
||
|
import { logout } from '../utils/auth'
|
||
|
|
||
|
const Header = props => (
|
||
|
<header>
|
||
|
<nav>
|
||
|
<ul>
|
||
|
<li>
|
||
|
<Link href='/'>
|
||
|
<a>Home</a>
|
||
|
</Link>
|
||
|
</li>
|
||
|
<li>
|
||
|
<Link href='/login'>
|
||
|
<a>Login</a>
|
||
|
</Link>
|
||
|
</li>
|
||
|
<li>
|
||
|
<Link href='/profile'>
|
||
|
<a>Profile</a>
|
||
|
</Link>
|
||
|
</li>
|
||
|
<li>
|
||
|
<button onClick={logout}>Logout</button>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</nav>
|
||
|
<style jsx>{`
|
||
|
ul {
|
||
|
display: flex;
|
||
|
list-style: none;
|
||
|
margin-left: 0;
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
margin-right: 1rem;
|
||
|
}
|
||
|
|
||
|
li:first-child {
|
||
|
margin-left: auto;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #fff;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
padding: 0.2rem;
|
||
|
color: #fff;
|
||
|
background-color: #333;
|
||
|
}
|
||
|
`}</style>
|
||
|
</header>
|
||
|
)
|
||
|
|
||
|
export default Header
|