import { Link } from 'react-router'; import { useTranslation } from 'react-i18next'; import { EmptyState } from '../../components/common/EmptyState'; /** `*` — 404. Lives inside AppShell so the sidebar/player stay visible. */ export function NotFoundPage() { const { t } = useTranslation(); return (
{t('notFound.backToLibrary')}
); }