feat: 更新導航欄指向新的複習頁面結構

- Navigation.tsx: 將複習連結從 /review-simple 更新為 /review
- Dashboard.tsx: 更新「開始今日複習」按鈕指向新的 /review 頁面
- 確保用戶界面統一指向正式複習頁面

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
鄭沛軒 2025-10-07 01:06:15 +08:00
parent 8e96b07d71
commit a8562c3d48
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ function DashboardContent() {
<p className="text-gray-600"> {stats.todayReview} </p>
<div className="mt-4 flex gap-3">
<Link
href="/review-simple"
href="/review"
className="bg-primary text-white px-6 py-2 rounded-lg font-medium hover:bg-primary-hover transition-colors"
>

View File

@ -18,7 +18,7 @@ export function Navigation({ showExitLearning = false, onExitLearning }: Navigat
const navItems = [
{ href: '/dashboard', label: '儀表板' },
{ href: '/flashcards', label: '詞卡' },
{ href: '/review-simple', label: '複習' },
{ href: '/review', label: '複習' },
{ href: '/generate', label: 'AI 生成' },
{ href: '/settings', label: '⚙️ 設定' }
]