import streamlit as st | |
main_page = st.Page("main.py", title="Главная" | |
# , icon=":material/add_circle:" | |
) | |
Leaderboard_page = st.Page("Leaderboard.py", title="Лидерборд" | |
# , icon=":material/delete:" | |
) | |
pg = st.navigation( | |
{ | |
"Main": [main_page, Leaderboard_page], | |
# "Reports": [] | |
} | |
) | |
st.set_page_config(page_title="Leaderboard" | |
# , page_icon=":material/edit:" | |
) | |
pg.run() | |
# logo = '/Users/y1ov/Work/streamlits/senej/files/beta-1.png' | |
# st.logo(logo, icon_image=logo) |