import streamlit as st from streamlit_lottie import st_lottie import requests # Load Lottie animation def load_lottieurl(url: str): r = requests.get(url) if r.status_code != 200: return None return r.json() # CSS Styling st.markdown(""" """, unsafe_allow_html=True) # Title and Tagline st.title("Zero to Hero: Mastering Machine Learning from the Ground Up 🚀🤖📚") st.markdown("### Exploring Data Science, One Step at a Time") # Lottie Animation lottie_animation = load_lottieurl("https://lottie.host/6e182649-61a6-4683-8680-5493855ac08a/G0pStmcS8T.json") if lottie_animation: st_lottie(lottie_animation, height=150, key="animation") # About the App st.subheader("About This App") st.markdown(""" Welcome to my Machine Learning blog! This is a platform where I share my journey, learning experiences, and insights about data science and machine learning. The roadmap includes: """, unsafe_allow_html=True) # Author Section st.markdown("""

About the Author

Hi, I'm Yash Harish Gupta! I'm an aspiring data scientist passionate about solving real-world problems using machine learning. Currently, I'm learning and preparing to kickstart my career in the data science field.

""", unsafe_allow_html=True) # Social Links st.markdown("""
LinkedIn GitHub
""", unsafe_allow_html=True) # Footer st.markdown("""

Made with ❤️ by Yash Harish Gupta

""", unsafe_allow_html=True)