import type { ReactNode } from 'react' /** Centered card layout shared by the login and register pages. */ export function AuthCard({ title, subtitle, children, }: { title: string subtitle?: string children: ReactNode }) { return (

{title}

{subtitle &&

{subtitle}

}
{children}
) }