Update app.py
Browse files
app.py
CHANGED
@@ -155,13 +155,11 @@ st.sidebar.title("🔍 Data Fields")
|
|
155 |
for field, description in data_fields.items():
|
156 |
st.sidebar.markdown(f"{field}: {description}")
|
157 |
|
158 |
-
|
159 |
# Add developer sentence with link at the bottom
|
160 |
-
|
161 |
<div style="text-align: center; position: absolute; bottom: 0; width: 100%;">
|
162 |
-
<p style="font-style: italic;">Developed by
|
163 |
</div>
|
164 |
-
"""
|
165 |
-
st.components.v1.html(html_temp, height=20)
|
166 |
|
167 |
-
st.stop()
|
|
|
155 |
for field, description in data_fields.items():
|
156 |
st.sidebar.markdown(f"{field}: {description}")
|
157 |
|
|
|
158 |
# Add developer sentence with link at the bottom
|
159 |
+
st.markdown("""
|
160 |
<div style="text-align: center; position: absolute; bottom: 0; width: 100%;">
|
161 |
+
<p style="font-style: italic;">Developed by [Rasmo Wanyama](https://www.linkedin.com/in/rasmo-/)</p>
|
162 |
</div>
|
163 |
+
""", unsafe_allow_html=False)
|
|
|
164 |
|
165 |
+
st.stop()
|