Update app.py
Browse files
app.py
CHANGED
@@ -35,6 +35,36 @@ st.write("This is section 3 content")
|
|
35 |
for i in range(5):
|
36 |
st.write(f"Content line {i}")
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
|
40 |
# --- SHARED ON ALL PAGES ---
|
|
|
35 |
for i in range(5):
|
36 |
st.write(f"Content line {i}")
|
37 |
|
38 |
+
st.header("Section 4", anchor="section4")
|
39 |
+
st.write("This is section 1 content")
|
40 |
+
for i in range(5):
|
41 |
+
st.write(f"Content line {i}")
|
42 |
+
|
43 |
+
st.header("Section 5", anchor="section5")
|
44 |
+
st.write("This is section 2 content")
|
45 |
+
for i in range(5):
|
46 |
+
st.write(f"Content line {i}")
|
47 |
+
|
48 |
+
st.header("Section 6", anchor="section6")
|
49 |
+
st.write("This is section 3 content")
|
50 |
+
for i in range(5):
|
51 |
+
st.write(f"Content line {i}")
|
52 |
+
|
53 |
+
st.header("Section 7", anchor="section7")
|
54 |
+
st.write("This is section 1 content")
|
55 |
+
for i in range(5):
|
56 |
+
st.write(f"Content line {i}")
|
57 |
+
|
58 |
+
st.header("Section 8", anchor="section8")
|
59 |
+
st.write("This is section 2 content")
|
60 |
+
for i in range(5):
|
61 |
+
st.write(f"Content line {i}")
|
62 |
+
|
63 |
+
st.header("Section 9", anchor="section9")
|
64 |
+
st.write("This is section 3 content")
|
65 |
+
for i in range(5):
|
66 |
+
st.write(f"Content line {i}")
|
67 |
+
|
68 |
|
69 |
|
70 |
# --- SHARED ON ALL PAGES ---
|