feat: change deck edit style and add agent

This commit is contained in:
2024-09-28 02:52:56 +08:00
parent 2e55d718a8
commit fa055d15cc
14 changed files with 620 additions and 33 deletions

View File

@@ -6,7 +6,7 @@ import { App as PublishApp } from './pages/publish';
import { App as CodeEditorApp } from './pages/code-editor';
import { App as MapApp } from './pages/map';
import { App as PromptApp } from './pages/prompt';
import { App as AiAgentApp } from './pages/ai-agent';
import '@abearxiong/container/dist/container.css';
export const App = () => {
@@ -25,6 +25,7 @@ export const App = () => {
<Route path='/code-editor' element={<CodeEditorApp />} />
<Route path='/map/*' element={<MapApp />} />
<Route path='/prompt/*' element={<PromptApp />} />
<Route path='/agent/*' element={<AiAgentApp />} />
<Route path='/404' element={<div>404</div>} />
<Route path='*' element={<div>404</div>} />
</Routes>