From e04fc22bb86357abf1116d892d4274dc362b359c Mon Sep 17 00:00:00 2001 From: rajun Date: Tue, 21 Jul 2026 18:12:43 +0530 Subject: [PATCH] refactor: update routing --- app/routes.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/routes.ts b/app/routes.ts index dc43c37..98453c5 100644 --- a/app/routes.ts +++ b/app/routes.ts @@ -1,6 +1,7 @@ import { type RouteConfig, index, route } from '@react-router/dev/routes'; export default [ - index('routes/home.tsx'), - route('ar/:id', './qr-ar/ar-viewer.tsx'), + index('routes/dashboard.tsx'), + route('login', 'routes/login.tsx'), + route('ar/:id', 'qr-ar/ar-viewer.tsx'), ] satisfies RouteConfig;