fix: Persona Studio entry button not navigating - use HTML links and add redirect index.html
Root cause: 1. README.md used Markdown link syntax inside HTML table block which may not render as clickable 2. persona-studio/index.html was missing, causing the target URL to 404 Fix: - Replace Markdown link with HTML <a><img> badge button + plain text <a> fallback link - Create persona-studio/index.html that redirects to persona-studio/frontend/index.html - Add plain text link to persona-studio/README.md Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
This commit is contained in:
parent
04303a8937
commit
6f10bee2d7
|
|
@ -31,7 +31,13 @@
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
### 🚀 [点击进入 Persona Studio →](https://qinfendebingshuo.github.io/guanghulab/persona-studio/)
|
<a href="https://qinfendebingshuo.github.io/guanghulab/persona-studio/"><img src="https://img.shields.io/badge/%F0%9F%9A%80%20%E7%82%B9%E5%87%BB%E8%BF%9B%E5%85%A5%20Persona%20Studio%20%E2%86%92-Click%20Here-0969da?style=for-the-badge" alt="点击进入 Persona Studio" /></a>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
🔗 直接访问:<a href="https://qinfendebingshuo.github.io/guanghulab/persona-studio/">https://qinfendebingshuo.github.io/guanghulab/persona-studio/</a>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
💬 自然语言对话 · 🧠 智能代码生成 · 📧 邮件推送结果 · 🔄 对话记忆
|
💬 自然语言对话 · 🧠 智能代码生成 · 📧 邮件推送结果 · 🔄 对话记忆
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,8 @@
|
||||||
<a href="https://qinfendebingshuo.github.io/guanghulab/persona-studio/">
|
<a href="https://qinfendebingshuo.github.io/guanghulab/persona-studio/">
|
||||||
<img src="https://img.shields.io/badge/%F0%9F%9A%80%20%E6%89%93%E5%BC%80%E4%BA%BA%E6%A0%BC%E4%BD%93%E5%AF%B9%E8%AF%9D%E7%95%8C%E9%9D%A2-Click%20Here-0969da?style=for-the-badge&logoColor=white" alt="Launch" />
|
<img src="https://img.shields.io/badge/%F0%9F%9A%80%20%E6%89%93%E5%BC%80%E4%BA%BA%E6%A0%BC%E4%BD%93%E5%AF%B9%E8%AF%9D%E7%95%8C%E9%9D%A2-Click%20Here-0969da?style=for-the-badge&logoColor=white" alt="Launch" />
|
||||||
</a>
|
</a>
|
||||||
|
<br><br>
|
||||||
|
🔗 直接访问:<a href="https://qinfendebingshuo.github.io/guanghulab/persona-studio/">https://qinfendebingshuo.github.io/guanghulab/persona-studio/</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh-CN">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="refresh" content="0;url=frontend/index.html">
|
||||||
|
<title>Persona Studio · 光湖人格体协助开发体验</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>正在跳转到 Persona Studio…</p>
|
||||||
|
<p><a href="frontend/index.html">如果没有自动跳转,请点击这里</a></p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue