initial commit

This commit is contained in:
averel10
2026-02-27 13:28:19 +01:00
parent 868e003501
commit 0285cf0956
8 changed files with 683 additions and 19 deletions

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

@@ -0,0 +1,11 @@
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html>
<body>{children}</body>
</html>
)
}