rasmodev commited on
Commit
66a35a9
·
verified ·
1 Parent(s): 293537f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -6
app.py CHANGED
@@ -155,11 +155,16 @@ st.sidebar.title("🔍 Data Fields")
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()
 
155
  for field, description in data_fields.items():
156
  st.sidebar.markdown(f"{field}: {description}")
157
 
158
+ import streamlit as st
159
+
160
+ # Main content of your Streamlit app goes here
161
+
162
+ # Copyright statement at the bottom
163
+ st.markdown(
164
+ """
165
+ Developed by [Rasmo Wanyama](https://www.linkedin.com/in/rasmo-/).
166
+ """,
167
+ unsafe_allow_html=True
168
+ )
169
 
170
  st.stop()