19 lines
455 B
TypeScript
19 lines
455 B
TypeScript
import { notFound, redirect } from "next/navigation";
|
|
|
|
import { getCurrentUser } from "@/lib/session";
|
|
|
|
interface ProtectedLayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export default async function Dashboard({ children }: ProtectedLayoutProps) {
|
|
const user = await getCurrentUser();
|
|
|
|
// if (!user) redirect("/login");
|
|
// if (user.role !== "ADMIN") notFound();
|
|
|
|
if (!user || user.role !== "ADMIN") redirect("/login");
|
|
|
|
return <>{children}</>;
|
|
}
|