first commit

This commit is contained in:
2026-07-30 12:15:17 +03:00
commit 1f29eead28
48 changed files with 10666 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import './globals.css'
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html suppressHydrationWarning>
<body suppressHydrationWarning>{children}</body>
</html>
)
}