rasmodev commited on
Commit
e659ca5
·
verified ·
1 Parent(s): 78b2f8d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -4
app.py CHANGED
@@ -156,7 +156,12 @@ for field, description in data_fields.items():
156
  st.sidebar.markdown(f"{field}: {description}")
157
 
158
 
159
- # Add developer sentence at the bottom
160
- st.write('<p style="text-align: center;">Developed by Rasmo Wanyama</p>', unsafe_allow_html=True)
161
-
162
- st.stop()
 
 
 
 
 
 
156
  st.sidebar.markdown(f"{field}: {description}")
157
 
158
 
159
+ # Add developer sentence with link at the bottom
160
+ html_temp = """
161
+ <div style="text-align: center; position: absolute; bottom: 0; width: 100%;">
162
+ <p style="font-style: italic;">Developed by <a href="https://www.linkedin.com/in/rasmo-/">Rasmo Wanyama</a></p>
163
+ </div>
164
+ """
165
+ st.components.v1.html(html_temp, height=20)
166
+
167
+ st.stop()