8 lines
245 B
TypeScript
8 lines
245 B
TypeScript
|
|
import { redirect } from "next/navigation";
|
||
|
|
import { isSetupComplete } from "@/lib/db";
|
||
|
|
|
||
|
|
export default function AuthLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
if (!isSetupComplete()) redirect("/setup");
|
||
|
|
return <>{children}</>;
|
||
|
|
}
|