training_data/apps/web/src/components/models/course/manage/navItems.tsx

31 lines
662 B
TypeScript
Raw Normal View History

2025-01-08 20:29:07 +08:00
import {
AcademicCapIcon,
BookOpenIcon,
Cog6ToothIcon,
VideoCameraIcon,
} from "@heroicons/react/24/outline";
import { NavItem } from "@nice/client";
2024-12-31 15:57:32 +08:00
export const DEFAULT_NAV_ITEMS: (NavItem & { isCompleted?: boolean })[] = [
2025-01-08 20:29:07 +08:00
{
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",
},
];