Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-07-11 12:12:40 +08:00
parent 01a2c63b06
commit 71f758fe0b
66 changed files with 3055 additions and 939 deletions
+14 -13
View File
@@ -1,4 +1,4 @@
import { Users, GitFork, FolderOpen, BookText, BookCheck, FileText, ListCheck, ShieldCheck, Megaphone, Bell, Trophy } from "lucide-react";
import { Users, GitFork, FolderOpen, BookText, BookCheck, FileText, ListCheck, ShieldCheck, Megaphone, Bell, Trophy, Cog } from "lucide-react";
export const ADMIN_SECTIONS = [
{
@@ -18,18 +18,10 @@ export const ADMIN_SECTIONS = [
title: "Resource Management",
description: "It includes assets management and tier plans.",
tiles: [
{ key: "resources", label: "Resources", icon: FolderOpen, link: "/admin/resources" },
{ key: "assets", label: "Assets", icon: FolderOpen, link: "/admin/assets" },
{ key: "tiers", label: "Tier Plans", icon: ShieldCheck, link: "/admin/tiers/plans" },
],
},
// {
// id: "section-assets",
// tab: "Resource Management",
// title: "Resource Management",
// description: "It includes assets management and tier plans.",
// tiles: [
// { key: "assets", label: "Resources", icon: FolderOpen, link: "/admin/assets" },
// ],
// },
{
id: "section-courses",
tab: "Content Management",
@@ -40,7 +32,7 @@ export const ADMIN_SECTIONS = [
{ key: "units", label: "Units", icon: BookCheck, link: "/admin/units" },
{ key: "lessons", label: "Lessons", icon: FileText, link: "/admin/lessons" },
{ key: "tasks", label: "Tasks", icon: ListCheck, link: "/admin/taskList" },
// { key: "tiers", label: "Tier Plans", icon: ShieldCheck, link: "/admin/tiers/plans" },
],
},
{
@@ -50,8 +42,17 @@ export const ADMIN_SECTIONS = [
description: "Manage public-facing content",
tiles: [
{ key: "advertisements", label: "Advertisements", icon: Megaphone, link: "/admin/advertisements" },
{ key: "notifications", label: "Announcements", icon: Bell, link: "/admin/notifications" },
{ key: "notifications", label: "Announcements", icon: Bell, link: "/admin/announcements" },
{ key: "achievements", label: "Achievements", icon: Trophy, link: "/admin/achievements" },
],
},
{
id: "section-system",
tab: "System",
title: "System",
description: "Background jobs and automation",
tiles: [
{ key: "jobs", label: "Jobs", icon: Cog, link: "/admin/jobs" },
],
},
];