Initial Frontend work

This commit is contained in:
2025-11-28 21:04:54 +01:00
parent 9f1fdd79dd
commit 8ff2c76dc1
19 changed files with 2251 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
import { type RouteConfig, index } from "@react-router/dev/routes";
import { type RouteConfig, index, route } from "@react-router/dev/routes";
export default [index("routes/home.tsx")] satisfies RouteConfig;
export default [index("routes/home.tsx"), route("login", "routes/login.tsx"), route("dashboard", "routes/dashboard.tsx")] satisfies RouteConfig;