18 lines
No EOL
386 B
Python
18 lines
No EOL
386 B
Python
import streamlit as st
|
|
|
|
# Streamlit Landing Page
|
|
|
|
# Pages Setup
|
|
|
|
pages = {
|
|
"MySQL Databases":[],
|
|
"______________________":[],
|
|
"Workouts": [
|
|
st.Page("views/workouts_form.py",title = "Workouts Form"),
|
|
st.Page("views/workouts_report.py",title = "Workouts Report"),
|
|
st.Page("views/workouts_templates.py",title = "Workout Templates")]
|
|
}
|
|
|
|
# Navigation Setup
|
|
pg = st.navigation(pages)
|
|
pg.run() |