Setup tailwind css ^& frontend

This commit is contained in:
Xevion
2023-02-27 17:45:28 -06:00
parent c6f0d79d76
commit 56a18ef6cd
7 changed files with 542 additions and 2 deletions

13
src/pages/_document.tsx Normal file
View File

@@ -0,0 +1,13 @@
import {Html, Head, Main, NextScript} from 'next/document'
export default function Document() {
return (
<Html className="h-full bg-gray-50">
<Head/>
<body className="h-full">
<Main/>
<NextScript/>
</body>
</Html>
)
}