add credits
Browse files
app.py
CHANGED
@@ -698,3 +698,10 @@ if "result" in st.session_state:
|
|
698 |
m.to_streamlit()
|
699 |
|
700 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
698 |
m.to_streamlit()
|
699 |
|
700 |
|
701 |
+
# Add credits
|
702 |
+
st.write(
|
703 |
+
"""
|
704 |
+
<div style="display: flex; justify-content: center; align-items: center;">
|
705 |
+
<p style="text-align: left;">This tool is developed by <a href="https://sustainability-lab.github.io/">Sustainability Lab</a>, <a href="https://www.iitgn.ac.in/">IIT Gandhinagar</a> and supported by <a href="https://forests.gujarat.gov.in/">Gujarat Forest Department</a></p>""",
|
706 |
+
unsafe_allow_html=True,
|
707 |
+
)
|