| import streamlit as st
|
| from PIL import Image
|
|
|
|
|
| st.set_page_config(
|
| page_title="Welcome to Manish Gupta's Portfolio",
|
| page_icon="📝",
|
| layout="centered",
|
| initial_sidebar_state="collapsed"
|
| )
|
|
|
|
|
|
|
|
|
|
|
|
|
| st.title("Welcome to My Data Science Portfolio")
|
| st.subheader("Exploring insights, building models, and sharing my journey as a Data Scientist.")
|
|
|
|
|
| st.write(
|
| """Hi, I'm **Manish Gupta**, a Data Scientist with over 3 years of experience in predictive modeling,
|
| statistical analysis, and deriving actionable insights. Browse through my projects, connect with me,
|
| or explore resources to learn more about my work!"""
|
| )
|
|
|
|
|
| col1, col2, col3 = st.columns(3)
|
| with col1:
|
| if st.button("About Me"):
|
| st.write(
|
| """I specialize in Python, SQL, Machine Learning, and Data Visualization using tools like Tableau
|
| and Power BI. My goal is to deliver scalable models and actionable insights for decision-making."""
|
| )
|
| with col2:
|
| if st.button("Projects"):
|
| st.write(
|
| """**Projects include:**
|
| - McDonald's Food Items Analysis Dashboard
|
| - Retail Sales Prediction Machine Learning Model
|
| - Disaster Tweet Sentiment Analysis
|
| Explore detailed case studies on these topics!"""
|
| )
|
| with col3:
|
| if st.button("Contact"):
|
| st.write("Feel free to reach out via LinkedIn or email at [manish.gupta@example.com](mailto:manish.gupta@example.com)")
|
|
|
|
|
| st.write("---")
|
| st.header("Stay Updated")
|
| st.write("Subscribe to my newsletter for the latest updates on my work.")
|
| email = st.text_input("Enter your email:")
|
| if st.button("Subscribe"):
|
| if email:
|
| st.success(f"Thank you for subscribing, {email}! You'll hear from me soon.")
|
| else:
|
| st.error("Please enter a valid email address.")
|
|
|
|
|
| st.write("---")
|
| st.markdown(
|
| """<p style='text-align: center;'>
|
| Made with ❤️ in Streamlit | © 2025 Manish Gupta
|
| </p>""",
|
| unsafe_allow_html=True
|
| )
|
|
|