Add icons to represent different types of parks

Update ParkCard component to display specific icons for theme_park and amusement_park types.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: f44f1d1b-1dd8-407b-8603-db12902e1a15
Replit-Commit-Checkpoint-Type: intermediate_checkpoint
This commit is contained in:
pac7
2025-10-04 14:24:00 +00:00
parent 65546141bb
commit ea90eef57a

View File

@@ -28,9 +28,9 @@ export function ParkCard({ park }: ParkCardProps) {
const getParkTypeIcon = (type: string) => {
switch (type) {
case 'theme_park':
return;
return <Castle className="w-5 h-5" />;
case 'amusement_park':
return;
return <FerrisWheel className="w-5 h-5" />;
case 'water_park':
return <Waves className="w-5 h-5" />;
case 'family_entertainment':