getting rid of crap, fixing errors

This commit is contained in:
2024-12-18 15:59:44 -05:00
parent 587f183ffa
commit 336481f3ba
39 changed files with 135 additions and 246 deletions

5
src/pages/_app.tsx Normal file
View File

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