2024-03-23 21:17:28 -07: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-23 21:17:28 -07:00
|
|
|
title: "Home",
|
|
|
|
|
icon: "home-outline",
|
|
|
|
|
link: "/pages/dashboard",
|
2017-09-06 16:18:17 +03:00
|
|
|
home: true,
|
2024-03-23 21:17:28 -07:00
|
|
|
hidden: true,
|
2018-08-08 16:45:31 +03:00
|
|
|
},
|
2017-09-06 16:18:17 +03:00
|
|
|
{
|
2024-03-23 21:17:28 -07:00
|
|
|
title: "FEATURES",
|
2017-09-06 16:18:17 +03:00
|
|
|
group: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-03-23 21:17:28 -07:00
|
|
|
title: "Create",
|
|
|
|
|
icon: "layout-outline",
|
2017-09-06 16:18:17 +03:00
|
|
|
children: [
|
|
|
|
|
{
|
2024-03-23 21:17:28 -07:00
|
|
|
title: "Resume",
|
|
|
|
|
link: "/pages/layout/stepper/profile",
|
2017-09-06 16:18:17 +03:00
|
|
|
},
|
|
|
|
|
{
|
2024-03-23 21:17:28 -07:00
|
|
|
title: "Cover Letter",
|
|
|
|
|
link: "",
|
|
|
|
|
},
|
2017-09-06 16:18:17 +03:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-03-23 21:17:28 -07:00
|
|
|
title: "AI",
|
|
|
|
|
icon: "keypad-outline",
|
2017-09-06 16:18:17 +03:00
|
|
|
children: [
|
|
|
|
|
{
|
2024-03-23 21:17:28 -07:00
|
|
|
title: "AI Resume",
|
|
|
|
|
link: "/pages/forms/ai-resume",
|
2019-07-02 16:18:09 +03:00
|
|
|
},
|
|
|
|
|
{
|
2024-03-23 21:17:28 -07:00
|
|
|
title: "AI Cover Letter",
|
|
|
|
|
link: "",
|
|
|
|
|
},
|
2017-09-06 16:18:17 +03:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
];
|