fix: 將星星標記說明移至分析結果頁面
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
55ad563fd2
commit
650a19c998
|
|
@ -247,18 +247,7 @@ function GenerateContent() {
|
|||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
||||
{!showAnalysisView ? (
|
||||
<div className="max-w-4xl mx-auto">
|
||||
<h1 className="text-3xl font-bold mb-4">AI 智能生成詞卡</h1>
|
||||
|
||||
{/* 星星標記說明 */}
|
||||
<div className="bg-blue-50 border border-blue-200 rounded-lg p-4 mb-6">
|
||||
<div className="flex items-center gap-2 text-sm text-blue-800">
|
||||
<span className="text-yellow-500 text-lg">⭐</span>
|
||||
<span className="font-medium">星星標記說明:</span>
|
||||
標有星星的詞彙和慣用語代表
|
||||
<strong className="text-blue-900">常用、高頻詞彙</strong>
|
||||
,建議優先學習!
|
||||
</div>
|
||||
</div>
|
||||
<h1 className="text-3xl font-bold mb-8">AI 智能生成詞卡</h1>
|
||||
|
||||
{/* Content Input */}
|
||||
<div className="bg-white rounded-xl shadow-sm p-4 sm:p-6 mb-6">
|
||||
|
|
@ -340,6 +329,17 @@ function GenerateContent() {
|
|||
) : (
|
||||
/* 重新設計的句子分析視圖 - 簡潔流暢 */
|
||||
<div className="max-w-4xl mx-auto">
|
||||
{/* 星星標記說明 */}
|
||||
<div className="bg-yellow-50 border border-yellow-200 rounded-lg p-3 mb-6">
|
||||
<div className="flex items-center gap-2 text-sm text-yellow-800">
|
||||
<span className="text-yellow-500 text-base">⭐</span>
|
||||
<span className="font-medium">重點提示:</span>
|
||||
標有星星的詞彙和慣用語是
|
||||
<strong className="text-yellow-900">常用、高頻詞彙</strong>
|
||||
,建議優先學習和保存到詞卡庫!
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* 移除冗餘標題,直接進入內容 */}
|
||||
|
||||
{/* 語法修正面板 - 如果需要的話 */}
|
||||
|
|
|
|||
Loading…
Reference in New Issue