feat(ui): redesign settings page and update sidebar navigation (#383)

This commit is contained in:
DigHuang
2026-03-10 14:48:54 +08:00
committed by GitHub
Unverified
parent 19b5b2d540
commit d9ae0f3263
6 changed files with 618 additions and 906 deletions

View File

@@ -9,7 +9,6 @@ import { Toaster } from 'sonner';
import i18n from './i18n';
import { MainLayout } from './components/layout/MainLayout';
import { TooltipProvider } from '@/components/ui/tooltip';
import { Dashboard } from './pages/Dashboard';
import { Models } from './pages/Models';
import { Chat } from './pages/Chat';
import { Channels } from './pages/Channels';
@@ -166,7 +165,6 @@ function App() {
<Route element={<MainLayout />}>
<Route path="/" element={<Chat />} />
<Route path="/models" element={<Models />} />
<Route path="/dashboard" element={<Dashboard />} />
<Route path="/channels" element={<Channels />} />
<Route path="/skills" element={<Skills />} />
<Route path="/cron" element={<Cron />} />