feat: Redesign the home page hero section with a new background image and enhanced search UI, and standardize user dashboard routing across the application.

This commit is contained in:
pradeepkumar
2026-01-19 09:46:32 +05:30
parent db3b12507e
commit 5a845e4b5d
9 changed files with 174 additions and 99 deletions

View File

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