🚧WIP: Separate user & machine clients

This commit is contained in:
Fred KISSIE
2025-12-02 03:14:02 +01:00
parent 342bedc012
commit 45a82f3ecc
5 changed files with 205 additions and 71 deletions

View File

@@ -18,7 +18,8 @@ import {
Logs,
SquareMousePointer,
ScanEye,
GlobeLock
GlobeLock,
Smartphone
} from "lucide-react";
export type SidebarNavSection = {
@@ -73,9 +74,22 @@ export const orgNavSections = (
? [
{
title: "sidebarClients",
href: "/{orgId}/settings/clients",
icon: <MonitorUp className="size-4 flex-none" />,
isBeta: true
isBeta: true,
items: [
{
href: "/{orgId}/settings/clients/user",
title: "sidebarUserDevices",
icon: (
<Smartphone className="size-4 flex-none" />
)
},
{
href: "/{orgId}/settings/clients/machine",
title: "sidebarMachineClients",
icon: <Server className="size-4 flex-none" />
}
]
}
]
: []),