mery22 commited on
Commit
417bcab
1 Parent(s): c9179c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -88,8 +88,18 @@ with col1:
88
  with col3:
89
  st.image("Altereo logo 2023 original - eau et territoires durables.png", width=150, use_column_width=True) # Adjust image path and size as needed
90
  # Streamlit components
91
- st.markdown("### 🤖 ALTER-IA BOT")
92
- st.markdown(" Votre Réponse à Chaque Défi Méthodologique 📈")
 
 
 
 
 
 
 
 
 
 
93
 
94
  # Input and button for user interaction
95
  user_input = st.text_input("You:", "")
 
88
  with col3:
89
  st.image("Altereo logo 2023 original - eau et territoires durables.png", width=150, use_column_width=True) # Adjust image path and size as needed
90
  # Streamlit components
91
+ # Ajouter un peu de CSS pour centrer le texte
92
+ st.markdown("""
93
+ <style>
94
+ .centered-text {
95
+ text-align: center;
96
+ }
97
+ </style>
98
+ """, unsafe_allow_html=True)
99
+
100
+ # Utiliser la classe CSS pour centrer le texte
101
+ st.markdown('<h3 class="centered-text">🤖 ALTER-IA BOT</h3>', unsafe_allow_html=True)
102
+ st.markdown('<p class="centered-text">Votre Réponse à Chaque Défi Méthodologique 📈</p>', unsafe_allow_html=True)
103
 
104
  # Input and button for user interaction
105
  user_input = st.text_input("You:", "")