Spaces:
Build error
Build error
Commit ·
f69f054
1
Parent(s): 2f2a434
add donation
Browse files
app.py
CHANGED
|
@@ -158,8 +158,22 @@ with gr.Blocks() as demo:
|
|
| 158 |
- Google App Password kullanmanız gerekiyor (normal şifre çalışmaz)
|
| 159 |
- 2-Factor Authentication aktif olmalı
|
| 160 |
- Günlük gönderim limitlerine dikkat edin
|
|
|
|
| 161 |
""")
|
| 162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 163 |
|
| 164 |
if __name__ == "__main__":
|
| 165 |
-
demo.launch(share=
|
|
|
|
| 158 |
- Google App Password kullanmanız gerekiyor (normal şifre çalışmaz)
|
| 159 |
- 2-Factor Authentication aktif olmalı
|
| 160 |
- Günlük gönderim limitlerine dikkat edin
|
| 161 |
+
- Daha fazla bilgi için https://support.google.com/accounts/answer/185833
|
| 162 |
""")
|
| 163 |
|
| 164 |
+
donation_html = """
|
| 165 |
+
<div style="text-align: center; margin-top: 20px; padding: 10px; border-top: 1px solid #ddd;">
|
| 166 |
+
<p style="font-weight: bold;">If you find this tool useful, consider supporting its development:</p>
|
| 167 |
+
<div style="text-align: center; display: flex; justify-content: center;">
|
| 168 |
+
<a href="https://ko-fi.com/sbgonenc" target="_blank">
|
| 169 |
+
<img src="https://cdn.ko-fi.com/cdn/kofi2.png?v=3" height="36" width="auto" alt="Buy Me a Coffee on ko-fi.com" style="margin: 0 auto;" />
|
| 170 |
+
</a>
|
| 171 |
+
</div>
|
| 172 |
+
</div>
|
| 173 |
+
"""
|
| 174 |
+
|
| 175 |
+
gr.HTML(donation_html)
|
| 176 |
+
|
| 177 |
|
| 178 |
if __name__ == "__main__":
|
| 179 |
+
demo.launch(share=True)
|