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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -28,12 +28,11 @@ def main():
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
 
 
28
  # Sidebar
29
  with st.sidebar:
30
  st.header("Menu")
31
+ col1 = st.columns(1)[0]
32
+ with col1:
33
+ st.button("πŸ“– About Us", use_container_width=True)
34
+ st.button("πŸ“ž Contact Us", use_container_width=True)
35
+ st.button("πŸ’¬ Feedback", use_container_width=True)
 
36
 
37
  tab1, tab2, tab3, tab4 = st.tabs(["Image Load", "Take Picture", "Live", "Text2Sign"])
38