Module_2 / src /streamlit_app.py
Springboardmen's picture
Update src/streamlit_app.py
65a0718 verified
raw
history blame
290 Bytes
import streamlit as st
st.title("FIT Plan AI – Personalized Fitness Plan Generator")
goal = st.selectbox(
"Goal",
[
"Flexibility",
"Weight Loss",
"Build Muscle",
"Strength Gaining",
"Abs Building"
]
)
st.write("You selected:", goal)