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

yo, projects here

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