Create pages/landing.py
Browse files- pages/landing.py +17 -0
pages/landing.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
from utils import go_to
|
| 3 |
+
|
| 4 |
+
def render():
|
| 5 |
+
st.markdown(
|
| 6 |
+
"""
|
| 7 |
+
<div style='text-align: center; font-size:14px; color:gray;'>
|
| 8 |
+
Welcome to the Multiplicity Interactive Demo.<br><br>
|
| 9 |
+
In this demo, you will explore how developer decisions create a multiverse of possible models,
|
| 10 |
+
and how these connect to concepts like arbitrariness, homogenization, and the ICA framework.<br><br>
|
| 11 |
+
Follow the steps to see your decisions in context.
|
| 12 |
+
</div>
|
| 13 |
+
""",
|
| 14 |
+
unsafe_allow_html=True
|
| 15 |
+
)
|
| 16 |
+
if st.button("Get Started"):
|
| 17 |
+
go_to("main")
|