initial layout

This commit is contained in:
Daniil
2026-01-19 23:19:58 +03:00
parent 749fda017c
commit 4688f65c5a
81 changed files with 4343 additions and 16 deletions
+11
View File
@@ -0,0 +1,11 @@
import type { JSX } from "react"
import { RegisterPage } from "@pages/RegisterPage"
export default function Register(): JSX.Element {
return (
<main>
<RegisterPage />
</main>
)
}