Spaces:
Sleeping
Sleeping
Commit ·
8bd41aa
1
Parent(s): 35a8af0
add footer
Browse files
app.py
CHANGED
|
@@ -444,6 +444,25 @@ with gr.Blocks(title="BFS-Best Face Swap with Qwen", theme=gr.themes.Soft(), css
|
|
| 444 |
"""
|
| 445 |
)
|
| 446 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 447 |
# Launch the app
|
| 448 |
if __name__ == "__main__":
|
| 449 |
demo.queue(max_size=10)
|
|
|
|
| 444 |
"""
|
| 445 |
)
|
| 446 |
|
| 447 |
+
gr.HTML(
|
| 448 |
+
"""
|
| 449 |
+
<div style="text-align: center; margin-top: 40px; padding: 20px; border-top: 1px solid #ccc;">
|
| 450 |
+
<a href="https://buymeacoffee.com/nrdx" target="_blank" style="display: inline-block; margin-bottom: 10px;">
|
| 451 |
+
<img src="https://img.buymeacoffee.com/button-api/?text=Buy me a coffee&emoji=&slug=nrdx&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff" alt="Buy Me A Coffee" height="40">
|
| 452 |
+
</a>
|
| 453 |
+
<div style="display: flex; justify-content: center; gap: 20px; margin-top: 10px; font-weight: bold;">
|
| 454 |
+
<a href="https://discord.gg/uYu3KzJcKB" target="_blank" class="footer-link">
|
| 455 |
+
🇧🇷 Discord Toca da IA
|
| 456 |
+
</a>
|
| 457 |
+
<span>|</span>
|
| 458 |
+
<a href="https://discord.gg/ThrfwKcr3F" target="_blank" class="footer-link">
|
| 459 |
+
🇧🇷 Discord Hoje na IA
|
| 460 |
+
</a>
|
| 461 |
+
</div>
|
| 462 |
+
</div>
|
| 463 |
+
"""
|
| 464 |
+
)
|
| 465 |
+
|
| 466 |
# Launch the app
|
| 467 |
if __name__ == "__main__":
|
| 468 |
demo.queue(max_size=10)
|