31 lines
662 B
TypeScript
31 lines
662 B
TypeScript
import {
|
|
AcademicCapIcon,
|
|
BookOpenIcon,
|
|
Cog6ToothIcon,
|
|
VideoCameraIcon,
|
|
} from "@heroicons/react/24/outline";
|
|
import { NavItem } from "@nice/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/target",
|
|
},
|
|
{
|
|
label: "课程内容",
|
|
icon: <VideoCameraIcon className="w-5 h-5" />,
|
|
path: "/manage/content",
|
|
},
|
|
{
|
|
label: "课程设置",
|
|
icon: <Cog6ToothIcon className="w-5 h-5" />,
|
|
path: "/manage/settings",
|
|
},
|
|
];
|