feat: init base

This commit is contained in:
2025-05-27 14:44:52 +03:00
parent 7606f893ab
commit 79078671c0
27 changed files with 5543 additions and 129 deletions

9
src/app/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
import {HomePage} from "@pages/home";
export default function Home() {
return (
<main>
<HomePage />
</main>
);
}