refactor: Standardize user dashboard path to /user/dashboard and refine HeroSection helper text styling.

This commit is contained in:
pradeepkumar
2026-01-20 01:24:43 +05:30
parent 484f01d74d
commit d1b4458e26
6 changed files with 21 additions and 18 deletions

View File

@@ -22,7 +22,7 @@ export default function Home() {
if (userRole === 'AGENT') {
router.replace('/agent/dashboard');
} else {
router.replace('/user/userdashboard');
router.replace('/user/dashboard');
}
}, [session, status, router]);