migrated to nextjs 13 app dir

This commit is contained in:
Ren Amamiya
2023-04-15 09:06:29 +07:00
parent da38ced72c
commit d59cc041d5
56 changed files with 617 additions and 807 deletions

13
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,13 @@
import '@assets/global.css';
import { Providers } from './providers';
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className="dark">
<body className="cursor-default select-none overflow-hidden font-sans antialiased">
<Providers>{children}</Providers>
</body>
</html>
);
}