initial commit

This commit is contained in:
Conrad
2021-06-16 22:56:42 -04:00
parent 49ae84adca
commit fd3ed61089
15 changed files with 3517 additions and 2 deletions

7
pages/_app.tsx Normal file
View File

@@ -0,0 +1,7 @@
import '../styles/globals.css'
import type { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp