1f6d7ba
65a0718
1f6d7ba
65a0718
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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)
|