Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 786 Bytes
9dcd3f9 21b6daa 9dcd3f9 21b6daa |
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 |
import streamlit as st
from streamlit_option_menu import option_menu # https://github.com/victoryhb/streamlit-option-menu
import similarity_page
# giz-dsc colors
# orange: #e5b50d
# green: #48d47b
# blue: #0da2dc
# grey: #dadada
# giz colors https://www.giz.de/cdc/en/html/59638.html
# red: #c80f0f
# grey: #6f6f6f
# light_grey: #b2b2b2
# light_red: #eba1a3
def show_navbar():
st.markdown("<h1 style='color: red;'>THIS APP IS WORK IN PROGRESS ...</h1>", unsafe_allow_html=True)
st.title("Development Bank Synergy Mapper")
tab1, tab2 = st.tabs([
"🔍 Multi-Project Matching",
"🎯 Single-Project Matching"
])
with tab1:
similarity_page.show_multi_matching_page()
with tab2:
similarity_page.show_single_matching_page() |