feat: add layout and org

This commit is contained in:
2024-10-08 02:44:11 +08:00
parent fd99875461
commit ec5c64d03a
21 changed files with 962 additions and 130 deletions

View File

@@ -12,6 +12,7 @@ import { App as ChatApp } from './pages/chat-manager';
import { App as GitHubApp } from './pages/github';
import { App as UserAppApp } from './pages/app';
import { App as FileApp } from './pages/file';
import { App as OrgApp } from './pages/org';
import '@abearxiong/container/dist/container.css';
@@ -33,6 +34,7 @@ export const App = () => {
<Route path='/prompt/*' element={<PromptApp />} />
<Route path='/agent/*' element={<AiAgentApp />} />
<Route path='/user/*' element={<UserApp />} />
<Route path='/org/*' element={<OrgApp />} />
<Route path='/chat/*' element={<ChatApp />} />
<Route path='/github/*' element={<GitHubApp />} />
<Route path='/app/*' element={<UserAppApp />} />