pentarosarium commited on
Commit
215c088
1 Parent(s): 66d2aa3

progress more (3.12+++)

Browse files
Files changed (2) hide show
  1. app.py +28 -1
  2. logopic.png +0 -0
app.py CHANGED
@@ -447,7 +447,34 @@ def main():
447
  unsafe_allow_html=True
448
  )
449
 
450
- st.title("Анализ мониторинга новостей")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
451
 
452
  if 'processed_df' not in st.session_state:
453
  st.session_state.processed_df = None
 
447
  unsafe_allow_html=True
448
  )
449
 
450
+ col1, col2 = st.columns([1, 4])
451
+
452
+ with col1:
453
+ st.markdown("""
454
+ <div style="
455
+ margin-top: 25px;
456
+ display: flex;
457
+ align-items: center;
458
+ justify-content: center;
459
+ height: 100%;
460
+ ">
461
+ <img src="logopic.png"
462
+ width="50"
463
+ title="в чащах юга жил-был цитрус - да, но фальшивый экземпляр"
464
+ style="
465
+ max-width: 10%;
466
+ height: auto;
467
+ display: block;
468
+ "
469
+ >
470
+ </div>
471
+ """,
472
+ unsafe_allow_html=True
473
+ )
474
+
475
+ with col2:
476
+ st.title("Анализ мониторинга новостей")
477
+
478
 
479
  if 'processed_df' not in st.session_state:
480
  st.session_state.processed_df = None
logopic.png ADDED