import type {NextPageWithLayout} from './_app' import type { ReactElement } from 'react' import Layout from '../components/layout' import { Section } from './index' import Link from "next/link" const Page: NextPageWithLayout = () => { return ( <>

Page under development...

While you wait, why not check out my GitHub? Or perhaps my very own git-server?

Or you could also go back to the home page.

) } Page.getLayout = (page: ReactElement) => { return {page} } export default Page