feat: 更新声音克隆工具路由配置

- 将 /tools/voice-clone 路由从 VoiceCloneTool 改为 VoiceGenerationHistory
- 统一声音克隆和语音生成功能入口
- VoiceGenerationHistory 页面已集成 VoiceCloneModal 和 SpeechGenerationModal
- 提供更好的用户体验和功能整合
This commit is contained in:
imeepos 2025-07-31 18:10:38 +08:00
parent ca9eb1e12e
commit 31892c1640
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ function App() {
<Route path="/tools/image-generation" element={<ImageGenerationTool />} />
<Route path="/tools/image-editing" element={<ImageEditingTool />} />
<Route path="/tools/voice-generation-history" element={<VoiceGenerationHistory />} />
<Route path="/tools/voice-clone" element={<VoiceCloneTool />} />
<Route path="/tools/voice-clone" element={<VoiceGenerationHistory />} />
<Route path="/tools/volcano-video-generation" element={<VideoGenerationTool />} />
<Route path="/tools/advanced-filter-demo" element={<AdvancedFilterTool />} />
<Route path="/tools/enriched-analysis-demo" element={<EnrichedAnalysisDemo />} />