import { EntityPhotoGallery } from '@/components/upload/EntityPhotoGallery'; interface ParkPhotoGalleryProps { parkId: string; parkName: string; } /** * Backwards-compatible wrapper for ParkPhotoGallery * Uses the generic EntityPhotoGallery component internally */ export function ParkPhotoGallery({ parkId, parkName }: ParkPhotoGalleryProps) { return ( ); }