Springboardmen commited on
Commit
8e4ec5e
Β·
verified Β·
1 Parent(s): 444c89f

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +6 -6
src/streamlit_app.py CHANGED
@@ -65,14 +65,14 @@ st.subheader("πŸ‹οΈ Available Equipment")
65
  equipment_map = {}
66
 
67
  # 🏠 Bodyweight
68
- st.markdown("### 🏠 Bodyweight / No Equipment")
69
  equipment_map["No Equipment"] = st.checkbox("No Equipment")
70
  equipment_map["Pull-up Bar"] = st.checkbox("Pull-up Bar")
71
  equipment_map["Dip Bars"] = st.checkbox("Dip Bars")
72
  equipment_map["Push-up Handles"] = st.checkbox("Push-up Handles")
73
 
74
  # πŸ‹οΈ Free Weights
75
- st.markdown("### πŸ‹οΈ Free Weights")
76
  equipment_map["Dumbbells"] = st.checkbox("Dumbbells")
77
  equipment_map["Adjustable Dumbbells"] = st.checkbox("Adjustable Dumbbells")
78
  equipment_map["Barbell"] = st.checkbox("Barbell")
@@ -81,7 +81,7 @@ equipment_map["Kettlebells"] = st.checkbox("Kettlebells")
81
  equipment_map["Medicine Ball"] = st.checkbox("Medicine Ball")
82
 
83
  # 🧘 Flexibility & Core
84
- st.markdown("### 🧘 Flexibility & Core")
85
  equipment_map["Yoga Mat"] = st.checkbox("Yoga Mat")
86
  equipment_map["Resistance Band"] = st.checkbox("Resistance Band")
87
  equipment_map["Bosu Ball"] = st.checkbox("Bosu Ball")
@@ -90,7 +90,7 @@ equipment_map["Foam Roller"] = st.checkbox("Foam Roller")
90
  equipment_map["Hula Hoop Ring"] = st.checkbox("Hula Hoop Ring")
91
 
92
  # πŸƒ Cardio Equipment
93
- st.markdown("### πŸƒ Cardio Equipment")
94
  equipment_map["Treadmill"] = st.checkbox("Treadmill")
95
  equipment_map["Exercise Bike"] = st.checkbox("Exercise Bike")
96
  equipment_map["Skipping Rope"] = st.checkbox("Skipping Rope")
@@ -99,7 +99,7 @@ equipment_map["Elliptical Trainer"] = st.checkbox("Elliptical Trainer")
99
  equipment_map["Stair Climber"] = st.checkbox("Stair Climber")
100
 
101
  # πŸ’ͺ Strength Machines
102
- st.markdown("### πŸ’ͺ Strength Machines")
103
  equipment_map["Incline Bench"] = st.checkbox("Incline Bench")
104
  equipment_map["Flat Bench"] = st.checkbox("Flat Bench")
105
  equipment_map["Smith Machine"] = st.checkbox("Smith Machine")
@@ -109,7 +109,7 @@ equipment_map["Lat Pulldown Machine"] = st.checkbox("Lat Pulldown Machine")
109
  equipment_map["Chest Press Machine"] = st.checkbox("Chest Press Machine")
110
 
111
  # βœ‹ Small Tools
112
- st.markdown("### βœ‹ Small Training Tools")
113
  equipment_map["Hand Gripper"] = st.checkbox("Hand Gripper")
114
  equipment_map["Wrist Roller"] = st.checkbox("Wrist Roller")
115
  equipment_map["Ankle Weights"] = st.checkbox("Ankle Weights")
 
65
  equipment_map = {}
66
 
67
  # 🏠 Bodyweight
68
+
69
  equipment_map["No Equipment"] = st.checkbox("No Equipment")
70
  equipment_map["Pull-up Bar"] = st.checkbox("Pull-up Bar")
71
  equipment_map["Dip Bars"] = st.checkbox("Dip Bars")
72
  equipment_map["Push-up Handles"] = st.checkbox("Push-up Handles")
73
 
74
  # πŸ‹οΈ Free Weights
75
+
76
  equipment_map["Dumbbells"] = st.checkbox("Dumbbells")
77
  equipment_map["Adjustable Dumbbells"] = st.checkbox("Adjustable Dumbbells")
78
  equipment_map["Barbell"] = st.checkbox("Barbell")
 
81
  equipment_map["Medicine Ball"] = st.checkbox("Medicine Ball")
82
 
83
  # 🧘 Flexibility & Core
84
+
85
  equipment_map["Yoga Mat"] = st.checkbox("Yoga Mat")
86
  equipment_map["Resistance Band"] = st.checkbox("Resistance Band")
87
  equipment_map["Bosu Ball"] = st.checkbox("Bosu Ball")
 
90
  equipment_map["Hula Hoop Ring"] = st.checkbox("Hula Hoop Ring")
91
 
92
  # πŸƒ Cardio Equipment
93
+
94
  equipment_map["Treadmill"] = st.checkbox("Treadmill")
95
  equipment_map["Exercise Bike"] = st.checkbox("Exercise Bike")
96
  equipment_map["Skipping Rope"] = st.checkbox("Skipping Rope")
 
99
  equipment_map["Stair Climber"] = st.checkbox("Stair Climber")
100
 
101
  # πŸ’ͺ Strength Machines
102
+
103
  equipment_map["Incline Bench"] = st.checkbox("Incline Bench")
104
  equipment_map["Flat Bench"] = st.checkbox("Flat Bench")
105
  equipment_map["Smith Machine"] = st.checkbox("Smith Machine")
 
109
  equipment_map["Chest Press Machine"] = st.checkbox("Chest Press Machine")
110
 
111
  # βœ‹ Small Tools
112
+
113
  equipment_map["Hand Gripper"] = st.checkbox("Hand Gripper")
114
  equipment_map["Wrist Roller"] = st.checkbox("Wrist Roller")
115
  equipment_map["Ankle Weights"] = st.checkbox("Ankle Weights")