Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -471,23 +471,28 @@ def main():
|
|
| 471 |
|
| 472 |
# Footer
|
| 473 |
gr.HTML('''
|
| 474 |
-
<div style="
|
| 475 |
-
|
| 476 |
-
|
| 477 |
-
|
| 478 |
-
|
| 479 |
-
|
| 480 |
-
|
| 481 |
-
-webkit-background-clip: text;
|
| 482 |
-
-webkit-text-fill-color: transparent;
|
| 483 |
-
margin-bottom: 12px;
|
| 484 |
-
text-transform: uppercase;
|
| 485 |
-
display: inline-block;
|
| 486 |
-
">EXPLORE THE CODE →</p>
|
| 487 |
-
<br>
|
| 488 |
<a href="https://github.com/Eric-Chung-0511/Learning-Record/tree/main/Data%20Science%20Projects/PawMatchAI" style="text-decoration: none;">
|
| 489 |
<img src="https://img.shields.io/badge/GitHub-PawMatch_AI-007ACC?logo=github&style=for-the-badge">
|
| 490 |
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 491 |
</div>
|
| 492 |
''')
|
| 493 |
|
|
|
|
| 471 |
|
| 472 |
# Footer
|
| 473 |
gr.HTML('''
|
| 474 |
+
<div style="
|
| 475 |
+
display: flex;
|
| 476 |
+
align-items: center;
|
| 477 |
+
justify-content: center;
|
| 478 |
+
gap: 16px;
|
| 479 |
+
padding: 20px 0;
|
| 480 |
+
">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 481 |
<a href="https://github.com/Eric-Chung-0511/Learning-Record/tree/main/Data%20Science%20Projects/PawMatchAI" style="text-decoration: none;">
|
| 482 |
<img src="https://img.shields.io/badge/GitHub-PawMatch_AI-007ACC?logo=github&style=for-the-badge">
|
| 483 |
</a>
|
| 484 |
+
<span style="
|
| 485 |
+
font-family: 'Arial', sans-serif;
|
| 486 |
+
font-size: 14px;
|
| 487 |
+
font-weight: 500;
|
| 488 |
+
letter-spacing: 1px;
|
| 489 |
+
color: #666;
|
| 490 |
+
display: flex;
|
| 491 |
+
align-items: center;
|
| 492 |
+
gap: 4px;
|
| 493 |
+
">
|
| 494 |
+
EXPLORE THE CODE <span style="color: #007ACC;">→</span>
|
| 495 |
+
</span>
|
| 496 |
</div>
|
| 497 |
''')
|
| 498 |
|