Anne314159 commited on
Commit
1d04a42
·
verified ·
1 Parent(s): 4ba8de1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
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()