Routing: Default route now points to /home landing page

This commit is contained in:
Avery Felts 2026-01-31 20:10:19 -07:00
parent d166e92f8c
commit 834524bece

View File

@ -6,7 +6,7 @@ export default async function Home() {
const user = await getUser();
if (!user) {
redirect('/login');
redirect('/home');
}
return <Dashboard user={user} />;