Files
livedash-node/app/page.tsx
Max Kowalski fd55b30398 shit
2025-06-26 22:43:22 +02:00

10 lines
325 B
TypeScript

import { getServerSession } from "next-auth";
import { redirect } from "next/navigation";
import { authOptions } from "./api/auth/[...nextauth]/route";
export default async function HomePage() {
const session = await getServerSession(authOptions);
if (session?.user) redirect("/dashboard");
else redirect("/login");
}