This commit is contained in:
2026-07-20 12:00:32 +08:00
parent 2c7fd6b7f9
commit 443a9feaac
3 changed files with 11 additions and 11 deletions

View File

@@ -19,7 +19,6 @@ export function ProjectOverview({ onSelectItem }: { onSelectItem: (title: string
<div className="overview-page">
<div className="overview-head">
<div>
<Text type="secondary"></Text>
<Title heading={4}></Title>
</div>
<Space>

View File

@@ -57,6 +57,16 @@ export function ProjectSidebar({
)}
</div>
<Divider />
<section className="tag-cloud">
<Text className="section-title"></Text>
<Space wrap>
{['全部', '需求', '设计', '研发', '运营', 'AI'].map((tag) => (
<Tag key={tag} color={tag === '全部' ? 'arcoblue' : 'gray'}>{tag}</Tag>
))}
</Space>
</section>
<Divider />
<section className="recent-sessions">
<Text className="section-title"></Text>
@@ -68,15 +78,6 @@ export function ProjectSidebar({
))}
</section>
<Divider />
<section className="tag-cloud">
<Text className="section-title"></Text>
<Space wrap>
{['全部', '需求', '设计', '研发', '运营', 'AI'].map((tag) => (
<Tag key={tag} color={tag === '全部' ? 'arcoblue' : 'gray'}>{tag}</Tag>
))}
</Space>
</section>
</Sider>
)
}

View File

@@ -27,8 +27,8 @@ export function WorkspacePage({ onSelectProject }: { onSelectProject: (project:
<div className="workspace-page overview-page">
<div className="overview-head">
<div>
<Text type="secondary"></Text>
<Title heading={4}></Title>
<Text type="secondary"></Text>
</div>
</div>