Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 624 Bytes
b4e9c3f a2d83b8 b4e9c3f 56fd0b1 6c6e557 b1bc16f 4f10561 6c6e557 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 26 27 28 |
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>
.block-container {
padding-top: 1rem;
padding-bottom: 4rem;
padding-left: 3rem;
padding-right: 3rem;
}
</style>
""", unsafe_allow_html=True)
# NAVBAR
navbar = show_navbar()
#similarity_page.show_multi_matching_page()
|