Jagadeesh2411's picture
Update Home.py
bdf88c1 verified
import streamlit as st
# App Title
st.title("πŸš€ AI & Data Science Hub")
st.write("### Unlock Your Potential with Artificial Intelligence and Data Science")
# Introduction Section
st.info("""
Welcome to the **AI & Data Science Hub**! Whether you're a **beginner** exploring the world of AI or an **expert** looking to sharpen your skills, this platform offers hands-on tutorials, resources, and project workflows to level up your career.
""")
# Key Features Section
st.write("## 🌟 Key Features")
features = [
"πŸ“š **Step-by-Step Tutorials**: Understand AI & ML concepts with beginner-friendly lessons.",
"πŸ€– **Hands-on Algorithms**: Implement popular ML algorithms with code examples.",
"πŸ“Š **Real-World Datasets**: Practice on curated datasets for practical learning.",
"πŸ›  **End-to-End Projects**: Build complete AI/ML projects from scratch.",
"πŸ’‘ **Interview Preparation**: Crack technical interviews with focused Q&A resources."
]
# Display Features as a List
for feature in features:
st.markdown(f"- {feature}")
# Content Divider
st.markdown("---")
# Add a styled horizontal line
st.markdown("<hr style='border:1px solid #ddd;'>", unsafe_allow_html=True)
# Section: Hands-on Project Showcase
st.write("## πŸ›  Build Real Projects")
st.write("""
Gain real experience by building complete AI projects step-by-step. Below are some examples to get you started:
""")
project_examples = {
"βœ… Crop Recommendation System": "Suggest which crop is better for their fields by collecting samples like Rainfall, PH, Temperature, Humidity, Nitrogen, Phosphorus, etc.",
"βœ… Automating Government Services using AI": "Take feedback from people to check satisfaction with government services using text and video capturing processes.",
}
for project, description in project_examples.items():
st.markdown(f"### {project}")
st.write(f"{description}\n")
# Add a Call-To-Action Button
st.markdown("<br>", unsafe_allow_html=True)
st.markdown("<center>", unsafe_allow_html=True)
st.button("Get Started With Projects πŸš€")
st.markdown("</center>", unsafe_allow_html=True)
# About Author Section
st.markdown("---")
st.write("## πŸ‘€ About the Creator")
st.markdown("""
**Hi there! πŸ‘‹ I'm Mende Jagadeesh, a passionate AI enthusiast and Data Science professional.
With a background in Machine Learning and Big Data Technologies, I specialize in:
""")
# Skills Section in Columns
skills_col1, skills_col2 = st.columns(2)
with skills_col1:
st.write("### Skills")
st.write("""
- Programming: **Python, R, SQL**
- Data Visualization: **Tableau, Power BI, Matplotlib**
- Machine Learning: **Scikit-Learn**
""")
# Social Links with Buttons
st.write("### 🌐 Connect with Me")
col1, col2, col3, col4 = st.columns(4)
with col1:
st.link_button("LinkedIn", "https://www.linkedin.com/in/mende-jagadeesh-02922323a/", type="primary")
with col2:
st.link_button("GitHub", "https://github.com/Jagadeesh2411", type="secondary")
with col3:
st.link_button("Email Me", "mailto:jagadeesh.mende2401@gmail.com", type="primary")
with col4:
st.write("πŸ“ž **Contact Number**: 7032440692")
# Footer Section
st.markdown("---")
st.markdown("""
<center>
<p style='font-size:14px; color:#888;'> Β© 2024 AI & Data Science Hub. All Rights Reserved. </p>
</center>
""", unsafe_allow_html=True)