Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -35,9 +35,13 @@ def page_test():
|
|
| 35 |
st.write('This is a test page with a test name.')
|
| 36 |
|
| 37 |
# Setup the sidebar with page selection
|
| 38 |
-
st.sidebar.title("Anne's Current Projects")
|
| 39 |
-
page = st.sidebar.radio('Select a Page:', ['Social Media Content Generator', 'Test Page'])
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
# Display the selected page
|
| 42 |
if page == 'Social Media Content Generator':
|
| 43 |
page_social_media_generator()
|
|
|
|
| 35 |
st.write('This is a test page with a test name.')
|
| 36 |
|
| 37 |
# Setup the sidebar with page selection
|
| 38 |
+
st.sidebar.title("Anne's Current Projects :star2:")
|
|
|
|
| 39 |
|
| 40 |
+
page = st.selectbox(
|
| 41 |
+
'What project do you like to see first?',
|
| 42 |
+
('Social Media Content Generator', 'Test Page'))
|
| 43 |
+
|
| 44 |
+
st.write('You selected:', option)
|
| 45 |
# Display the selected page
|
| 46 |
if page == 'Social Media Content Generator':
|
| 47 |
page_social_media_generator()
|