export const AdminLayout = ({ children, title, currentPath, }: { children: any; title: string; currentPath: string; }) => { const navItems = [ { label: "← User Dashboard", href: "/dashboard" }, { 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 (