-
Notifications
You must be signed in to change notification settings - Fork 0
/
streamlit_main.py
20 lines (16 loc) · 1.02 KB
/
streamlit_main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import streamlit as st
# ----------------------------------------------------------------------------------------------------------------------
# HEADER
# ----------------------------------------------------------------------------------------------------------------------
st.set_page_config(page_title="Primertool", page_icon="logo.png") # Dna icons created by Freepik - Flaticon
# ----------------------------------------------------------------------------------------------------------------------
# TITLE
# ----------------------------------------------------------------------------------------------------------------------
st.title("Primertool")
main_page = st.Page('streamlit_primertool.py', title='Main', icon=':material/genetics:')
help_page = st.Page('streamlit_help.py', title='Help', icon=':material/question_mark:')
pg = st.navigation([main_page, help_page])
pg.run()
# ----------------------------------------------------------------------------------------------------------------------
# st.balloons()
# st.snow()