prakharg24 commited on
Commit
a5a822a
·
verified ·
1 Parent(s): 7650f6e

Update my_pages/landing.py

Browse files
Files changed (1) hide show
  1. my_pages/landing.py +18 -9
my_pages/landing.py CHANGED
@@ -1,18 +1,27 @@
1
  import streamlit as st
2
- from utils import add_navigation
3
 
4
  def render():
5
  add_navigation(None, "txt_information_loss")
6
-
7
- st.markdown(
8
  """
9
- <div style='text-align: center; font-size:18px; color:gray;'>
10
  Welcome to the Multiplicity Interactive Demo.<br><br>
11
  In this demo, you will explore how developer choices create a multiverse of possible models,
12
  and how these choices connect to concerns of arbitrariness and homogenization in AI.<br><br>
13
  Use the navigation buttons at the top of each page to move through the demo.
14
- To begin the demo, click 'Next'.<br><br>
15
- </div>
16
- """,
17
- unsafe_allow_html=True
18
- )
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
+ from utils import add_navigation, add_instruction_text
3
 
4
  def render():
5
  add_navigation(None, "txt_information_loss")
6
+
7
+ add_instruction_text(
8
  """
 
9
  Welcome to the Multiplicity Interactive Demo.<br><br>
10
  In this demo, you will explore how developer choices create a multiverse of possible models,
11
  and how these choices connect to concerns of arbitrariness and homogenization in AI.<br><br>
12
  Use the navigation buttons at the top of each page to move through the demo.
13
+ To begin the demo, click 'Next'.
14
+ """
15
+ )
16
+ # st.markdown(
17
+ # """
18
+ # <div style='text-align: center; font-size:18px; color:gray;'>
19
+ # Welcome to the Multiplicity Interactive Demo.<br><br>
20
+ # In this demo, you will explore how developer choices create a multiverse of possible models,
21
+ # and how these choices connect to concerns of arbitrariness and homogenization in AI.<br><br>
22
+ # Use the navigation buttons at the top of each page to move through the demo.
23
+ # To begin the demo, click 'Next'.<br><br>
24
+ # </div>
25
+ # """,
26
+ # unsafe_allow_html=True
27
+ # )