Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -45,7 +45,12 @@ if sidebar_option == "Introductory Tutorial":
|
|
45 |
|
46 |
# Display a logo or icon
|
47 |
image = Image.open("1.png") # Path to your image file
|
48 |
-
st.image(image,
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
# Add content descriptions
|
51 |
descriptions = [
|
|
|
45 |
|
46 |
# Display a logo or icon
|
47 |
image = Image.open("1.png") # Path to your image file
|
48 |
+
st.image(image, use_container_width=True) # You can adjust the width as needed
|
49 |
+
|
50 |
+
# Button to navigate to the external voice chat link
|
51 |
+
if st.button("Go to Sorting Simulator"):
|
52 |
+
st.write("Redirecting to Sorting Simulator...") # You can customize this message
|
53 |
+
st.markdown(f'<a href="https://shukdevdatta123-sorting-visualization.hf.space" target="_blank">Go to Sorting Simulator</a>', unsafe_allow_html=True)
|
54 |
|
55 |
# Add content descriptions
|
56 |
descriptions = [
|