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 ( <>

GitHub Repositories

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