rossmann / pages /port.py
manish72's picture
Upload 16 files
6654368 verified
import streamlit as st
from PIL import Image
# Set page configuration
st.set_page_config(
page_title="Welcome to Manish Gupta's Portfolio",
page_icon="📝",
layout="centered",
initial_sidebar_state="collapsed"
)
# Add a header image or logo
# image = Image.open("images\mg.png") # Replace with your image path
# st.image(image, use_column_width=True)
# Add title and subtitle
st.title("Welcome to My Data Science Portfolio")
st.subheader("Exploring insights, building models, and sharing my journey as a Data Scientist.")
# Add a short description
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!"""
)
# Add interactive buttons
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)")
# Add a contact form or newsletter subscription
st.write("---") # Divider
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.")
# Footer section
st.write("---")
st.markdown(
"""<p style='text-align: center;'>
Made with ❤️ in Streamlit | © 2025 Manish Gupta
</p>""",
unsafe_allow_html=True
)