mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 07:36:41 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
147d6ed7f2
commit
124f70528b
1 changed files with 3 additions and 3 deletions
|
|
@ -58,7 +58,7 @@ export const Route = createFileRoute("/painel")({
|
|||
});
|
||||
|
||||
interface NavItem {
|
||||
to: "/painel" | "/painel/faturamento" | "/painel/configuracoes";
|
||||
to: "/painel" | "/painel/agente" | "/painel/skills" | "/painel/faturamento" | "/painel/configuracoes";
|
||||
label: string;
|
||||
icon: React.ComponentType<{ className?: string }>;
|
||||
disabled?: boolean;
|
||||
|
|
@ -73,8 +73,8 @@ interface DisabledNavItem {
|
|||
|
||||
const NAV: (NavItem | DisabledNavItem)[] = [
|
||||
{ to: "/painel", label: "Dashboard", icon: Home },
|
||||
{ to: null, label: "Meu Agente", icon: Bot, disabled: true },
|
||||
{ to: null, label: "Skills", icon: Sparkles, disabled: true },
|
||||
{ to: "/painel/agente", label: "Meu Agente", icon: Bot },
|
||||
{ to: "/painel/skills", label: "Skills", icon: Sparkles },
|
||||
{ to: null, label: "Integrações", icon: Plug, disabled: true },
|
||||
{ to: "/painel/faturamento", label: "Faturamento", icon: CreditCard },
|
||||
{ to: "/painel/configuracoes", label: "Configurações", icon: Settings },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue