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

@@ -81,17 +81,12 @@ export function ParkCard({ park }: ParkCardProps) {
{park.name}
</h3>
{park.location && <div className="flex items-center text-sm text-muted-foreground">
{park.location && <div className="flex items-center text-sm text-muted-foreground">
<MapPin className="w-3 h-3 mr-1" />
{park.location.city && `${park.location.city}, `}{park.location.country}
</div>}
</div>
{/* Description */}
{park.description && <p className="text-sm text-muted-foreground line-clamp-2">
{park.description}
</p>}
{/* Park Type */}
<Badge variant="outline" className="text-xs">
{formatParkType(park.park_type)}