From 124f70528bddc54880131d0918f639343ef62e26 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 18:52:20 +0000 Subject: [PATCH] Changes Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com> --- src/routes/painel.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/painel.tsx b/src/routes/painel.tsx index f595c50..3dcbac1 100644 --- a/src/routes/painel.tsx +++ b/src/routes/painel.tsx @@ -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 },