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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -10
app.py CHANGED
@@ -15,17 +15,10 @@ selected = option_menu(
15
  )
16
 
17
  if selected == 'About me':
18
- col1, col2 = st.columns(2)
19
-
20
  # Display the Lottie animation in the first column
21
- col1.subheader("Lottie Animation")
22
- col1.st_lottie(lottie_json, speed=1, width=400, height=400)
23
-
24
- # Display text in the second column
25
- col2.subheader("Text Content")
26
- col2.write("""
27
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. ...
28
- """)
29
  elif selected == 'Projects':
30
  st.write(selected)
31
  else:
 
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: