import { signIn } from '@/auth'; import LabeledInput from '@/components/labeled-input'; import { Button } from '@/components/ui/button'; import { AuthError } from 'next-auth'; import { redirect } from 'next/navigation'; const SIGNIN_ERROR_URL = '/error'; export default function LoginForm() { return (
); }