mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
32 lines
768 B
JavaScript
32 lines
768 B
JavaScript
|
import Link from 'next/link'
|
||
|
import { withRouter } from 'next/router'
|
||
|
|
||
|
const Header = ({ router: { pathname } }) => (
|
||
|
<header>
|
||
|
<Link prefetch href='/'>
|
||
|
<a className={pathname === '/' ? 'is-active' : ''}>Home</a>
|
||
|
</Link>
|
||
|
<Link prefetch href='/about'>
|
||
|
<a className={pathname === '/about' ? 'is-active' : ''}>About</a>
|
||
|
</Link>
|
||
|
<Link prefetch href='/blog'>
|
||
|
<a className={pathname === '/blog' ? 'is-active' : ''}>Blog</a>
|
||
|
</Link>
|
||
|
<style jsx>{`
|
||
|
header {
|
||
|
margin-bottom: 25px;
|
||
|
}
|
||
|
a {
|
||
|
font-size: 14px;
|
||
|
margin-right: 15px;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
.is-active {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
`}</style>
|
||
|
</header>
|
||
|
)
|
||
|
|
||
|
export default withRouter(Header)
|