import React from 'react'; import { NavLink, Outlet } from 'react-router-dom'; import { useTranslation } from 'react-i18next'; export function SettingsPage() { const { t } = useTranslation(); const navItems = [ { to: '/settings/profile', label: t('settings.profile'), icon: '\ud83d\udc64' }, { to: '/settings/system', label: t('systemSettings.title'), icon: '\u2699\ufe0f' }, { to: '/settings/roles', label: t('settings.roles'), icon: '\ud83d\udd11' }, { to: '/settings/users', label: t('settings.users'), icon: '\ud83d\udc65' }, { to: '/settings/groups', label: t('settings.groups', 'Gruppen'), icon: '\ud83d\udc65\ud83d\udcac' }, { to: '/settings/plugins', label: t('settings.plugins'), icon: '\ud83e\udde9' }, { to: '/settings/currencies', label: t('currencies.title'), icon: '\ud83d\udcb0' }, { to: '/settings/taxes', label: t('taxes.title'), icon: '\ud83d\udccb' }, { to: '/settings/sequences', label: t('sequences.title'), icon: '\ud83d\udd22' }, { to: '/settings/mail', label: t('mail.settings'), icon: '\ud83d\udce7' }, { to: '/settings/notifications', label: t('settings.notifications'), icon: '\ud83d\udd14' }, ]; return (
); }