Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| st.markdown("<h1 style='text-align: center; color: grey;'>Data Analysis With Python 🕵</h1>", 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/Intro.py", label="Intro", icon="1️⃣") | |
| with col2: | |
| st.page_link("pages/RoadMap.py", label="Roadmap", icon="2️⃣",) | |