File size: 517 Bytes
b4e9c3f a2d83b8 b4e9c3f 56fd0b1 b4e9c3f 21b6daa b4e9c3f |
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 |
import streamlit as st
# PAGE CONFIG
st.set_page_config(
page_title='Development Banks Collaboration Analyzer',
page_icon='📋',
layout='wide',
)
from modules.navbar import show_navbar
import similarity_page
# reduce space to the top
st.markdown("""
<style>
.reportview-container .main .block-container{
padding-top: 2rem; /* Adjust the value as needed */
}
</style>
""", unsafe_allow_html=True)
# NAVBAR
navbar = show_navbar()
#similarity_page.show_multi_matching_page()
|