import { cn } from "@/lib/utils"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; interface GlassCardProps extends React.HTMLAttributes { highlight?: boolean; title?: string; description?: string; } /** @deprecated Prefer Card directly — kept for gradual migration */ export function GlassCard({ className, highlight, title, description, children, ...props }: GlassCardProps) { return ( {(title || description) && ( {title && {title}} {description && {description}} )} {children} ); }