import { getTranslations } from 'next-intl/server'; import { LoginForm } from './login-form'; export default async function LoginPage() { const t = await getTranslations('auth'); return (

{t('title')}

{t('subtitle')}

); }