chore: initial commit

This commit is contained in:
2026-03-04 13:21:16 -06:00
commit 449d8f96c7
17 changed files with 1086 additions and 0 deletions

11
src/router.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { createRouter } from '@tanstack/react-router'
import { routeTree } from '@/routeTree.gen'
export function getRouter() {
const router = createRouter({
routeTree,
scrollRestoration: true
})
return router
}