fix: 將星星標記說明移至分析結果頁面

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
鄭沛軒 2025-09-24 02:17:20 +08:00
parent 55ad563fd2
commit 650a19c998
1 changed files with 12 additions and 12 deletions

View File

@ -247,18 +247,7 @@ function GenerateContent() {
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8"> <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
{!showAnalysisView ? ( {!showAnalysisView ? (
<div className="max-w-4xl mx-auto"> <div className="max-w-4xl mx-auto">
<h1 className="text-3xl font-bold mb-4">AI </h1> <h1 className="text-3xl font-bold mb-8">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>
{/* Content Input */} {/* Content Input */}
<div className="bg-white rounded-xl shadow-sm p-4 sm:p-6 mb-6"> <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="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>
{/* 移除冗餘標題,直接進入內容 */} {/* 移除冗餘標題,直接進入內容 */}
{/* 語法修正面板 - 如果需要的話 */} {/* 語法修正面板 - 如果需要的話 */}