This commit is contained in:
rgrgogu
2026-05-14 12:59:31 +08:00
parent 6e98ff0b5d
commit dcf5f43fd5
38 changed files with 2174 additions and 382 deletions
+20 -23
View File
@@ -1,35 +1,32 @@
import { Users, GitFork } from "lucide-react";
// data/adminTiles.data.js
export const USER_MANAGEMENT = [
import { Users, GitFork, FolderOpen } from "lucide-react";
export const ADMIN_SECTIONS = [
{
id: "section-users",
tab: "User Management",
title: "User Management",
description: "Manage people across different systems",
tiles: [
{ key: "users", label: "Users", icon: Users, link: "all" },
{ key: "user-groups", label: "User Groups", icon: GitFork, link: "groups" },
{ key: "users", label: "Users", icon: Users, link: "/admin/users" },
{ key: "user-groups", label: "User Groups", icon: GitFork, link: "/admin/groups" },
],
},
{
id: "section-assets",
tab: "Asset Management",
title: "Asset Management",
description: "Manage people across different systems",
description: "Upload images, documents and videos",
tiles: [
{ key: "users", label: "Assets", icon: Users, link: "all" },
{ key: "user-groups", label: "User Groups", icon: GitFork, link: "groups" },
{ key: "assets", label: "Assets", icon: FolderOpen, link: "/admin/assets" },
],
},
]
export const CONTENT_MANAGEMENT = [
// {
// title: "User Management",
// description: "Manage people with their account permissions here.",
// tiles: [
// { key: "users", label: "Users", icon: Users, link: "all" },
// { key: "user-groups", label: "User Groups", icon: GitFork, link: "groups" },
// ],
// },
]
export const SITE_CONTENT = [
]
{
id: "section-site",
tab: "Site Content",
title: "Site Content",
description: "Manage public-facing content",
tiles: [],
},
];