export default ({ title, children }) => (
  <html>
    <head>
      <title>{title}</title>
      <link rel="stylesheet" href="/main.css"></link>
    </head>
    <body class="bg-body-400">
      {children}
    </body>
  </html>
);