Files
vfxreview/app/page.tsx
T
twotalesanimation 0fbe856dce Initial commit
2026-05-19 22:20:29 +02:00

12 lines
243 B
TypeScript

import { redirect } from "next/navigation";
import { auth } from "@/auth";
export default async function RootPage() {
const session = await auth();
if (session?.user) {
redirect("/dashboard");
} else {
redirect("/login");
}
}