-
-
{company.headquarters_location}
+
+ {/* Company Info */}
+
+ {company.founded_year && (
+
+ Founded:
+ {company.founded_year}
)}
-
-
-
- {company.average_rating > 0
- ? `${company.average_rating.toFixed(1)} rating`
- : 'No ratings yet'
- }
- {company.review_count > 0 && (
-
- ({company.review_count} review{company.review_count !== 1 ? 's' : ''})
-
- )}
-
-
+ {company.headquarters_location && (
+
+
+
+ {company.headquarters_location}
+
+
+ )}
+
+
+ {/* Rating */}
+ {company.average_rating > 0 && (
+
+
+ {company.average_rating.toFixed(1)}
+ ({company.review_count} reviews)
+
+ )}
+
+ {/* Park Count Stats */}
+
+ {(company as any).park_count > 0 && (
+
+
+ {(company as any).park_count}
+ parks owned
+
+ )}
-
-
);