Fixing styling, and removing strict from tsconfig

This commit is contained in:
Frank Delaguila
2022-11-05 18:09:09 -06:00
parent a036c449f7
commit 2023d09286
8 changed files with 142 additions and 22 deletions

View File

@@ -3,13 +3,11 @@ import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html>
<Head>
<title>Magic Card Valuator</title>
</Head>
<Head />
<body>
<Main />
{/* Here we will mount our modal portal */}
<div id="modal-root" />
<div id="modal-root"/>
<NextScript />
</body>
</Html>