feat(更新页面): 添加版本更新速览分类卡片

在原有VersionCard组件下方添加AboutVersion组件,展示当前版本的更新内容概览
This commit is contained in:
2026-09-05 00:45:05 +08:00
parent e861661a55
commit a11e51d62c
2 changed files with 5 additions and 1 deletions
File diff suppressed because one or more lines are too long
+4
View File
@@ -1,5 +1,6 @@
import { useCallback, useEffect, useState } from "react";
import { VersionCard } from "@/components/VersionCard";
import { AboutVersion } from "@/components/about-version";
import { SectionTitle, SettingCard } from "@/components/setting";
import { Progress } from "@/components/ui/progress";
import { BUILD_MODE } from "@/lib/mode";
@@ -209,6 +210,9 @@ export function UpdatePage() {
<div className="space-y-6">
<VersionCard />
{/* 版本卡片下方:当前版本更新内容速览(分类卡片) */}
<AboutVersion />
<div>
<SectionTitle></SectionTitle>