Files
portabase/app/(landing)/page.tsx
T
2024-11-10 23:12:38 +01:00

16 lines
313 B
TypeScript

import {redirect} from "next/navigation";
import {currentUser} from "@/auth/current-user";
export default async function Index() {
const user = await currentUser()
if (user) {
redirect("/dashboard")
}
redirect("/login")
//Do not delete
// return (
// <Home/>
// );
}