AamirMalik commited on
Commit
2051c66
Β·
verified Β·
1 Parent(s): bde03fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -28,11 +28,12 @@ def main():
28
  # Sidebar
29
  with st.sidebar:
30
  st.header("Menu")
31
- st.info("Use the tabs to navigate between features.")
32
- st.markdown("- πŸ“Έ **Image Load**: Upload an image to detect signs")
33
- st.markdown("- πŸ“· **Take Picture**: Capture a sign using your camera")
34
- st.markdown("- πŸ“Ή **Live**: Detect signs in real-time")
35
- st.markdown("- πŸ“ **Text2Sign**: Convert text into sign language video")
 
36
 
37
  tab1, tab2, tab3, tab4 = st.tabs(["Image Load", "Take Picture", "Live", "Text2Sign"])
38
 
 
28
  # Sidebar
29
  with st.sidebar:
30
  st.header("Menu")
31
+ if st.button("πŸ“– About Us"):
32
+ st.write("We are team SignAI. We leverage advanced AI to interpret sign language gestures, making communication more accessible.")
33
+ if st.button("πŸ“ž Contact Us"):
34
+ st.write("Phone: +123 456 7890\nLinkedIn: [SignAI](#)\nFacebook: [SignAI](#)\nEmail: info@signai.com\nInstagram: [@signai_official](#)")
35
+ if st.button("πŸ’¬ Feedback"):
36
+ st.text_area("We value your feedback! Please share your thoughts below:")
37
 
38
  tab1, tab2, tab3, tab4 = st.tabs(["Image Load", "Take Picture", "Live", "Text2Sign"])
39