From ea90eef57a6ad3f7a96eeef1cd25bf29370669ec Mon Sep 17 00:00:00 2001
From: pac7 <47831526-pac7@users.noreply.replit.com>
Date: Sat, 4 Oct 2025 14:24:00 +0000
Subject: [PATCH] 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
---
src/components/parks/ParkCard.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/parks/ParkCard.tsx b/src/components/parks/ParkCard.tsx
index 7cc4570f..b8890bc8 100644
--- a/src/components/parks/ParkCard.tsx
+++ b/src/components/parks/ParkCard.tsx
@@ -28,9 +28,9 @@ export function ParkCard({ park }: ParkCardProps) {
const getParkTypeIcon = (type: string) => {
switch (type) {
case 'theme_park':
- return;
+ return ;
case 'amusement_park':
- return;
+ return ;
case 'water_park':
return ;
case 'family_entertainment':