import { login, logout } from "@/actions/auth"; type LoginPageProps = { searchParams: Promise<{ error?: string }>; }; export default async function LoginPage({ searchParams }: LoginPageProps) { const { error } = await searchParams; return (
Melden Sie sich mit Ihrem Firmenkonto an.
{error && (