import { redirect } from "next/navigation"; import { isAdminUiEnabled } from "@/lib/server/admin-auth"; export default function SignInPage() { if (!isAdminUiEnabled()) { redirect("/"); } return (
Admin sign-in is not configured in this deployment. Enable the admin UI and wire an auth provider before using this area.