16 lines
417 B
Python
16 lines
417 B
Python
|
import streamlit as st
|
||
|
|
||
|
|
||
|
def show_donates() -> None:
|
||
|
st.markdown("---")
|
||
|
st.markdown("""
|
||
|
### :moneybag: Donates
|
||
|
**Russia:**
|
||
|
- [CloudTips (Tinkoff)](https://pay.cloudtips.ru/p/eafa15b2)
|
||
|
|
||
|
**World:**
|
||
|
- [Buy Me A Coffee](https://www.buymeacoffee.com/aitalks)
|
||
|
- [ko-fi](https://ko-fi.com/ai_talks)
|
||
|
- [PayPal](https://www.paypal.com/paypalme/aitalks)
|
||
|
""")
|