Data_Analysis / app.py
corvo7's picture
Create app.py
13cd642 verified
raw
history blame
287 Bytes
import streamlit as st
st.page_link("your_app.py", label="Home", icon="🏠")
st.page_link("pages/page_1.py", label="Page 1", icon="1️⃣")
st.page_link("pages/page_2.py", label="Page 2", icon="2️⃣", disabled=True)
st.page_link("http://www.google.com", label="Google", icon="🌎")