Skip to content

Commit 2daf112

Browse files
committed
feat: 在首頁新增查看主要 README 的按鈕
- 在快速開始區塊下方新增顯眼的按鈕 - 使用主題色和 hover 效果 - 與場景教學使用相同的 Modal 呈現 - 提供完整教學指南的快速入口
1 parent 574a4d8 commit 2daf112

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

index.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,20 @@
174174
box-shadow: 0 3px 10px rgba(0,0,0,0.2);
175175
}
176176

177+
.btn-primary {
178+
background: #667eea !important;
179+
color: white !important;
180+
padding: 12px 24px !important;
181+
font-size: 1rem !important;
182+
transition: all 0.3s ease;
183+
}
184+
185+
.btn-primary:hover {
186+
background: #5a67d8 !important;
187+
transform: translateY(-2px);
188+
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
189+
}
190+
177191
.quick-start {
178192
background: #e8f5e8;
179193
padding: 25px;
@@ -406,6 +420,11 @@ <h3>🚀 快速開始</h3>
406420
2. 登入 GitHub 帳號並選擇適合的訂閱方案<br>
407421
3. 設定繁體中文語言環境<br>
408422
4. 開始第一個場景的學習</p>
423+
<div style="text-align: center; margin-top: 20px;">
424+
<a href="#" onclick="loadMarkdown('./README.md', 'GitHub Copilot 教學專案 - 完整指南'); return false;" class="btn btn-doc btn-primary">
425+
📖 查看完整教學指南
426+
</a>
427+
</div>
409428
</div>
410429

411430
<div class="scenarios">

0 commit comments

Comments
 (0)