Spaces:
Running
Running
feat: clickable GitHub link in footer
Browse files
app.py
CHANGED
|
@@ -514,6 +514,8 @@ body { font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
|
|
| 514 |
font-size: 12px; margin-top: 32px !important; line-height: 1.6;
|
| 515 |
}
|
| 516 |
.bb-footer p { margin: 0; }
|
|
|
|
|
|
|
| 517 |
|
| 518 |
/* โโโ Responsive โโโ */
|
| 519 |
|
|
@@ -765,7 +767,7 @@ with gr.Blocks(title="๐ BreadBuddy", theme=custom_theme, css=custom_css) as d
|
|
| 765 |
# Footer
|
| 766 |
gr.HTML("""
|
| 767 |
<div class="bb-footer">
|
| 768 |
-
<p>© 2026 Rockstone Games. All rights reserved.</p>
|
| 769 |
</div>
|
| 770 |
""")
|
| 771 |
|
|
|
|
| 514 |
font-size: 12px; margin-top: 32px !important; line-height: 1.6;
|
| 515 |
}
|
| 516 |
.bb-footer p { margin: 0; }
|
| 517 |
+
.bb-footer a { color: var(--text-muted); text-decoration: none; }
|
| 518 |
+
.bb-footer a:hover { color: var(--primary); text-decoration: underline; }
|
| 519 |
|
| 520 |
/* โโโ Responsive โโโ */
|
| 521 |
|
|
|
|
| 767 |
# Footer
|
| 768 |
gr.HTML("""
|
| 769 |
<div class="bb-footer">
|
| 770 |
+
<p>© 2026 <a href="https://github.com/the-rockstone-games" target="_blank" rel="noopener">Rockstone Games</a>. All rights reserved.</p>
|
| 771 |
</div>
|
| 772 |
""")
|
| 773 |
|
i18n.py
CHANGED
|
@@ -79,8 +79,8 @@ STRINGS = {
|
|
| 79 |
"zh": "๐ง ่ฟฝ้ฎไธไธๆ๏ผ"
|
| 80 |
},
|
| 81 |
"footer_line1": {
|
| 82 |
-
"en": "\u00a9 2026 Rockstone Games. All rights reserved.",
|
| 83 |
-
"zh": "\u00a9 2026 Rockstone Games. All rights reserved."
|
| 84 |
},
|
| 85 |
"footer_line2": {
|
| 86 |
"en": "",
|
|
|
|
| 79 |
"zh": "๐ง ่ฟฝ้ฎไธไธๆ๏ผ"
|
| 80 |
},
|
| 81 |
"footer_line1": {
|
| 82 |
+
"en": "\u00a9 2026 Rockstone Games. All rights reserved. https://github.com/the-rockstone-games",
|
| 83 |
+
"zh": "\u00a9 2026 Rockstone Games. All rights reserved. https://github.com/the-rockstone-games"
|
| 84 |
},
|
| 85 |
"footer_line2": {
|
| 86 |
"en": "",
|