import { login, logout } from "@/actions/auth"; type LoginPageProps = { searchParams: Promise<{ error?: string }>; }; export default async function LoginPage({ searchParams }: LoginPageProps) { const { error } = await searchParams; return (

Alpenwerk HR

Melden Sie sich mit Ihrem Firmenkonto an.

{error && (
{error}
)}
); }