import { COMMON_CSS } from "./CommonStyles.ts"; export const AdminLayout = ({ children, title, currentPath, }: { children: any; title: string; currentPath: string; }) => { const adminNavItems = [ { label: "Users", href: "/admin/users" }, { label: "Applications", href: "/admin/apps" }, { label: "Roles", href: "/admin/roles" }, { label: "Invite Tokens", href: "/admin/invites" }, { label: "AAGUID Allow-List", href: "/admin/aaguid" }, { label: "Audit Logs", href: "/admin/audit-logs" }, ]; return ( {title} - Auth-Yes Admin
{/* Top Header */}
Auth-Yes Admin
← User Hub Logout
{/* Sub-Nav Scroller */} {/* Main Content */}
{children}
); };