Refactor: Remove descriptions from cards

This commit is contained in:
gpt-engineer-app[bot]
2025-10-10 14:15:23 +00:00
parent c020bf067f
commit fade35bab9
7 changed files with 7 additions and 56 deletions

View File

@@ -56,18 +56,9 @@ export function DesignerCard({ company }: DesignerCardProps) {
<CardContent className="p-6 space-y-4">
{/* Company Name */}
<div>
<h3 className="font-semibold text-lg mb-2 group-hover:text-primary transition-colors line-clamp-1">
{company.name}
</h3>
{/* Description */}
{company.description && (
<p className="text-sm text-muted-foreground line-clamp-2 mb-3">
{company.description}
</p>
)}
</div>
<h3 className="font-semibold text-lg mb-2 group-hover:text-primary transition-colors line-clamp-1">
{company.name}
</h3>
{/* Company Details */}
<div className="space-y-2 text-sm">