2017-01-05 21:03:36 +00:00
|
|
|
import Link from 'next/link'
|
|
|
|
import Head from 'next/head'
|
|
|
|
|
|
|
|
export default ({ children, title = 'This is the default title' }) => (
|
|
|
|
<div>
|
|
|
|
<Head>
|
2018-12-17 16:34:32 +00:00
|
|
|
<title>{title}</title>
|
2017-01-05 21:03:36 +00:00
|
|
|
<meta charSet='utf-8' />
|
|
|
|
<meta name='viewport' content='initial-scale=1.0, width=device-width' />
|
|
|
|
</Head>
|
|
|
|
<header>
|
|
|
|
<nav>
|
2018-12-17 16:34:32 +00:00
|
|
|
<Link href='/'>
|
|
|
|
<a>Home</a>
|
|
|
|
</Link>{' '}
|
|
|
|
|
|
|
|
|
<Link href='/about'>
|
|
|
|
<a>About</a>
|
|
|
|
</Link>{' '}
|
|
|
|
|
|
|
|
|
<Link href='/contact'>
|
|
|
|
<a>Contact</a>
|
|
|
|
</Link>
|
2017-01-05 21:03:36 +00:00
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
|
2018-12-17 16:34:32 +00:00
|
|
|
{children}
|
2017-01-05 21:03:36 +00:00
|
|
|
|
2018-12-17 16:34:32 +00:00
|
|
|
<footer>{'I`m here to stay'}</footer>
|
2017-01-05 21:03:36 +00:00
|
|
|
</div>
|
|
|
|
)
|