Update app.py
Browse files
app.py
CHANGED
@@ -43,19 +43,19 @@ def main():
|
|
43 |
|
44 |
with col1:
|
45 |
if st.button("Positive Quotes"):
|
46 |
-
st.switch_page("/positive_quotes.py")
|
47 |
|
48 |
with col2:
|
49 |
if st.button("Music Recommendations"):
|
50 |
-
st.switch_page("music_recommendations.py")
|
51 |
|
52 |
with col3:
|
53 |
if st.button("Physical Activity"):
|
54 |
-
st.switch_page("physical_activity.py")
|
55 |
|
56 |
with col4:
|
57 |
if st.button("Talk to a Friend"):
|
58 |
-
st.switch_page("talk_to_friend.py")
|
59 |
# Here you would implement the logic to connect with a friend or support person
|
60 |
|
61 |
if __name__ == "__main__":
|
|
|
43 |
|
44 |
with col1:
|
45 |
if st.button("Positive Quotes"):
|
46 |
+
st.switch_page("pages/positive_quotes.py")
|
47 |
|
48 |
with col2:
|
49 |
if st.button("Music Recommendations"):
|
50 |
+
st.switch_page("pages/music_recommendations.py")
|
51 |
|
52 |
with col3:
|
53 |
if st.button("Physical Activity"):
|
54 |
+
st.switch_page("pages/physical_activity.py")
|
55 |
|
56 |
with col4:
|
57 |
if st.button("Talk to a Friend"):
|
58 |
+
st.switch_page("pages/talk_to_friend.py")
|
59 |
# Here you would implement the logic to connect with a friend or support person
|
60 |
|
61 |
if __name__ == "__main__":
|