-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.py
More file actions
41 lines (39 loc) · 1.28 KB
/
Copy pathfooter.py
File metadata and controls
41 lines (39 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import streamlit as st
def display_footer():
st.write("---")
st.markdown(
"""
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
footer {
text-align: center;
font-size: 0.9em;
color: #black;
margin-top: 30px;
}
footer a {
color: #3498db;
text-decoration: none;
margin: 0 10px;
font-size: 1.2em;
}
footer a:hover {
color: #2ecc71;
}
</style>
<footer>
EcoTrackify © 2025<br>
Connect with us:
<a href="https://github.com/Hanzllasoomro" target="_blank" title="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="https://www.instagram.com/hanzllasoomro/#" target="_blank" title="Instagram">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.linkedin.com/in/hanzlla-soomro-85a258211/" target="_blank" title="LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
</footer>
""",
unsafe_allow_html=True,
)