diff --git a/app/app.py b/app/app.py index 07c0b56..617bd95 100644 --- a/app/app.py +++ b/app/app.py @@ -9,6 +9,7 @@ st.set_page_config( ) st.logo('./logo.png', size='large') + # Optional: Standard für den Session State setzen if 'letzte_aktion' not in st.session_state: 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: 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 input_text = st.text_area('Gib deinen Text hier ein und wähle eine Funktion im Menü:', height=150)