| import streamlit as st
|
| import app_matching_page
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| def show_navbar():
|
|
|
|
|
|
|
| css = '''
|
| <style>
|
| .stTabs [data-baseweb="tab-list"] button [data-testid="stMarkdownContainer"] p {
|
| font-size:1rem;
|
| }
|
| </style>
|
| '''
|
| st.markdown(css, unsafe_allow_html=True)
|
| tab1, tab2, tab3, tab4 = st.tabs([
|
| "📘 Landing Page",
|
| "📊 All Projects",
|
| "🎯 Single-Project Matching",
|
| "🔍 Multi-Project Matching"
|
| ])
|
|
|
| with tab1:
|
| app_matching_page.show_landing_page()
|
|
|
| with tab2:
|
| app_matching_page.show_all_projects_page()
|
|
|
| with tab3:
|
| app_matching_page.show_single_matching_page()
|
|
|
| with tab4:
|
| app_matching_page.show_multi_matching_page()
|
|
|