import { cn } from "@/lib/utils/ui"; interface AuthHeaderProps { title: string; description: string; } export function AuthHeader({ title, description }: AuthHeaderProps) { return (

{title}

{description}

); }