import Image from 'next/image';
import Link from 'next/link';
import { LoginForm } from '@/app/(auth)/login/login-form';

export default function LoginPage() {
  return (
    <div className="flex min-h-svh flex-col items-center justify-center gap-6 bg-muted p-6 md:p-10">
      <div className="flex w-full flex-col gap-6">
        <Link
          className="flex items-center gap-2 self-center font-medium"
          href="/"
        >
          <Image alt="Logo" height={30} src="/images/logo.png" width={30} />
        </Link>
        <LoginForm />
      </div>
    </div>
  );
}
