refactor: delete unneeded pages files

main
Carsten Kragelund 2023-07-28 13:24:12 +02:00
parent 55fa0bb42b
commit 9ae259f3f4
Signed by: nyx
GPG Key ID: CADDADEEC9F753C0
2 changed files with 0 additions and 19 deletions

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

@ -1,13 +0,0 @@
import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html lang='en'>
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}