Initial commit

This commit is contained in:
dk
2026-06-13 22:02:19 +00:00
commit bc856a3786
315 changed files with 37780 additions and 0 deletions

13
src/App.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { Routes, Route } from 'react-router-dom';
import Layout from './components/Layout';
import HomePage from './pages/HomePage';
export default function App() {
return (
<Routes>
<Route element={<Layout />}>
<Route path="/" element={<HomePage />} />
</Route>
</Routes>
);
}