Update my_pages/ica.py
Browse files- my_pages/ica.py +3 -10
my_pages/ica.py
CHANGED
|
@@ -6,6 +6,8 @@ from utils import go_to
|
|
| 6 |
plt.style.use('dark_background')
|
| 7 |
|
| 8 |
def render():
|
|
|
|
|
|
|
| 9 |
st.markdown(
|
| 10 |
"""
|
| 11 |
<div style='text-align: center; font-size:18px; color:gray;'>
|
|
@@ -119,13 +121,4 @@ def render():
|
|
| 119 |
st.markdown(
|
| 120 |
f"<div style='text-align:center; color:#c0392b; font-size:20px; font-weight:bold; margin:14px 0;'>{text_to_show}</div>",
|
| 121 |
unsafe_allow_html=True,
|
| 122 |
-
)
|
| 123 |
-
|
| 124 |
-
st.markdown("---")
|
| 125 |
-
col1, col2, col3, col4 = st.columns([2, 1, 1, 1])
|
| 126 |
-
with col3:
|
| 127 |
-
if st.button("Go Home"):
|
| 128 |
-
go_to("home")
|
| 129 |
-
with col4:
|
| 130 |
-
if st.button("Next"):
|
| 131 |
-
go_to("multiverse")
|
|
|
|
| 6 |
plt.style.use('dark_background')
|
| 7 |
|
| 8 |
def render():
|
| 9 |
+
add_navigation("txt_ica", "txt_multiverse")
|
| 10 |
+
|
| 11 |
st.markdown(
|
| 12 |
"""
|
| 13 |
<div style='text-align: center; font-size:18px; color:gray;'>
|
|
|
|
| 121 |
st.markdown(
|
| 122 |
f"<div style='text-align:center; color:#c0392b; font-size:20px; font-weight:bold; margin:14px 0;'>{text_to_show}</div>",
|
| 123 |
unsafe_allow_html=True,
|
| 124 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|