workouts/app.py
2026-02-22 22:07:23 -07:00

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()