mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-19 03:16:40 +00:00
Add member portal functionality - extracted from feature/member-landing-page
This commit is contained in:
@@ -12,15 +12,31 @@ import {
|
||||
KeyRound,
|
||||
TicketCheck,
|
||||
User,
|
||||
Globe,
|
||||
MonitorUp
|
||||
Globe, // Added from 'dev' branch
|
||||
MonitorUp // Added from 'dev' branch
|
||||
} from "lucide-react";
|
||||
|
||||
export type SidebarNavSection = {
|
||||
export type SidebarNavSection = { // Added from 'dev' branch
|
||||
heading: string;
|
||||
items: SidebarNavItem[];
|
||||
};
|
||||
|
||||
// Merged from 'user-management-and-resources' branch
|
||||
export const orgLangingNavItems: SidebarNavItem[] = [
|
||||
{
|
||||
title: "sidebarAccount",
|
||||
href: "/{orgId}",
|
||||
icon: <User className="h-4 w-4" />,
|
||||
autoExpand: true,
|
||||
children: [
|
||||
{
|
||||
title: "sidebarResources",
|
||||
href: "/{orgId}"
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
export const orgNavSections = (
|
||||
enableClients: boolean = true
|
||||
): SidebarNavSection[] => [
|
||||
@@ -125,4 +141,4 @@ export const adminNavSections: SidebarNavSection[] = [
|
||||
: [])
|
||||
]
|
||||
}
|
||||
];
|
||||
];
|
||||
Reference in New Issue
Block a user