Rewrite in React

This commit is contained in:
2026-05-19 21:25:23 +03:00
parent b8b5c12032
commit aaa637f188
46 changed files with 1598 additions and 1219 deletions

9
src/views/HomeView.tsx Normal file
View File

@@ -0,0 +1,9 @@
import HomeSection from '../components/HomeSection'
export default function HomeView() {
return (
<main>
<HomeSection />
</main>
)
}