// app/(auth)/login/page.tsx import { LoginForm } from '@/components/auth/login-form' interface Props { searchParams: Promise<{ message?: string }> } export default async function LoginPage({ searchParams }: Props) { const { message } = await searchParams return (
{message === 'password_reset' && (
Password updated — sign in with your new password.
)}
) }