export function DuplicateScanLoadingState({ progressLabel }: { progressLabel: string | null }) { return (
{progressLabel ? `${progressLabel}…` : 'Preparing scan…'}
) } export function DuplicateScanIntroState() { return (

Finds files with identical content regardless of filename or location. Click{' '} Scan for duplicates to begin.

Large libraries may take a minute — files are hashed from disk.

) } export function DuplicateScanEmptyState() { return (

No duplicate files found.

) }