import { useAppStore } from '@/store/app-store'; import { useTranslation } from 'react-i18next'; import { version } from '../../../package.json'; export function TitleBar() { const { t } = useTranslation(); const isAdmin = useAppStore((s) => s.isAdmin); return (

{isAdmin ? t('app.name') : t('app.nameReadonly')}

v{version}
); }