import { Metadata } from 'next';

import LoginClient from './LoginClient';

export const metadata: Metadata = {
  robots: 'noindex',
};

export default function Page() {
  return <LoginClient />;
}
