with title
This commit is contained in:
@@ -9,6 +9,7 @@ st.set_page_config(
|
|||||||
)
|
)
|
||||||
st.logo('./logo.png', size='large')
|
st.logo('./logo.png', size='large')
|
||||||
|
|
||||||
|
|
||||||
# Optional: Standard für den Session State setzen
|
# Optional: Standard für den Session State setzen
|
||||||
if 'letzte_aktion' not in st.session_state:
|
if 'letzte_aktion' not in st.session_state:
|
||||||
st.session_state['letzte_aktion'] = None
|
st.session_state['letzte_aktion'] = None
|
||||||
@@ -20,7 +21,12 @@ if 'show_map' not in st.session_state:
|
|||||||
if 'map_data' not in st.session_state:
|
if 'map_data' not in st.session_state:
|
||||||
st.session_state['map_data'] = None
|
st.session_state['map_data'] = None
|
||||||
|
|
||||||
st.image('./logo-mit-tb.png', width=200)
|
|
||||||
|
logo_col, title_col = st.columns([1,5])
|
||||||
|
with logo_col:
|
||||||
|
st.image('./logo-mit-tb.png', width=200)
|
||||||
|
with title_col:
|
||||||
|
st.write(' \n \n# tebarius web-Mysteryhelfer')
|
||||||
|
|
||||||
# Eingabefeld im Hauptbereich
|
# Eingabefeld im Hauptbereich
|
||||||
input_text = st.text_area('Gib deinen Text hier ein und wähle eine Funktion im Menü:', height=150)
|
input_text = st.text_area('Gib deinen Text hier ein und wähle eine Funktion im Menü:', height=150)
|
||||||
|
|||||||
Reference in New Issue
Block a user