ngx-admin/src/app/pages/pages-menu.ts

45 lines
694 B
TypeScript
Raw Normal View History

import { NbMenuItem } from '@nebular/theme';
export const MENU_ITEMS: NbMenuItem[] = [
{
2024-03-15 16:12:58 -07:00
title: 'Home',
icon: 'home-outline',
link: '/pages/dashboard',
home: true,
2024-03-15 16:12:58 -07:00
hidden: true
},
{
title: 'FEATURES',
group: true,
},
{
2024-03-20 22:31:55 -07:00
title: 'Create',
icon: 'layout-outline',
children: [
{
2024-03-20 22:31:55 -07:00
title: 'Resume',
link: '/pages/layout/stepper',
},
{
2024-03-20 22:31:55 -07:00
title: 'Cover Letter',
link: '',
}
],
},
{
2024-03-20 22:31:55 -07:00
title: 'AI',
icon: 'keypad-outline',
children: [
{
2024-03-20 22:31:55 -07:00
title: 'AI Resume',
link: '',
},
{
2024-03-20 22:31:55 -07:00
title: 'AI Cover Letter',
link: '',
}
],
},
2024-03-20 22:31:55 -07:00
];