Update src/streamlit_app.py
Browse files- src/streamlit_app.py +7 -0
src/streamlit_app.py
CHANGED
|
@@ -12,6 +12,13 @@ st.set_page_config(page_title="π§ AI Mentor Hub", page_icon="π")
|
|
| 12 |
st.title("π AI Mentor Hub - Learn Smarter, Faster!")
|
| 13 |
|
| 14 |
st.markdown("### π Select your mentor and ask any question:")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
# Emoji mentor labels
|
| 17 |
mentor_labels = {
|
|
|
|
| 12 |
st.title("π AI Mentor Hub - Learn Smarter, Faster!")
|
| 13 |
|
| 14 |
st.markdown("### π Select your mentor and ask any question:")
|
| 15 |
+
col1, col2, col3, col4, col5, col6 = st.columns(6)
|
| 16 |
+
with col1: st.write("π Python")
|
| 17 |
+
with col2: st.write("π€ ML")
|
| 18 |
+
with col3: st.write("π§ DL")
|
| 19 |
+
with col4: st.write("π Stats")
|
| 20 |
+
with col5: st.write("π§Ύ Data_Anaylasis")
|
| 21 |
+
with col6: st.write("ποΈ sql and powerbi")
|
| 22 |
|
| 23 |
# Emoji mentor labels
|
| 24 |
mentor_labels = {
|