upd footer with qr

This commit is contained in:
if 2023-04-03 21:06:41 +03:00
parent e7ab110059
commit 7d6a3e864d
2 changed files with 12 additions and 7 deletions

BIN
assets/qr/tink.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

View File

@ -19,13 +19,6 @@ def show_info(icon: Path) -> None:
def show_donates() -> None:
st.markdown(f"""
### :moneybag: {st.session_state.locale.donates}
**{st.session_state.locale.donates1}:**
- [CloudTips (Tinkoff)](https://pay.cloudtips.ru/p/eafa15b2)
**{st.session_state.locale.donates2}:**
- [Buy Me A Coffee](https://www.buymeacoffee.com/aitalks)
- [ko-fi](https://ko-fi.com/ai_talks)
- [PayPal](https://www.paypal.com/paypalme/aitalks)
**Crypto:**
- USD Tether (USDT TRC20):
@ -36,7 +29,19 @@ def show_donates() -> None:
```
UQDbnx17N2iOmxfQF0k55QScDMB0MHL9rsq-iGB93RMqDhIH
```
**{st.session_state.locale.donates2}:**
- [Buy Me A Coffee](https://www.buymeacoffee.com/aitalks)
- [ko-fi](https://ko-fi.com/ai_talks)
- [PayPal](https://www.paypal.com/paypalme/aitalks)
""")
st.markdown(f"""
**{st.session_state.locale.donates1}:**
- [CloudTips (Tinkoff)](https://pay.cloudtips.ru/p/eafa15b2)
""")
_, img_col, _ = st.columns(3)
with img_col:
st.image("assets/qr/tink.png", width=200)
st.markdown("---")
st.markdown(f"<div style='text-align: justify;'>{st.session_state.locale.donates_info}</div>",
unsafe_allow_html=True)