mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-02 05:23:14 +00:00
32 lines
752 B
TypeScript
32 lines
752 B
TypeScript
export const SYSTEM_UTILITIES: Record<string, { icon: string; title: string }> =
|
|
{
|
|
'/portal/system/backups': {
|
|
icon: 'tuiIconSave',
|
|
title: 'Backups',
|
|
},
|
|
'/portal/system/logs': {
|
|
icon: 'tuiIconFileText',
|
|
title: 'Logs',
|
|
},
|
|
'/portal/system/marketplace': {
|
|
icon: 'tuiIconShoppingCart',
|
|
title: 'Marketplace',
|
|
},
|
|
'/portal/system/updates': {
|
|
icon: 'tuiIconGlobe',
|
|
title: 'Updates',
|
|
},
|
|
'/portal/system/sideload': {
|
|
icon: 'tuiIconUpload',
|
|
title: 'Sideload',
|
|
},
|
|
'/portal/system/settings': {
|
|
icon: 'tuiIconTool',
|
|
title: 'Settings',
|
|
},
|
|
'/portal/system/notifications': {
|
|
icon: 'tuiIconBell',
|
|
title: 'Notifications',
|
|
},
|
|
}
|