mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
43 lines
725 B
TypeScript
43 lines
725 B
TypeScript
import { NbMenuItem } from "@nebular/theme";
|
|
|
|
export const MENU_ITEMS: NbMenuItem[] = [
|
|
{
|
|
title: "Home",
|
|
icon: "home-outline",
|
|
link: "/pages/dashboard",
|
|
home: true,
|
|
hidden: true,
|
|
},
|
|
{
|
|
title: "FEATURES",
|
|
group: true,
|
|
},
|
|
{
|
|
title: "Create",
|
|
icon: "layout-outline",
|
|
children: [
|
|
{
|
|
title: "Resume",
|
|
link: "/pages/layout/stepper/profile",
|
|
},
|
|
{
|
|
title: "Cover Letter",
|
|
link: "",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "AI",
|
|
icon: "keypad-outline",
|
|
children: [
|
|
{
|
|
title: "AI Resume",
|
|
link: "/pages/forms/ai-resume",
|
|
},
|
|
{
|
|
title: "AI Cover Letter",
|
|
link: "",
|
|
},
|
|
],
|
|
},
|
|
];
|