add everything

This commit is contained in:
Koolant
2026-04-17 12:29:41 -04:00
commit 4c1cfe6847
437 changed files with 11939 additions and 0 deletions

13
js/routes.js Normal file
View File

@@ -0,0 +1,13 @@
import Home from './pages/Home.js';
import List from './pages/List.js';
import Leaderboard from './pages/Leaderboard.js';
import Roulette from './pages/Roulette.js';
import ListPacks from './pages/ListPacks.js';
export default [
{ path: '/', component: Home },
{ path: '/list', component: List },
{ path: '/leaderboard', component: Leaderboard },
{ path: '/roulette', component: Roulette },
{ path: '/list-packs', component: ListPacks },
];