Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -114,6 +114,13 @@ def initialize_session_state():
|
|
114 |
|
115 |
def sidebar():
|
116 |
with st.sidebar:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
st.markdown("Enter the YouTube Video URL below🔗")
|
118 |
st.session_state.youtube_url = st.text_input("YouTube Video URL:")
|
119 |
|
@@ -127,6 +134,11 @@ def sidebar():
|
|
127 |
|
128 |
# Embed the video
|
129 |
st.markdown(embed_html, unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
130 |
|
131 |
|
132 |
|
|
|
114 |
|
115 |
def sidebar():
|
116 |
with st.sidebar:
|
117 |
+
st.markdown("💸 **Support our project**")
|
118 |
+
st.markdown("This money would be used for paying for API and support out team.")
|
119 |
+
st.markdown("🎯 **Goal**: 500 $")
|
120 |
+
st.markdown("[🔗 Link to the bank](https://send.monobank.ua/jar/5fSitCrVcQ)")
|
121 |
+
|
122 |
+
st.markdown("")
|
123 |
+
|
124 |
st.markdown("Enter the YouTube Video URL below🔗")
|
125 |
st.session_state.youtube_url = st.text_input("YouTube Video URL:")
|
126 |
|
|
|
134 |
|
135 |
# Embed the video
|
136 |
st.markdown(embed_html, unsafe_allow_html=True)
|
137 |
+
|
138 |
+
# Add support text
|
139 |
+
|
140 |
+
sidebar()
|
141 |
+
|
142 |
|
143 |
|
144 |
|