Enhance AppShell and Sidebar components with new navigation for components

Updated the AppShell component to include new pages for models, knowledge, and tools under the components section. Refactored the Sidebar to introduce a dedicated section for these components, improving navigation structure and user experience. Added new placeholder pages for ComponentsModelsPage, ComponentsKnowledgePage, and ComponentsToolsPage, each with relevant titles and descriptions.
This commit is contained in:
Xin Wang
2026-06-05 16:30:05 +08:00
parent 75a25be339
commit 64706b61d5
5 changed files with 91 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
import { PlaceholderPage } from "./PlaceholderPage";
export function ComponentsModelsPage() {
return (
<PlaceholderPage
label="资源管理"
title="模型资源"
description="统一管理大语言模型、语音识别、声音资源、知识库与工具插件。"
/>
);
}