首页新增 what‘s new 入口,维护一个 changelog 文档

This commit is contained in:
eafonyang
2026-08-06 14:39:39 +08:00
parent 93c2cb7681
commit 4a67622d9b
10 changed files with 128 additions and 6 deletions
+2
View File
@@ -17,6 +17,7 @@ import IOPage from "./pages/IOPage";
import VUPage from "./pages/VUPage";
import SelectPage from "./pages/SelectPage";
import CommunityPage from "./pages/CommunityPage";
import ChangelogPage from "./pages/ChangelogPage";
import { AIDrawerProvider } from "./contexts/AIDrawerContext";
import DesktopAIShell from "./components/DesktopAIShell";
import { appShellColumnClass, appShellOuterClass } from "./lib/appShell";
@@ -68,6 +69,7 @@ function AppRouter() {
<Route path="/select" component={SelectPage} />
<Route path="/ai" component={AIPageRoute} />
<Route path="/community" component={CommunityPage} />
<Route path="/changelog" component={ChangelogPage} />
<Route path="/404" component={NotFound} />
<Route component={NotFound} />
</Switch>