import type { ReactElement } from "react"; import Layout from "../components/layout"; import type { NextPageWithLayout } from "./_app"; const Page: NextPageWithLayout = () => { return
This is the index page
; }; Page.getLayout = function getLayout(page: ReactElement) { return