// Stuff import type {NextPageWithLayout} from './_app' import type { ReactElement } from 'react' import Layout from '../components/layout' // Components // import Head from 'next/head' // import styles from '../styles/Home.module.css' // import Header from 'components/header' const Page: NextPageWithLayout = () => { return (

yo

) } Page.getLayout = (page: ReactElement) => { return {page} } export default Page // const Home: NextPage = () => { // return ( //
// // wych.dev // // // //
//
// ) // } //export default Home