import Link from 'next/link'; import { VOCAB } from '../lib/collection-vocabulary.js'; /** * Recent adds to My Collection on /dashboard. */ export default function DashboardRecentActivity({ activities = [], loading = false }) { return (

Recent activity

View {VOCAB.MY_COLLECTION}
{loading ? ( ) : activities.length === 0 ? (

No recent adds yet. Scan a card or browse the catalog to start building {VOCAB.MY_COLLECTION}.

) : ( )}
); }