Maryam Ilka commited on
Commit
44231f7
·
verified ·
1 Parent(s): 607c219

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -8
app.py CHANGED
@@ -254,15 +254,16 @@ def demographic_form():
254
 
255
  def scenario_explanation():
256
  """توضیح سناریو"""
257
- st.markdown("""
258
- <div style="display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 20px;">
259
- <img src="rahyar.png" width="80" alt="لوگوی راهیار">
260
- <div>
261
- <h2 style="color: #6a0dad; margin: 0;">راهیار 🚖</h2>
262
- <p style="color: #6a0dad; margin: 0;">سفرهای درون شهری سریع و مطمئن</p>
 
 
263
  </div>
264
- </div>
265
- """, unsafe_allow_html=True)
266
 
267
  st.markdown("### سناریوی تحقیق")
268
 
 
254
 
255
  def scenario_explanation():
256
  """توضیح سناریو"""
257
+ col1, col2 = st.columns([1, 3])
258
+ with col1:
259
+ st.image("rahyar.png", width=100) # عرض لوگو را تنظیم کنید
260
+ with col2:
261
+ st.markdown("""
262
+ <div class="rahyar-header">
263
+ <h2>راهیار 🚖</h2>
264
+ <p>سفرهای درون شهری سریع و مطمئن</p>
265
  </div>
266
+ """, unsafe_allow_html=True)
 
267
 
268
  st.markdown("### سناریوی تحقیق")
269