modulo de agente pessoal de IA

This commit is contained in:
Vitex Tecnologia
2026-01-14 20:10:42 -03:00
parent ee7204982c
commit 76cbd80eef
25 changed files with 3619 additions and 3 deletions
+5 -1
View File
@@ -9,6 +9,7 @@ import NotFound from "./pages/NotFound";
import Redirect from "./pages/Redirect";
import { GlobalFunctions } from "./GlobalFunctions";
import React from "react";
import IntelligenceIAApp from "./modules/intelligence-ia/App";
const queryClient = new QueryClient();
@@ -25,8 +26,11 @@ const App = () => (
element={<Redirect />}
/>
{/* Módulo Intelligence IA como subpath*/}
<Route path="/intelligence-ia/*" element={<IntelligenceIAApp />} />
<Route path="/*" element={<Index />} />
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
<Route path="*" element={<NotFound />} />
<Route path="/404" element={<NotFound />} />
</Routes>