mirror of
https://github.com/rgrgogu/new_starr.git
synced 2026-09-27 00:12:54 +08:00
Adjusted
This commit is contained in:
+20
-23
@@ -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: [],
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user