Beasto commited on
Commit
056b95b
·
1 Parent(s): 1402435

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -15,10 +15,12 @@ selected = option_menu(
15
  )
16
 
17
  if selected == 'About me':
18
- # Display the Lottie animation in the first column
19
- st_lottie(lottie_json, speed=1, width=400, height=400)
20
- st.write('Hi, I am a young Machine learning Engineer from West Bengal, India')
21
- st.write('I have been learning Machine learning since 2021 and have Made more than 50 projects in the field of Machine Learning')
 
 
22
  elif selected == 'Projects':
23
  st.write(selected)
24
  else:
 
15
  )
16
 
17
  if selected == 'About me':
18
+ col1,col2 = st.columns(2)# Display the Lottie animation in the first column
19
+ with col1:
20
+ st_lottie(lottie_json, speed=1, width=400, height=400)
21
+ with col2:
22
+ st.write('# Hi, I am a young Machine learning Engineer from West Bengal, India')
23
+ st.write('# I have been learning Machine learning since 2021 and have Made more than 50 projects in the field of Machine Learning')
24
  elif selected == 'Projects':
25
  st.write(selected)
26
  else: