2017-04-17 08:28:11 +03:00
|
|
|
import { NgaMenuItem } from '@nga/theme';
|
2017-04-14 18:28:27 +03:00
|
|
|
|
|
|
|
|
import { List } from 'immutable';
|
|
|
|
|
|
|
|
|
|
export const menuItems: List<NgaMenuItem> = List([
|
|
|
|
|
{
|
2017-04-17 19:01:47 +03:00
|
|
|
title: 'Dashboard',
|
2017-04-18 15:27:37 +03:00
|
|
|
icon: 'ion ion-ios-home-outline',
|
2017-04-17 19:01:47 +03:00
|
|
|
link: '/pages/dashboard',
|
2017-04-21 17:23:44 +03:00
|
|
|
home: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
2017-04-26 20:11:54 +03:00
|
|
|
title: 'FEATURES',
|
2017-04-21 17:23:44 +03:00
|
|
|
group: true,
|
2017-04-14 18:28:27 +03:00
|
|
|
},
|
|
|
|
|
{
|
2017-04-18 15:27:37 +03:00
|
|
|
title: 'UI Features',
|
|
|
|
|
icon: 'ion ion-ios-keypad-outline',
|
2017-04-21 17:23:44 +03:00
|
|
|
link: '/pages/ui-features',
|
2017-04-17 19:01:47 +03:00
|
|
|
},
|
|
|
|
|
{
|
2017-04-18 15:27:37 +03:00
|
|
|
title: 'Components',
|
|
|
|
|
icon: 'ion ion-ios-gear-outline',
|
2017-04-21 17:23:44 +03:00
|
|
|
link: '/pages/components',
|
2017-04-17 19:01:47 +03:00
|
|
|
},
|
|
|
|
|
{
|
2017-04-18 15:27:37 +03:00
|
|
|
title: 'Maps',
|
|
|
|
|
icon: 'ion ion-ios-location-outline',
|
2017-04-21 17:23:44 +03:00
|
|
|
link: '/pages/maps',
|
|
|
|
|
},
|
2017-04-29 13:40:27 +03:00
|
|
|
{
|
|
|
|
|
title: 'Charts',
|
|
|
|
|
icon: 'ion ion-arrow-graph-up-right',
|
|
|
|
|
link: '/pages/charts',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Editors',
|
|
|
|
|
icon: 'ion ion-edit',
|
|
|
|
|
link: '/pages/editors',
|
|
|
|
|
children: List([
|
|
|
|
|
{
|
|
|
|
|
title: 'TinyMCE',
|
|
|
|
|
link: '/pages/editors/tinymce',
|
|
|
|
|
},
|
|
|
|
|
]),
|
|
|
|
|
},
|
2017-04-14 18:28:27 +03:00
|
|
|
]);
|