import { UploadCloud } from 'lucide-react'; import { ALLOWED_EXTENSIONS } from '../utils/file-validation'; export function UploadEmptyState({ isDragActive }: { isDragActive: boolean }) { return (

{isDragActive ? 'Drop your files here' : 'Drag & drop satellite data'}

Support for continuous uploads. Select one or multiple NetCDF or HDF5 files to begin processing.

Supported: {ALLOWED_EXTENSIONS.map(ext => ( {ext} ))}
); }