Generateurv2/frontend/components/Layout.js

17 lines
312 B
JavaScript
Raw Normal View History

2022-05-18 10:15:54 +02:00
import Head from "next/head";
import NavBar from "./NavBar.jsx";
2022-06-11 23:39:03 +02:00
export default function Layout({ children, page }) {
return (
<>
<Head>
<title>{page}</title>
</Head>
<header>
<NavBar />
</header>
<main className="container">{children} </main>
</>
);
}