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:
Made with ❤️ by Yash Harish Gupta