Spaces:
Sleeping
Sleeping
File size: 392 Bytes
13cd642 533ad36 1b32b4c 533ad36 1b32b4c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
st.title("Data Analysis With Python")
with st.container():
st.subheader("About the web app")
st.markdown("-----------------------------------------------------------------")
col1, col2, = st.columns(2)
with col1:
st.page_link("pages/page_1.py", label="Intro", icon="1️⃣")
with col2:
st.page_link("pages/page_2.py", label="Roadmap", icon="2️⃣")
|