feat: setup frontend Next.js project structure

This commit is contained in:
nguyenvanbao
2026-01-31 12:35:43 +07:00
parent 3c9a113721
commit 5b62149051
28 changed files with 3195 additions and 23 deletions

13
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 lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}