lots of changes

This commit is contained in:
2026-02-04 11:18:33 +00:00
parent d02d95e680
commit 4fdbfb0fb3
30 changed files with 1796 additions and 822 deletions

View File

@@ -26,7 +26,7 @@ export default function AuthPage() {
function RedirectToDashboard({ nextPath }: { nextPath: string | null }) {
const router = useRouter();
useEffect(() => {
router.push(nextPath || "/dashboard");
router.push(nextPath || "/app/dashboard");
}, [router, nextPath]);
return (