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[] = [
|
|
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'Dashboard',
|
2019-07-02 16:18:09 +03:00
|
|
|
icon: 'home-outline',
|
2018-08-08 16:45:31 +03:00
|
|
|
link: '/pages/iot-dashboard',
|
|
|
|
|
},
|
2017-09-06 16:18:17 +03:00
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'Detection List',
|
|
|
|
|
icon: 'list-outline',
|
|
|
|
|
link: '',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'Report',
|
|
|
|
|
group: true,
|
2018-11-19 16:57:35 +02:00
|
|
|
},
|
|
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'SERP & Keywords',
|
|
|
|
|
icon: 'file-text-outline',
|
|
|
|
|
link: '',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'Crawler Status',
|
|
|
|
|
icon: 'file-text-outline',
|
|
|
|
|
link: '',
|
2018-11-19 16:57:35 +02:00
|
|
|
},
|
|
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'Scoring Analysis',
|
|
|
|
|
icon: 'file-text-outline',
|
|
|
|
|
link: '',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'Settings',
|
|
|
|
|
group: true,
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'Keywords Dictionary',
|
|
|
|
|
icon: 'book-outline',
|
|
|
|
|
link: '',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'Image Similarity',
|
|
|
|
|
icon: 'image-outline',
|
|
|
|
|
link: '/pages/ui-features/icons',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'SERP',
|
|
|
|
|
icon: 'settings-2-outline',
|
|
|
|
|
link: '/pages/ui-features/icons',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
2018-05-07 05:07:14 -04:00
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'Crawler',
|
|
|
|
|
icon: 'settings-2-outline',
|
|
|
|
|
link: '/pages/ui-features/icons',
|
2018-05-07 05:07:14 -04:00
|
|
|
},
|
2017-09-06 16:18:17 +03:00
|
|
|
{
|
2023-02-03 15:39:10 +08:00
|
|
|
title: 'Api Account',
|
|
|
|
|
icon: 'people-outline',
|
|
|
|
|
link: '/pages/ui-features/icons',
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
];
|