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>
|
|
|
|
<title>{ title }</title>
|
|
|
|
<meta charSet='utf-8' />
|
|
|
|
<meta name='viewport' content='initial-scale=1.0, width=device-width' />
|
|
|
|
</Head>
|
|
|
|
<header>
|
|
|
|
<nav>
|
2017-01-16 21:27:55 +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>
|
|
|
|
|
|
|
|
{ children }
|
|
|
|
|
|
|
|
<footer>
|
2017-05-19 12:02:11 +00:00
|
|
|
{'I`m here to stay'}
|
2017-01-05 21:03:36 +00:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
)
|