Spaces:
Running on Zero
Running on Zero
xiaoyuxi commited on
Commit ·
1e54164
1
Parent(s): b6d15ed
backend
Browse files
app.py
CHANGED
|
@@ -505,6 +505,50 @@ with gr.Blocks(
|
|
| 505 |
status_text = "🟢 Backend Connected" if BACKEND_AVAILABLE else "🟡 Running in Standalone Mode"
|
| 506 |
gr.Markdown(f"**Status:** {status_text}")
|
| 507 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 508 |
# Example videos section - moved to top
|
| 509 |
with gr.Group():
|
| 510 |
gr.Markdown("### 📂 Example Videos")
|
|
|
|
| 505 |
status_text = "🟢 Backend Connected" if BACKEND_AVAILABLE else "🟡 Running in Standalone Mode"
|
| 506 |
gr.Markdown(f"**Status:** {status_text}")
|
| 507 |
|
| 508 |
+
# GitHub Star Reminder - Added back!
|
| 509 |
+
gr.HTML("""
|
| 510 |
+
<div style='background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 511 |
+
border-radius: 15px;
|
| 512 |
+
padding: 20px;
|
| 513 |
+
margin: 20px 0;
|
| 514 |
+
box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
|
| 515 |
+
border: 2px solid rgba(255,255,255,0.2);'>
|
| 516 |
+
<div style='text-align: center; color: white;'>
|
| 517 |
+
<h3 style='margin: 0 0 15px 0; font-size: 24px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3);'>
|
| 518 |
+
⭐ Love SpatialTracker? Give us a Star! ⭐
|
| 519 |
+
</h3>
|
| 520 |
+
<p style='margin: 0 0 20px 0; font-size: 18px; opacity: 0.9;'>
|
| 521 |
+
Help us grow by starring our repository on GitHub! Your support means everything to us! 🚀
|
| 522 |
+
</p>
|
| 523 |
+
<div style='display: flex; justify-content: center;'>
|
| 524 |
+
<a href="https://github.com/henry123-boy/SpaTrackerV2"
|
| 525 |
+
target="_blank"
|
| 526 |
+
style='display: inline-flex;
|
| 527 |
+
align-items: center;
|
| 528 |
+
gap: 8px;
|
| 529 |
+
background: rgba(255,255,255,0.2);
|
| 530 |
+
color: white;
|
| 531 |
+
padding: 15px 30px;
|
| 532 |
+
border-radius: 25px;
|
| 533 |
+
text-decoration: none;
|
| 534 |
+
font-weight: bold;
|
| 535 |
+
font-size: 18px;
|
| 536 |
+
backdrop-filter: blur(10px);
|
| 537 |
+
border: 1px solid rgba(255,255,255,0.3);
|
| 538 |
+
transition: all 0.3s ease;'
|
| 539 |
+
onmouseover="this.style.background='rgba(255,255,255,0.3)'; this.style.transform='translateY(-2px)'"
|
| 540 |
+
onmouseout="this.style.background='rgba(255,255,255,0.2)'; this.style.transform='translateY(0)'">
|
| 541 |
+
<span style='font-size: 22px;'>⭐</span>
|
| 542 |
+
Star on GitHub
|
| 543 |
+
</a>
|
| 544 |
+
</div>
|
| 545 |
+
<p style='margin: 15px 0 0 0; font-size: 14px; opacity: 0.8;'>
|
| 546 |
+
🎉 Thank you for being part of our community! 🎉
|
| 547 |
+
</p>
|
| 548 |
+
</div>
|
| 549 |
+
</div>
|
| 550 |
+
""")
|
| 551 |
+
|
| 552 |
# Example videos section - moved to top
|
| 553 |
with gr.Group():
|
| 554 |
gr.Markdown("### 📂 Example Videos")
|