Initial commit from Create Next App

This commit is contained in:
2026-04-27 13:36:42 +03:00
commit 9d41fe63af
46 changed files with 4200 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}