feat: add github login

This commit is contained in:
2024-10-01 20:30:55 +08:00
parent 7d4e6bd299
commit 6528ee78c6
11 changed files with 213 additions and 25 deletions

View File

@@ -9,6 +9,7 @@ import { App as PromptApp } from './pages/prompt';
import { App as AiAgentApp } from './pages/ai-agent';
import { App as UserApp } from './pages/user';
import { App as ChatApp } from './pages/chat-manager';
import { App as GitHubApp } from './pages/github';
import '@abearxiong/container/dist/container.css';
@@ -31,6 +32,7 @@ export const App = () => {
<Route path='/agent/*' element={<AiAgentApp />} />
<Route path='/user/*' element={<UserApp />} />
<Route path='/chat/*' element={<ChatApp />} />
<Route path='/github/*' element={<GitHubApp />} />
<Route path='/404' element={<div>404</div>} />
<Route path='*' element={<div>404</div>} />
</Routes>