with title

This commit is contained in:
2025-07-22 10:06:14 +02:00
parent f77c9bee34
commit 71c26bf3ed

View File

@@ -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)