Update app.py
Browse files
app.py
CHANGED
|
@@ -26,6 +26,18 @@ sidebar_option = st.sidebar.radio("Select an option",
|
|
| 26 |
"Graph: DAG - Topological Layout", "Graph: Erdos Renyi", "Graph: Karate Club", "Graph: Minimum Spanning Tree",
|
| 27 |
"Graph: Triads", "Algorithms: Cycle Detection", "Algorithms: Greedy Coloring"])
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
# Display content when "Select an option" is chosen
|
| 30 |
if sidebar_option == "Introductory Tutorial":
|
| 31 |
st.title("Graph Visualization and Analysis Options")
|
|
|
|
| 26 |
"Graph: DAG - Topological Layout", "Graph: Erdos Renyi", "Graph: Karate Club", "Graph: Minimum Spanning Tree",
|
| 27 |
"Graph: Triads", "Algorithms: Cycle Detection", "Algorithms: Greedy Coloring"])
|
| 28 |
|
| 29 |
+
# Add Contact information in the sidebar
|
| 30 |
+
st.sidebar.markdown("""
|
| 31 |
+
## Contact
|
| 32 |
+
|
| 33 |
+
For any questions or issues, please contact:
|
| 34 |
+
|
| 35 |
+
- **Email**: [shukdevdatta@gmail.com](mailto:shukdevdatta@gmail.com)
|
| 36 |
+
- **GitHub**: [Click here to access the Github Profile](https://github.com/shukdevtroy)
|
| 37 |
+
- **WhatsApp**: [Click here to chat](https://wa.me/+8801719296601)
|
| 38 |
+
- **HuggingFace Profile**: [Click here to access the HuggingFace Profile](https://huggingface.co/shukdevdatta123)
|
| 39 |
+
""")
|
| 40 |
+
|
| 41 |
# Display content when "Select an option" is chosen
|
| 42 |
if sidebar_option == "Introductory Tutorial":
|
| 43 |
st.title("Graph Visualization and Analysis Options")
|