2024-12-31 15:57:32 +08:00
|
|
|
import { AcademicCapIcon, BookOpenIcon, Cog6ToothIcon, VideoCameraIcon } from '@heroicons/react/24/outline';
|
2025-01-06 08:45:23 +08:00
|
|
|
import { NavItem } from '@nice/client';
|
2024-12-31 15:57:32 +08:00
|
|
|
|
|
|
|
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"
|
|
|
|
},
|
|
|
|
];
|