+
+
+
+
+
{buildingData.name}
+
{buildingData.address}
+
+ {buildingData.photos && buildingData.photos.length > 0 ? (
+

+ ) : (
+
+ )}
+
+
}
+ onClick={onOpen}
+ >
+ Open Property
+
+
+
+
+ {avgRating ? avgRating.toFixed(1) : 'N/A'}
+
+
+
+
+
+ {/* Price */}
+
+
+ {avgPrice
+ ? `$${Math.round(avgPrice)}`
+ : buildingData.price
+ ? `$${buildingData.price}`
+ : '—'}
+
+
+
+ {/* Room Size - placeholder */}
+
+
+ {/* Year Built - placeholder */}
+
+
+ {/* Location */}
+
+
+
{buildingData.address}
+
Distance from Campus
+
+
+
+
+ Distance to Transportation
+
+
+
+
+ {/* Amenity rows - all placeholder */}
+ {amenityKeys.map((key, i) => (
+
+ ))}
+
+
+ );
+};
+
+export default ComparisonPage;