RajaThor commited on
Commit
f5b9f23
·
verified ·
1 Parent(s): e4a1497

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -17
app.py CHANGED
@@ -418,23 +418,9 @@ def tour_guide_ui():
418
  st.title("🗺️ Tour Guide")
419
  st.markdown("This tour will guide you through the application.")
420
 
421
- with st.expander("Welcome"):
422
- st.write("This is a tour guide to help you navigate through the application.")
423
-
424
- with st.expander("Options Sidebar"):
425
- st.write("Here you can select different options such as adding a person, recognizing a face, deleting a person, or recognizing a face with optimal identification.")
426
-
427
- with st.expander("Main Interface"):
428
- st.write("This is where the main functionality of the application is displayed.")
429
-
430
- with st.expander("Upload Image"):
431
- st.write("You can upload an image here for face recognition or adding a person.")
432
-
433
- with st.expander("Text Input"):
434
- st.write("Enter text here such as the person's name or Instagram handle.")
435
-
436
- with st.expander("Buttons"):
437
- st.write("Click on these buttons to perform actions like adding a person or recognizing a face.")
438
 
439
  def authenticate_user_ui():
440
  # Display logo and title
 
418
  st.title("🗺️ Tour Guide")
419
  st.markdown("This tour will guide you through the application.")
420
 
421
+ for step in steps:
422
+ with st.expander(step["title"]):
423
+ st.write(step["content"])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
424
 
425
  def authenticate_user_ui():
426
  # Display logo and title