First Commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// @project
|
||||
import manage from './manage';
|
||||
import other from './other';
|
||||
import pages from './pages';
|
||||
import uiElements from './ui-elements';
|
||||
|
||||
/*************************** MENU ITEMS ***************************/
|
||||
|
||||
const menuItems = {
|
||||
items: [manage, uiElements, pages, other]
|
||||
};
|
||||
|
||||
export default menuItems;
|
||||
@@ -0,0 +1,19 @@
|
||||
/*************************** MENU ITEMS - APPLICATIONS ***************************/
|
||||
|
||||
const manage = {
|
||||
id: 'group-manage',
|
||||
title: 'Manage',
|
||||
icon: 'IconBrandAsana',
|
||||
type: 'group',
|
||||
children: [
|
||||
{
|
||||
id: 'dashboard',
|
||||
title: 'Dashboard',
|
||||
type: 'item',
|
||||
url: '/dashboard',
|
||||
icon: 'IconLayoutGrid'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export default manage;
|
||||
@@ -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/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;
|
||||
@@ -0,0 +1,41 @@
|
||||
/*************************** MENU ITEMS - PAGES ***************************/
|
||||
|
||||
const pages = {
|
||||
id: 'group-page',
|
||||
title: 'Page',
|
||||
icon: 'IconDotsVertical',
|
||||
type: 'group',
|
||||
children: [
|
||||
{
|
||||
id: 'authentication',
|
||||
title: 'Authentication',
|
||||
type: 'collapse',
|
||||
icon: 'IconLogin2',
|
||||
children: [
|
||||
{
|
||||
id: 'login',
|
||||
title: 'Login',
|
||||
type: 'item',
|
||||
url: '/auth/login',
|
||||
target: true
|
||||
},
|
||||
{
|
||||
id: 'register',
|
||||
title: 'Register',
|
||||
type: 'item',
|
||||
url: '/auth/register',
|
||||
target: true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'sample-page',
|
||||
title: 'Sample Page',
|
||||
type: 'item',
|
||||
url: '/sample-page',
|
||||
icon: 'IconBrandChrome'
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export default pages;
|
||||
@@ -0,0 +1,38 @@
|
||||
/*************************** MENU ITEMS - APPLICATIONS ***************************/
|
||||
|
||||
const uiElements = {
|
||||
id: 'group-ui-elements',
|
||||
title: 'Ui Elements',
|
||||
icon: 'IconDotsVertical',
|
||||
type: 'group',
|
||||
children: [
|
||||
{
|
||||
id: 'components',
|
||||
title: 'Components',
|
||||
type: 'collapse',
|
||||
icon: 'IconAppWindow',
|
||||
children: [
|
||||
{
|
||||
id: 'color',
|
||||
title: 'Color',
|
||||
type: 'item',
|
||||
url: '/utils/color'
|
||||
},
|
||||
{
|
||||
id: 'shadow',
|
||||
title: 'Shadow',
|
||||
type: 'item',
|
||||
url: '/utils/shadow'
|
||||
},
|
||||
{
|
||||
id: 'typography',
|
||||
title: 'Typography',
|
||||
type: 'item',
|
||||
url: '/utils/typography'
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export default uiElements;
|
||||
Reference in New Issue
Block a user