Spaces:
Sleeping
Sleeping
File size: 769 Bytes
1f6d7ba 65a0718 1f6d7ba 52b959d c704836 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 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.subheader("Available Equipment")
dumbbells = st.checkbox("Dumbbells")
bands = st.checkbox("Resistance Bands")
Yoga = st.checkbox("Yoga mat")
Inclined bench = st.checkbox("Inclined bench")
Thread mill = st.checkbox("Thread mill")
Cycle = st.checkbox("Cycle")
Skipping rope = st.checkbox("Skipping rope")
Hand gripper = st.checkbox("Hand gripper")
PullUps = st.checkbox("Pullups bar")
Weight = st.checkbox("Weight Plates")
Hula = st.checkbox("Hula hoop ring")
bosu = st.checkbox("Bosu ball")
no_equipment = st.checkbox("No Equipment")
st.write("You selected:", goal)
|