feat(整合): 新增更新时间轴浏览页面与顶部快捷入口

- 创建 src/data/changelog.json 数据文件
- 添加 ChangelogType 和 ChangelogEntry 类型定义
- 实现更新时间轴页面组件,支持按时间倒序展示
- 添加 /changelog 主路由和 /updates 别名路由
- 在顶部导航右侧添加 History 图标入口,支持激活态高亮
- 使用 Framer Motion 实现渐进式动画效果
- 支持深色模式和响应式布局

via [HAPI](https://hapi.run)

Co-Authored-By: HAPI <noreply@hapi.run>
This commit is contained in:
ittoview
2026-03-08 03:13:33 +00:00
parent 9f43f1e0e8
commit 8a02139c85
7 changed files with 190 additions and 3 deletions

11
src/data/changelog.json Normal file
View File

@@ -0,0 +1,11 @@
{
"changelogEntries": [
{
"id": "2026-03-08-changelog-page",
"date": "2026-03-08",
"type": "feat",
"title": "新增更新时间轴浏览页面与顶部快捷入口",
"scope": "整合"
}
]
}