Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -93,6 +93,12 @@ def main():
|
|
93 |
}
|
94 |
</style>
|
95 |
""", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
st.sidebar.markdown("---")
|
98 |
st.sidebar.info(
|
|
|
93 |
}
|
94 |
</style>
|
95 |
""", unsafe_allow_html=True)
|
96 |
+
|
97 |
+
selection = st.sidebar.radio(
|
98 |
+
"Navigate",
|
99 |
+
list(PAGES.keys()),
|
100 |
+
format_func=lambda x: f"{PAGES[x]['icon']} {x}"
|
101 |
+
)
|
102 |
|
103 |
st.sidebar.markdown("---")
|
104 |
st.sidebar.info(
|