"use client" import Link from "next/link" import { Sparkles } from "lucide-react" import { AuthCard } from "@/components/auth/auth-card" type LoginFormProps = { loginHref: string signupHref: string forgotPasswordHref: string error: string | null } export function LoginForm({ loginHref, signupHref, forgotPasswordHref, error, }: LoginFormProps) { return (

Pas encore de compte ?{" "} Créer un compte

Mot de passe oublié ?

} >
Se connecter avec UltiSpace
) }