const Page: NextPageWithLayout = () => {
return (
<>
<Head>
<title>Title</title>
</Head>
//Imagine the rest of the pages code instead of this
<Home />
</>
);
};
Page.getLayout = function getLayout(page: ReactElement) {
return (
<div className="flex h-screen flex-col">
<Header />
{page}
<Footer />
</div>
);
};
const Page: NextPageWithLayout = () => {
return (
<>
<Head>
<title>Title</title>
</Head>
//Imagine the rest of the pages code instead of this
<Home />
</>
);
};
Page.getLayout = function getLayout(page: ReactElement) {
return (
<div className="flex h-screen flex-col">
<Header />
{page}
<Footer />
</div>
);
};