File size: 698 Bytes
dc171c8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import streamlit as st

def contact_page():
    """
    Render the contact page
    """
    st.title("Contact")
    
    st.write("""
    ### Get in Touch
    
    For questions, feedback, or suggestions about this application, please feel free to reach out.
    
    **Email**: [email protected]
    
    ### Repository
    
    This project is open-source. Find the code on GitHub:
    [streamlit-schedular-app](https://github.com/yourusername/streamlit-schedular-app)
    
    ### License
    
    This project is licensed under the MIT License. See the LICENSE file for more details.
    """)

# Make sure the function can be executed standalone
if __name__ == "__main__":
    contact_page()