'use client'; import { lusitana } from '@/app/ui/fonts'; import { AtSymbolIcon, KeyIcon, } from '@heroicons/react/24/outline'; import { ArrowRightIcon, ExclamationCircleIcon } from '@heroicons/react/20/solid'; import { Button } from './button'; import { useActionState } from "react"; import { authenticate } from "@/app/lib/actions"; export default function LoginForm() { const [errorMessage, formAction, isPending] = useActionState( authenticate, undefined, ); return (
); }