From 71c26bf3ed704606a73d763352c44de83dc18363 Mon Sep 17 00:00:00 2001 From: tebarius Date: Tue, 22 Jul 2025 10:06:14 +0200 Subject: [PATCH] with title --- app/app.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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)