mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
21 lines
351 B
JavaScript
21 lines
351 B
JavaScript
|
|
import React from 'react';
|
||
|
|
import Head from 'next/head';
|
||
|
|
import PropTypes from 'prop-types';
|
||
|
|
|
||
|
|
const Layout = ({ children }) => (
|
||
|
|
<>
|
||
|
|
<Head>
|
||
|
|
<title>NN By the Sea</title>
|
||
|
|
</Head>
|
||
|
|
<main>
|
||
|
|
<div className="container">{children}</div>
|
||
|
|
</main>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default Layout;
|
||
|
|
|
||
|
|
Layout.propTypes = {
|
||
|
|
children: PropTypes.node,
|
||
|
|
};
|