Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -125,18 +125,6 @@ def main():
|
|
125 |
margin: 10px 0;
|
126 |
background: #fff;
|
127 |
}
|
128 |
-
/* Footer styling */
|
129 |
-
.footer {
|
130 |
-
position: fixed;
|
131 |
-
left: 0;
|
132 |
-
bottom: 0;
|
133 |
-
width: 100%;
|
134 |
-
background-color: #f8f9fa;
|
135 |
-
text-align: center;
|
136 |
-
padding: 0.5rem;
|
137 |
-
font-size: 1rem;
|
138 |
-
border-top: 1px solid #ccc;
|
139 |
-
}
|
140 |
</style>
|
141 |
""", unsafe_allow_html=True)
|
142 |
|
@@ -229,13 +217,12 @@ def main():
|
|
229 |
|
230 |
|
231 |
# Footer
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
</div>
|
238 |
""", unsafe_allow_html=True)
|
239 |
-
|
240 |
if __name__ == "__main__":
|
241 |
main()
|
|
|
125 |
margin: 10px 0;
|
126 |
background: #fff;
|
127 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
</style>
|
129 |
""", unsafe_allow_html=True)
|
130 |
|
|
|
217 |
|
218 |
|
219 |
# Footer
|
220 |
+
|
221 |
+
st.markdown("""
|
222 |
+
<footer style="text-align: center; padding: 1rem; margin-top: 2rem; border-top: 1px solid #ddd;">
|
223 |
+
<small>© 2025 Joel Adesanya's MSc Project.</small>
|
224 |
+
</footer>
|
|
|
225 |
""", unsafe_allow_html=True)
|
226 |
+
|
227 |
if __name__ == "__main__":
|
228 |
main()
|