feat: 添加聊天功能及相关路由配置和UI组件,并引入 react-icons 依赖。

This commit is contained in:
2026-01-29 22:00:30 +08:00
parent 6087b35ce5
commit 08048ec3b6
6 changed files with 796 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ import Profile from '../pages/Profile';
import GitHubCallback from '../pages/GitHubCallback';
import GiteeCallback from '../pages/GiteeCallback';
import Notifications from '../pages/Notifications';
import Chat from '../pages/Chat';
import Layout from '../components/common/Layout';
import ProtectedRoute from '../components/common/ProtectedRoute';
@@ -53,6 +54,10 @@ export const router = createBrowserRouter([
path: 'home',
element: <Home />,
},
{
path: 'chat',
element: <Chat />,
},
{
path: 'transactions',
element: <Transactions />,