import streamlit as st
# Set page configuration
st.set_page_config(page_title="Innomatics Data Science Chat Bot", layout="centered")
# Custom CSS styling
st.markdown("""
""", unsafe_allow_html=True)
# st.set_page_config(page_title="Innomatics Data Science Chat Bot", layout="centered")
# Glass Panel Wrapper
with st.container():
# st.markdown('
', unsafe_allow_html=True)
st.title("π€ Innomatics Data Science Chat Bot")
st.markdown("### π Hey there! Ready to level up with your smart learning buddy?")
st.markdown("Your AI-powered companion is here to simplify your Data Science journey and tackle every doubt along the way!")
st.markdown("π *Ready to explore? Pick a domain to get started!*")
# Grid of subject buttons
subjects = [
("π Python", "pages/python.py"),
("π§ Machine Learning", "pages/machine_learning.py"),
("πΈοΈ Deep Learning", "pages/Deep_Learning.py"),
("π Statistics", "pages/Statistics.py"),
("β¨ GenAI", "pages/GenAI.py"),
("π’οΈ SQL", "pages/Sql.py")
]
# Render buttons in a grid (3 per row)
for i in range(0, len(subjects), 3):
cols = st.columns([1, 1, 1])
for j in range(3):
if i + j < len(subjects):
with cols[j]:
if st.button(subjects[i + j][0]):
st.switch_page(subjects[i + j][1])
st.markdown("---")
st.markdown("π§ *Letβs unravel every concept together β your questions fuel the journey!*")
st.markdown('
', unsafe_allow_html=True)