import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'; import { AlertTriangle } from 'lucide-react'; import { SignInForm } from './forms/signin-form'; interface SignInPageProps { searchParams: Promise<{ rd?: string; }>; } export default async function SignIn({ searchParams }: SignInPageProps) { const { rd } = await searchParams; return ( <>