"use client" import { Sparkles } from "lucide-react" import { AuthCard } from "@/components/auth/auth-card" import { AuthConnectButton } from "@/components/auth/auth-connect-button" 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
) }