Add basic layout

This commit is contained in:
2021-10-14 20:42:49 +02:00
parent adc12fcae3
commit 471165d949
25 changed files with 662 additions and 265 deletions

12
pages/_app.tsx Normal file
View File

@@ -0,0 +1,12 @@
import type { AppProps } from "next/app";
import { DefaultLayout } from "../components/layout/defaultLayout";
function MyApp({ Component, pageProps }: AppProps) {
return (
<DefaultLayout>
<Component {...pageProps} />
</DefaultLayout>
);
}
export default MyApp;