Init project. Create simple backend. Add postgres in docker

This commit is contained in:
2025-03-16 11:24:14 +04:00
commit bcc5d1daf4
44 changed files with 18464 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import { Roboto } from "next/font/google";
import "./globals.css";
import { ThemeProvider } from "next-themes";
const roboto = Roboto({ subsets: ["latin"] });
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="ru" suppressHydrationWarning>
<body className={roboto.className}>
<ThemeProvider enableSystem={false} defaultTheme="light">
{children}
</ThemeProvider>
</body>
</html>
);
}