Update app.py
Browse files
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 |
-
|
| 22 |
-
|
| 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:
|