Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +13 -6
src/streamlit_app.py
CHANGED
|
@@ -1,9 +1,16 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
-
st.title("FIT Plan AI
|
| 4 |
-
st.selectbox("Select", Flexible,
|
| 5 |
-
Weight loss,
|
| 6 |
-
build muscle,
|
| 7 |
-
Strength gaining,
|
| 8 |
-
abs building)
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
|
| 3 |
+
st.title("FIT Plan AI – Personalized Fitness Plan Generator")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
+
goal = st.selectbox(
|
| 6 |
+
"Goal",
|
| 7 |
+
[
|
| 8 |
+
"Flexibility",
|
| 9 |
+
"Weight Loss",
|
| 10 |
+
"Build Muscle",
|
| 11 |
+
"Strength Gaining",
|
| 12 |
+
"Abs Building"
|
| 13 |
+
]
|
| 14 |
+
)
|
| 15 |
+
|
| 16 |
+
st.write("You selected:", goal)
|