2017-08-01 17:42:21 +03:00
|
|
|
import { NbMenuItem } from '@nebular/theme';
|
2017-04-14 18:28:27 +03:00
|
|
|
|
2017-09-06 16:18:17 +03:00
|
|
|
export const MENU_ITEMS: NbMenuItem[] = [
|
|
|
|
|
{
|
2024-03-15 16:12:58 -07:00
|
|
|
title: 'Home',
|
|
|
|
|
icon: 'home-outline',
|
2017-09-06 16:18:17 +03:00
|
|
|
link: '/pages/dashboard',
|
|
|
|
|
home: true,
|
2024-03-15 16:12:58 -07:00
|
|
|
hidden: true
|
2018-08-08 16:45:31 +03:00
|
|
|
},
|
2017-09-06 16:18:17 +03:00
|
|
|
{
|
|
|
|
|
title: 'FEATURES',
|
|
|
|
|
group: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
2019-07-02 16:18:09 +03:00
|
|
|
title: 'Layout',
|
|
|
|
|
icon: 'layout-outline',
|
2017-09-06 16:18:17 +03:00
|
|
|
children: [
|
|
|
|
|
{
|
2018-11-19 16:57:35 +02:00
|
|
|
title: 'Stepper',
|
2019-07-02 16:18:09 +03:00
|
|
|
link: '/pages/layout/stepper',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
2018-11-19 16:57:35 +02:00
|
|
|
title: 'List',
|
2019-07-02 16:18:09 +03:00
|
|
|
link: '/pages/layout/list',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
2018-11-19 16:57:35 +02:00
|
|
|
title: 'Infinite List',
|
2019-07-02 16:18:09 +03:00
|
|
|
link: '/pages/layout/infinite-list',
|
2019-04-01 10:08:43 -04:00
|
|
|
},
|
2018-02-22 20:13:23 +03:00
|
|
|
{
|
2018-11-19 16:57:35 +02:00
|
|
|
title: 'Accordion',
|
2019-07-02 16:18:09 +03:00
|
|
|
link: '/pages/layout/accordion',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Tabs',
|
2019-07-02 16:18:09 +03:00
|
|
|
pathMatch: 'prefix',
|
|
|
|
|
link: '/pages/layout/tabs',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Forms',
|
2019-07-02 16:18:09 +03:00
|
|
|
icon: 'edit-2-outline',
|
2017-09-06 16:18:17 +03:00
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
title: 'Form Inputs',
|
|
|
|
|
link: '/pages/forms/inputs',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Form Layouts',
|
|
|
|
|
link: '/pages/forms/layouts',
|
|
|
|
|
},
|
2018-11-19 16:57:35 +02:00
|
|
|
{
|
|
|
|
|
title: 'Buttons',
|
|
|
|
|
link: '/pages/forms/buttons',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Datepicker',
|
|
|
|
|
link: '/pages/forms/datepicker',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'UI Features',
|
2019-07-02 16:18:09 +03:00
|
|
|
icon: 'keypad-outline',
|
2018-11-19 16:57:35 +02:00
|
|
|
link: '/pages/ui-features',
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
title: 'Grid',
|
|
|
|
|
link: '/pages/ui-features/grid',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Icons',
|
|
|
|
|
link: '/pages/ui-features/icons',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Typography',
|
|
|
|
|
link: '/pages/ui-features/typography',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Animated Searches',
|
|
|
|
|
link: '/pages/ui-features/search-fields',
|
|
|
|
|
},
|
2017-09-06 16:18:17 +03:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
2018-11-19 16:57:35 +02:00
|
|
|
title: 'Modal & Overlays',
|
2019-07-02 16:18:09 +03:00
|
|
|
icon: 'browser-outline',
|
2018-11-19 16:57:35 +02:00
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
title: 'Dialog',
|
|
|
|
|
link: '/pages/modal-overlays/dialog',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Window',
|
|
|
|
|
link: '/pages/modal-overlays/window',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Popover',
|
|
|
|
|
link: '/pages/modal-overlays/popover',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Toastr',
|
|
|
|
|
link: '/pages/modal-overlays/toastr',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Tooltip',
|
|
|
|
|
link: '/pages/modal-overlays/tooltip',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
2019-07-02 16:18:09 +03:00
|
|
|
title: 'Extra Components',
|
|
|
|
|
icon: 'message-circle-outline',
|
2017-09-06 16:18:17 +03:00
|
|
|
children: [
|
|
|
|
|
{
|
2019-07-02 16:18:09 +03:00
|
|
|
title: 'Calendar',
|
|
|
|
|
link: '/pages/extra-components/calendar',
|
2018-11-19 16:57:35 +02:00
|
|
|
},
|
|
|
|
|
{
|
2019-07-02 16:18:09 +03:00
|
|
|
title: 'Progress Bar',
|
|
|
|
|
link: '/pages/extra-components/progress-bar',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Spinner',
|
|
|
|
|
link: '/pages/extra-components/spinner',
|
2018-11-19 16:57:35 +02:00
|
|
|
},
|
|
|
|
|
{
|
2019-07-02 16:18:09 +03:00
|
|
|
title: 'Alert',
|
|
|
|
|
link: '/pages/extra-components/alert',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Calendar Kit',
|
|
|
|
|
link: '/pages/extra-components/calendar-kit',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Chat',
|
|
|
|
|
link: '/pages/extra-components/chat',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2024-03-15 16:12:58 -07:00
|
|
|
|
2018-05-07 05:07:14 -04:00
|
|
|
{
|
|
|
|
|
title: 'Miscellaneous',
|
2019-07-02 16:18:09 +03:00
|
|
|
icon: 'shuffle-2-outline',
|
2018-05-07 05:07:14 -04:00
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
title: '404',
|
|
|
|
|
link: '/pages/miscellaneous/404',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2017-09-06 16:18:17 +03:00
|
|
|
{
|
|
|
|
|
title: 'Auth',
|
2019-07-02 16:18:09 +03:00
|
|
|
icon: 'lock-outline',
|
2017-09-06 16:18:17 +03:00
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
title: 'Login',
|
|
|
|
|
link: '/auth/login',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Register',
|
|
|
|
|
link: '/auth/register',
|
|
|
|
|
},
|
2024-03-15 16:12:58 -07:00
|
|
|
|
2017-09-06 16:18:17 +03:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
];
|