sometimes simpler is better; back to spa design

This commit is contained in:
Timothy Pidashev
2024-03-11 22:19:02 -07:00
parent 8b6a760d91
commit e7f70b4c02
102 changed files with 28 additions and 1171 deletions
+18
View File
@@ -0,0 +1,18 @@
/** @jsxImportSource @emotion/react */
import { Head, Html, Main, NextScript } from "next/document"
export default function Document() {
return (
<Html>
<Head/>
<body>
<Main/>
<NextScript/>
</body>
</Html>
)
}