Update my_pages/pre_information_loss.py
Browse files
my_pages/pre_information_loss.py
CHANGED
|
@@ -1,7 +1,9 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
-
from utils import
|
| 3 |
|
| 4 |
def render():
|
|
|
|
|
|
|
| 5 |
paragraphs = [
|
| 6 |
("Welcome to the Multiplicity Interactive Demo.", 2),
|
| 7 |
("In this demo, you will explore how developer choices create a multiverse of possible models, "
|
|
@@ -11,6 +13,4 @@ def render():
|
|
| 11 |
"and returning as you wish, or follow the guided tutorial which will go through all pieces in order.", 2)
|
| 12 |
]
|
| 13 |
|
| 14 |
-
add_fadein_text(paragraphs)
|
| 15 |
-
|
| 16 |
-
add_bottom_navigation("landing", "information_loss")
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
from utils import add_navigation, add_fadein_text
|
| 3 |
|
| 4 |
def render():
|
| 5 |
+
add_navigation("landing", "information_loss")
|
| 6 |
+
|
| 7 |
paragraphs = [
|
| 8 |
("Welcome to the Multiplicity Interactive Demo.", 2),
|
| 9 |
("In this demo, you will explore how developer choices create a multiverse of possible models, "
|
|
|
|
| 13 |
"and returning as you wish, or follow the guided tutorial which will go through all pieces in order.", 2)
|
| 14 |
]
|
| 15 |
|
| 16 |
+
add_fadein_text(paragraphs)
|
|
|
|
|
|