import { motion } from 'framer-motion' import type { ExploreMode } from '../../store' function Spinner() { return ( ) } export function ExploreLoadingPanel({ mode }: { mode: ExploreMode }) { const title = mode === 'visual' ? 'Building visual clusters' : 'Reading tag frequencies' const subtitle = mode === 'visual' ? 'Grouping similar images into browsable clusters.' : 'Collecting tags from the current library scope.' return (
{title}

{subtitle}

) }