import Head from "next/head"; import NavBar from "./NavBar.jsx"; export default function Layout({children, page}){ return (<> {page}
{children} ) }