First Commit

This commit is contained in:
cesnimda
2026-03-21 11:55:27 +01:00
commit 2e8a29b4d0
1757 changed files with 166084 additions and 0 deletions
+83
View File
@@ -0,0 +1,83 @@
/*************************** MENU ITEMS - APPLICATIONS ***************************/
const other = {
id: 'group-other',
title: 'Other',
icon: 'IconDotsVertical',
type: 'group',
children: [
{
id: 'changelog',
title: 'Changelog',
type: 'item',
url: 'https://phoenixcoded.gitbook.io/saasable/admin/global/changelog',
target: true,
icon: 'IconHistory'
},
{
id: 'documentation',
title: 'Documentation',
type: 'item',
url: 'https://phoenixcoded.gitbook.io/saasable/admin',
target: true,
icon: 'IconNotes'
},
{
id: 'support',
title: 'Support',
type: 'item',
url: 'https://codedthemes.support-hub.io/',
target: true,
icon: 'IconLifebuoy'
},
{
id: 'menu-levels',
title: 'Menu Levels',
type: 'collapse',
icon: 'IconMenu2',
children: [
{
id: 'menu-level-1.1',
title: 'Level 1',
type: 'item',
url: '#'
},
{
id: 'menu-level-1.2',
title: 'Level 1',
type: 'collapse',
children: [
{
id: 'menu-level-2.1',
title: 'Level 2',
type: 'item',
url: '#'
},
{
id: 'menu-level-2.2',
title: 'Level 2',
type: 'collapse',
children: [
{
id: 'menu-level-3.1',
title: 'Level 3',
type: 'item',
url: '#'
},
{
id: 'menu-level-3.2',
title: 'Level 3',
type: 'item',
url: '#'
}
]
}
]
}
]
}
]
};
export default other;