Spaces:
Sleeping
Sleeping
File size: 897 Bytes
13cd642 00ff30f a7bf951 45dee7e 4cbb66a 45dee7e 533ad36 d7fd3f5 533ad36 1b32b4c 7a3992d 1b32b4c 7a3992d 1b32b4c 7a3992d 1b32b4c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import streamlit as st
st.markdown("<h1 style='text-align: center; color: grey;'>Data Analysis With Python 🕵</h1>", unsafe_allow_html=True)
#st.title("Data Analysis With Python")
st.markdown(
"""
<style>
.reportview-container {
background: url("https://images.app.goo.gl/LFCobouKtT7oZ7Qv7")
}
.sidebar .sidebar-content {
background: url("https://images.app.goo.gl/LFCobouKtT7oZ7Qv7")
}
</style>
""",
unsafe_allow_html=True
)
with st.container():
st.markdown("<h2 style='text-align: center; color: grey;'>About the web app </h2>", unsafe_allow_html=True)
st.markdown("-----------------------------------------------------------------")
col1, col2, = st.columns(2,gap="small")
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️⃣",)
|