diff --git a/README.md b/README.md
index 88a8eb8..d266417 100644
--- a/README.md
+++ b/README.md
@@ -25,28 +25,11 @@
### Desktop - Dark Mode

-### Desktop - Voice Design List
-
-
-### Desktop - Save Voice Design Dialog
-
-
-### Desktop - Voice Cloning
-
-
-### Mobile - Light & Dark Mode
+### Mobile
 |
-  |
-
-
-
-### Mobile - Settings & History
-
-
 |
-  |
diff --git a/README.zh.md b/README.zh.md
index 57d6f8a..71849ff 100644
--- a/README.zh.md
+++ b/README.zh.md
@@ -25,28 +25,11 @@
### 桌面端 - 暗黑模式

-### 桌面端 - 语音设计列表
-
-
-### 桌面端 - 保存语音设计对话框
-
-
-### 桌面端 - 语音克隆
-
-
-### 移动端 - 亮色与暗黑模式
+### 移动端
 |
-  |
-
-
-
-### 移动端 - 设置与历史记录
-
-
 |
-  |
diff --git a/images/clone-voice-recording.png b/images/clone-voice-recording.png
deleted file mode 100644
index 3d3a6ca..0000000
Binary files a/images/clone-voice-recording.png and /dev/null differ
diff --git a/images/custom-voice-list.png b/images/custom-voice-list.png
deleted file mode 100644
index 2f9cf3c..0000000
Binary files a/images/custom-voice-list.png and /dev/null differ
diff --git a/images/darkmode-chinese.png b/images/darkmode-chinese.png
index 0a4721b..ef77ad3 100644
Binary files a/images/darkmode-chinese.png and b/images/darkmode-chinese.png differ
diff --git a/images/lightmode-english.png b/images/lightmode-english.png
index a2c85bc..8ed5893 100644
Binary files a/images/lightmode-english.png and b/images/lightmode-english.png differ
diff --git a/images/mobile-darkmode-custom.png b/images/mobile-darkmode-custom.png
deleted file mode 100644
index ab38ee3..0000000
Binary files a/images/mobile-darkmode-custom.png and /dev/null differ
diff --git a/images/mobile-history.png b/images/mobile-history.png
deleted file mode 100644
index 942eb2d..0000000
Binary files a/images/mobile-history.png and /dev/null differ
diff --git a/images/mobile-lightmode-custom.png b/images/mobile-lightmode-custom.png
index d8497c1..73efbb4 100644
Binary files a/images/mobile-lightmode-custom.png and b/images/mobile-lightmode-custom.png differ
diff --git a/images/mobile-settings.png b/images/mobile-settings.png
index c98ad9f..f5f039d 100644
Binary files a/images/mobile-settings.png and b/images/mobile-settings.png differ
diff --git a/images/save-voice-design-dialog.png b/images/save-voice-design-dialog.png
deleted file mode 100644
index c1f9fc8..0000000
Binary files a/images/save-voice-design-dialog.png and /dev/null differ
diff --git a/qwen3-tts-frontend/src/components/Navbar.tsx b/qwen3-tts-frontend/src/components/Navbar.tsx
index 6c778ab..304ca4c 100644
--- a/qwen3-tts-frontend/src/components/Navbar.tsx
+++ b/qwen3-tts-frontend/src/components/Navbar.tsx
@@ -1,5 +1,5 @@
-import { Menu, LogOut, Users, Settings, Globe } from 'lucide-react'
-import { Link } from 'react-router-dom'
+import { Menu, LogOut, Users, Settings, Globe, Home } from 'lucide-react'
+import { Link, useLocation } from 'react-router-dom'
import { useTranslation } from 'react-i18next'
import { Button } from '@/components/ui/button'
import {
@@ -20,6 +20,7 @@ export function Navbar({ onToggleSidebar }: NavbarProps) {
const { logout, user } = useAuth()
const { changeLanguage } = useUserPreferences()
const { t, i18n } = useTranslation(['nav', 'constants'])
+ const location = useLocation()
return (