mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
9c4eefcdbf
* Add prettier for examples directory * Fix files * Fix linting * Add prettier script in case it has to be ran again
30 lines
810 B
JavaScript
30 lines
810 B
JavaScript
import Link from 'next/link'
|
|
|
|
const links = [
|
|
{ href: 'https://github.com/zeit/next.js', label: 'Github' },
|
|
{ href: 'https://nextjs.org/docs', label: 'Docs' }
|
|
]
|
|
|
|
export default function Nav () {
|
|
return (
|
|
<nav>
|
|
<ul className='flex justify-between items-center p-8'>
|
|
<li className='list-reset'>
|
|
<Link prefetch href='/'>
|
|
<a className='text-blue no-underline'>Home</a>
|
|
</Link>
|
|
</li>
|
|
<ul className='flex justify-between items-center'>
|
|
{links.map(({ href, label }) => (
|
|
<li key={`${href}${label}`} className='list-reset ml-4'>
|
|
<Link href={href}>
|
|
<a className='btn-blue no-underline'>{label}</a>
|
|
</Link>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</ul>
|
|
</nav>
|
|
)
|
|
}
|