corvo7 commited on
Commit
1b32b4c
·
verified ·
1 Parent(s): 533ad36

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -4
app.py CHANGED
@@ -1,9 +1,17 @@
1
  import streamlit as st
2
 
3
-
4
  with st.container():
5
  st.subheader("About the web app")
6
  st.markdown("-----------------------------------------------------------------")
7
- st.page_link("pages/page_1.py", label="Intro", icon="1️⃣")
8
- st.page_link("pages/page_2.py", label="Roadmap", icon="2️⃣", disabled=True)
9
- st.page_link("http://www.google.com", label="Google", icon="🌎")
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ st.title("Data Analysis With Python")
4
  with st.container():
5
  st.subheader("About the web app")
6
  st.markdown("-----------------------------------------------------------------")
7
+
8
+ col1, col2, = st.columns(2)
9
+
10
+ with col1:
11
+ st.page_link("pages/page_1.py", label="Intro", icon="1️⃣")
12
+
13
+ with col2:
14
+ st.page_link("pages/page_2.py", label="Roadmap", icon="2️⃣")
15
+
16
+
17
+