mitai-jinkendo/frontend/src/config/settingsNav.js
Lars c152721fe8
All checks were successful
Deploy Development / deploy (push) Successful in 47s
Build Test / lint-backend (push) Successful in 0s
Build Test / build-frontend (push) Successful in 15s
feat: Refactor settings navigation and enhance profile reference values display
- Introduced a new SettingsShell layout for improved navigation within the settings section.
- Updated ProfileReferenceValuesPage to display the latest entry with enhanced styling and information.
- Removed the direct link to settings from ProfileReferenceValuesPage for a cleaner UI.
- Adjusted SettingsPage to streamline the layout and focus on essential settings options.
2026-04-07 06:24:47 +02:00

10 lines
370 B
JavaScript

/**
* Einstellungen: Sub-Navigation (Mobil = Chip-Leiste, Desktop = linke Spalte).
* Pfade müssen mit den Routes unter SettingsShell in App.jsx übereinstimmen.
*/
export const SETTINGS_SHELL_NAV_ITEMS = [
{ id: 'general', label: 'Allgemein', to: '/settings', end: true },
{ id: 'reference-values', label: 'Referenzwerte', to: '/settings/reference-values' },
]