Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -50,15 +50,15 @@ with col2:
|
|
50 |
col3, col4 = st.columns(2)
|
51 |
with col3:
|
52 |
if st.button("Deep Learning"):
|
53 |
-
st.switch_page("deep_learning.py")
|
54 |
with col4:
|
55 |
if st.button("Statistics"):
|
56 |
-
st.switch_page("statistics.py")
|
57 |
|
58 |
col5, col6 = st.columns(2)
|
59 |
with col5:
|
60 |
if st.button("Excel"):
|
61 |
-
st.switch_page("excel.py")
|
62 |
with col6:
|
63 |
if st.button("SQL"):
|
64 |
-
st.switch_page("sql.py")
|
|
|
50 |
col3, col4 = st.columns(2)
|
51 |
with col3:
|
52 |
if st.button("Deep Learning"):
|
53 |
+
st.switch_page("pages/deep_learning.py")
|
54 |
with col4:
|
55 |
if st.button("Statistics"):
|
56 |
+
st.switch_page("pages/statistics.py")
|
57 |
|
58 |
col5, col6 = st.columns(2)
|
59 |
with col5:
|
60 |
if st.button("Excel"):
|
61 |
+
st.switch_page("pages/excel.py")
|
62 |
with col6:
|
63 |
if st.button("SQL"):
|
64 |
+
st.switch_page("pages/sql.py")
|