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,
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-03-20 22:31:55 -07:00
|
|
|
title: 'Create',
|
2019-07-02 16:18:09 +03:00
|
|
|
icon: 'layout-outline',
|
2017-09-06 16:18:17 +03:00
|
|
|
children: [
|
|
|
|
|
{
|
2024-03-20 22:31:55 -07:00
|
|
|
title: 'Resume',
|
2019-07-02 16:18:09 +03:00
|
|
|
link: '/pages/layout/stepper',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
2024-03-20 22:31:55 -07:00
|
|
|
title: 'Cover Letter',
|
|
|
|
|
link: '',
|
|
|
|
|
}
|
2017-09-06 16:18:17 +03:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-03-20 22:31:55 -07:00
|
|
|
title: 'AI',
|
2019-07-02 16:18:09 +03:00
|
|
|
icon: 'keypad-outline',
|
2017-09-06 16:18:17 +03:00
|
|
|
children: [
|
|
|
|
|
{
|
2024-03-20 22:31:55 -07:00
|
|
|
title: 'AI Resume',
|
|
|
|
|
link: '',
|
2019-07-02 16:18:09 +03:00
|
|
|
},
|
|
|
|
|
{
|
2024-03-20 22:31:55 -07:00
|
|
|
title: 'AI Cover Letter',
|
|
|
|
|
link: '',
|
|
|
|
|
}
|
2017-09-06 16:18:17 +03:00
|
|
|
],
|
|
|
|
|
},
|
2024-03-20 22:31:55 -07:00
|
|
|
|
2017-09-06 16:18:17 +03:00
|
|
|
];
|