rsnext/examples/with-cookie-auth-fauna/components/layout.js

40 lines
823 B
JavaScript
Raw Normal View History

import Head from 'next/head'
import Header from './header'
2020-05-18 21:24:37 +02:00
const Layout = (props) => (
<>
<Head>
<title>With Cookies</title>
</Head>
<style jsx global>{`
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
color: #333;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, Noto Sans, sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
.container {
max-width: 65rem;
margin: 1.5rem auto;
padding-left: 1rem;
padding-right: 1rem;
}
`}</style>
<Header />
<main>
<div className="container">{props.children}</div>
</main>
</>
)
export default Layout