import type { ReactNode } from 'react' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '~/components/ui/card' interface AuthCardProps { title: string description?: ReactNode children: ReactNode footer?: ReactNode } export function AuthCard({ title, description, children, footer }: AuthCardProps) { return (