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

63 lines
1.1 KiB
TypeScript
Raw Normal View History

import { NbMenuItem } from '@nebular/theme';
export const MENU_ITEMS: NbMenuItem[] = [
{
2023-02-03 15:39:10 +08:00
title: 'Dashboard',
icon: 'home-outline',
link: '/pages/iot-dashboard',
},
{
2023-02-03 15:39:10 +08:00
title: 'Detection List',
icon: 'list-outline',
link: '',
},
{
2023-02-03 15:39:10 +08:00
title: 'Report',
group: true,
},
{
2023-02-03 15:39:10 +08:00
title: 'SERP & Keywords',
icon: 'file-text-outline',
link: '',
},
{
2023-02-03 15:39:10 +08:00
title: 'Crawler Status',
icon: 'file-text-outline',
link: '',
},
{
2023-02-03 15:39:10 +08:00
title: 'Scoring Analysis',
icon: 'file-text-outline',
link: '',
},
{
2023-02-03 15:39:10 +08:00
title: 'Settings',
group: true,
},
{
2023-02-03 15:39:10 +08:00
title: 'Keywords Dictionary',
icon: 'book-outline',
link: '',
},
{
2023-02-03 15:39:10 +08:00
title: 'Image Similarity',
icon: 'image-outline',
link: '/pages/ui-features/icons',
},
{
2023-02-03 15:39:10 +08:00
title: 'SERP',
icon: 'settings-2-outline',
link: '/pages/ui-features/icons',
},
{
2023-02-03 15:39:10 +08:00
title: 'Crawler',
icon: 'settings-2-outline',
link: '/pages/ui-features/icons',
},
{
2023-02-03 15:39:10 +08:00
title: 'Api Account',
icon: 'people-outline',
link: '/pages/ui-features/icons',
},
];