mirror of
https://github.com/rgrgogu/new_starr.git
synced 2026-09-27 00:12:54 +08:00
27 lines
789 B
JavaScript
27 lines
789 B
JavaScript
import { Users, GitFork } from "lucide-react";
|
|
|
|
export const 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" },
|
|
],
|
|
},
|
|
]
|
|
|
|
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 = [
|
|
|
|
] |