Builder
creative studio • untitled project
Files
Card.tsx
1import { cn } from "@/lib/utils";23interface CardProps {4 title: string;5 description: string;6 className?: string;7}89export function Card({10 title,11 description,12 className13}: CardProps) {14 return (15 <div className={cn(16 "rounded-xl border p-6",17 "border-white/[0.06]",18 "bg-white/[0.02]",19 "hover:bg-white/[0.04]",20 "transition-all duration-500",21 className22 )}>23 <h3 className="text-sm font-medium">24 {title}25 </h3>26 <p className="text-xs text-white/40 mt-2">27 {description}28 </p>29 </div>30 );31}
Preview
Card Title
This is a preview of the component being built.