workouts/app.py

18 lines
386 B
Python
Raw Normal View History

2026-02-22 22:07:23 -07:00
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()