switch to next.js

- init next app
- add daisyUI
This commit is contained in:
Nathaniel Tampus
2023-02-13 23:12:16 +08:00
parent 209ebbfd9d
commit 862cada547
26 changed files with 132 additions and 246 deletions

View File

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