|
import streamlit as st |
|
|
|
|
|
st.logo(image="images/menu_book_60dp_75FBFD.png") |
|
st.sidebar.title("SBS V2.0 mapper") |
|
st.sidebar.subheader("(work in progress)") |
|
st.sidebar.text("Demo by JA-RAD") |
|
|
|
|
|
with st.container(): |
|
st.markdown("## SBS Mapper", unsafe_allow_html=True) |
|
st.markdown("---") |
|
|
|
st.write("Scroll down to see the 'header' remain at the top of the content flow.") |
|
for i in range(50): |
|
st.write(f"Some more content: {i}") |
|
|
|
|
|
type_text_page = st.Page( |
|
page="pages/type_text.py", |
|
title="DEMO (work in progress)", |
|
icon=":material/keyboard:", |
|
default=True,) |
|
|
|
|
|
pg = st.navigation(pages=[type_text_page]) |
|
|
|
pg.run() |