import { NavItem } from '@nicestack/client';
import {
HomeIcon,
BookOpenIcon,
UserGroupIcon,
Cog6ToothIcon,
BellIcon,
HeartIcon,
AcademicCapIcon
} from '@heroicons/react/24/outline';
export const navItems: NavItem[] = [
{ icon: , label: '探索', path: '/' },
{ icon: , label: '我的课程', path: '/courses' },
{ icon: , label: '学习社区', path: '/community' },
{ icon: , label: '应用设置', path: '/settings' },
];
export const notificationItems = [
{
icon: ,
title: "New Course Available",
description: "Advanced TypeScript Programming is now available",
time: "2 hours ago",
isUnread: true,
},
{
icon: ,
title: "Course Recommendation",
description: "Based on your interests: React Native Development",
time: "1 day ago",
isUnread: true,
},
{
icon: ,
title: "Certificate Ready",
description: "Your React Fundamentals certificate is ready to download",
time: "2 days ago",
isUnread: true,
},
];