AIdeaText commited on
Commit
d0a89b7
·
verified ·
1 Parent(s): 15b12b2

Update modules/ui/ui.py

Browse files
Files changed (1) hide show
  1. modules/ui/ui.py +11 -3
modules/ui/ui.py CHANGED
@@ -81,12 +81,20 @@ def login_register_page(lang_code, t):
81
  # Language selection dropdown at the top
82
  languages = {'Español': 'es', 'English': 'en', 'Français': 'fr', 'Português': 'pt'}
83
 
84
- # Create a container for the language selector with styling
85
  with st.container():
86
- col1, col2 = st.columns([3, 1])
 
87
  with col1:
88
- st.title("AIdeaText")
 
 
89
  with col2:
 
 
 
 
 
90
  selected_lang = st.selectbox(
91
  landing_t['select_language'],
92
  list(languages.keys()),
 
81
  # Language selection dropdown at the top
82
  languages = {'Español': 'es', 'English': 'en', 'Français': 'fr', 'Português': 'pt'}
83
 
84
+ # Create a container for the language selector and logos
85
  with st.container():
86
+ col1, col2, col3 = st.columns([2, 2, 1])
87
+
88
  with col1:
89
+ # Logo de AIdeaText
90
+ st.image("assets/img/logo_92x92.png", width=100)
91
+
92
  with col2:
93
+ # Logo de WebSummit Rio 2025
94
+ st.image("assets/img/ALPHA_Startup Badges.png", width=150)
95
+
96
+ with col3:
97
+ # Selector de idioma
98
  selected_lang = st.selectbox(
99
  landing_t['select_language'],
100
  list(languages.keys()),