- 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.
10 lines
370 B
JavaScript
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' },
|
|
]
|