28 lines
694 B
TypeScript
28 lines
694 B
TypeScript
![]() |
import { AcademicCapIcon, BookOpenIcon, Cog6ToothIcon, VideoCameraIcon } from '@heroicons/react/24/outline';
|
||
|
import { NavItem } from '@nicestack/client';
|
||
|
|
||
|
export const DEFAULT_NAV_ITEMS: (NavItem & { isCompleted?: boolean })[] = [
|
||
|
{
|
||
|
|
||
|
label: "课程概述",
|
||
|
icon: <BookOpenIcon className="w-5 h-5" />,
|
||
|
path: "/manage/overview"
|
||
|
},
|
||
|
{
|
||
|
|
||
|
label: "目标学员",
|
||
|
icon: <AcademicCapIcon className="w-5 h-5" />,
|
||
|
path: "/manage/overview"
|
||
|
},
|
||
|
{
|
||
|
|
||
|
label: "课程内容",
|
||
|
icon: <VideoCameraIcon className="w-5 h-5" />,
|
||
|
path: "/manage/content"
|
||
|
},
|
||
|
{
|
||
|
label: "课程设置",
|
||
|
icon: <Cog6ToothIcon className="w-5 h-5" />,
|
||
|
path: "/manage/settings"
|
||
|
},
|
||
|
];
|