Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -28,6 +28,10 @@ sidebar_option = st.sidebar.radio("Select an option",
|
|
28 |
# Display content when "Select an option" is chosen
|
29 |
if sidebar_option == "Introductory Tutorial":
|
30 |
st.title("Graph Visualization and Analysis Options")
|
|
|
|
|
|
|
|
|
31 |
|
32 |
# Add content descriptions
|
33 |
descriptions = [
|
|
|
28 |
# Display content when "Select an option" is chosen
|
29 |
if sidebar_option == "Introductory Tutorial":
|
30 |
st.title("Graph Visualization and Analysis Options")
|
31 |
+
|
32 |
+
# Display a logo or icon
|
33 |
+
image = Image.open("1.png") # Path to your image file
|
34 |
+
st.image(image, width=200) # You can adjust the width as needed
|
35 |
|
36 |
# Add content descriptions
|
37 |
descriptions = [
|