Danny2014 commited on
Commit
37c725b
·
verified ·
1 Parent(s): 5f961f5

can you create a training session part for me - Follow Up Deployment

Browse files
Files changed (1) hide show
  1. index.html +123 -2
index.html CHANGED
@@ -109,7 +109,7 @@
109
  <a href="#home" class="hover:text-yellow-400 transition">Home</a>
110
  <a href="#team" class="hover:text-yellow-400 transition">Team</a>
111
  <a href="#matches" class="hover:text-yellow-400 transition">Matches</a>
112
- <a href="#training" class="hover:text-yellow-400 transition">Training</a>
113
  <a href="#gallery" class="hover:text-yellow-400 transition">Gallery</a>
114
  <a href="#contact" class="hover:text-yellow-400 transition">Contact</a>
115
  </div>
@@ -124,7 +124,7 @@
124
  <a href="#home" class="block py-2 hover:text-yellow-400 transition">Home</a>
125
  <a href="#team" class="block py-2 hover:text-yellow-400 transition">Team</a>
126
  <a href="#matches" class="block py-2 hover:text-yellow-400 transition">Matches</a>
127
- <a href="#training" class="block py-2 hover:text-yellow-400 transition">Training</a>
128
  <a href="#gallery" class="block py-2 hover:text-yellow-400 transition">Gallery</a>
129
  <a href="#contact" class="block py-2 hover:text-yellow-400 transition">Contact</a>
130
  </div>
@@ -178,6 +178,127 @@
178
  </div>
179
  </section>
180
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  <!-- Team Section -->
182
  <section id="team" class="py-16 bg-gray-100">
183
  <div class="container mx-auto px-6">
 
109
  <a href="#home" class="hover:text-yellow-400 transition">Home</a>
110
  <a href="#team" class="hover:text-yellow-400 transition">Team</a>
111
  <a href="#matches" class="hover:text-yellow-400 transition">Matches</a>
112
+ <a href="#training" class="hover:text-yellow-400 transition">Training Programs</a>
113
  <a href="#gallery" class="hover:text-yellow-400 transition">Gallery</a>
114
  <a href="#contact" class="hover:text-yellow-400 transition">Contact</a>
115
  </div>
 
124
  <a href="#home" class="block py-2 hover:text-yellow-400 transition">Home</a>
125
  <a href="#team" class="block py-2 hover:text-yellow-400 transition">Team</a>
126
  <a href="#matches" class="block py-2 hover:text-yellow-400 transition">Matches</a>
127
+ <a href="#training" class="block py-2 hover:text-yellow-400 transition">Training Programs</a>
128
  <a href="#gallery" class="block py-2 hover:text-yellow-400 transition">Gallery</a>
129
  <a href="#contact" class="block py-2 hover:text-yellow-400 transition">Contact</a>
130
  </div>
 
178
  </div>
179
  </section>
180
 
181
+ <!-- Training Programs Section -->
182
+ <section id="training" class="py-16 bg-white">
183
+ <div class="container mx-auto px-6">
184
+ <h2 class="logo-font text-4xl mb-12 text-center text-blue-900">Training Programs</h2>
185
+
186
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
187
+ <!-- Program 1 -->
188
+ <div class="bg-gray-100 rounded-lg overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
189
+ <div class="h-48 bg-blue-900 flex items-center justify-center">
190
+ <i class="fas fa-child text-6xl text-yellow-400"></i>
191
+ </div>
192
+ <div class="p-6">
193
+ <h3 class="text-2xl font-bold mb-3 text-blue-900">Youth Development</h3>
194
+ <p class="text-gray-700 mb-4">For ages 6-16 focusing on fundamental skills, teamwork and sportsmanship.</p>
195
+ <ul class="space-y-2 mb-6">
196
+ <li class="flex items-start">
197
+ <i class="fas fa-check text-yellow-500 mt-1 mr-2"></i>
198
+ <span>Monday & Wednesday 4-6 PM</span>
199
+ </li>
200
+ <li class="flex items-start">
201
+ <i class="fas fa-check text-yellow-500 mt-1 mr-2"></i>
202
+ <span>Saturday 9-11 AM</span>
203
+ </li>
204
+ <li class="flex items-start">
205
+ <i class="fas fa-check text-yellow-500 mt-1 mr-2"></i>
206
+ <span>Age-appropriate coaching</span>
207
+ </li>
208
+ </ul>
209
+ <a href="#register" class="inline-block bg-blue-900 hover:bg-blue-800 text-white px-6 py-2 rounded-lg transition">
210
+ Learn More
211
+ </a>
212
+ </div>
213
+ </div>
214
+
215
+ <!-- Program 2 -->
216
+ <div class="bg-gray-100 rounded-lg overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
217
+ <div class="h-48 bg-red-600 flex items-center justify-center">
218
+ <i class="fas fa-running text-6xl text-white"></i>
219
+ </div>
220
+ <div class="p-6">
221
+ <h3 class="text-2xl font-bold mb-3 text-blue-900">Adult Training</h3>
222
+ <p class="text-gray-700 mb-4">For players 17+ looking to improve skills, fitness and game understanding.</p>
223
+ <ul class="space-y-2 mb-6">
224
+ <li class="flex items-start">
225
+ <i class="fas fa-check text-yellow-500 mt-1 mr-2"></i>
226
+ <span>Tuesday & Thursday 7-9 PM</span>
227
+ </li>
228
+ <li class="flex items-start">
229
+ <i class="fas fa-check text-yellow-500 mt-1 mr-2"></i>
230
+ <span>Sunday 10 AM-12 PM</span>
231
+ </li>
232
+ <li class="flex items-start">
233
+ <i class="fas fa-check text-yellow-500 mt-1 mr-2"></i>
234
+ <span>Tactical and technical development</span>
235
+ </li>
236
+ </ul>
237
+ <a href="#register" class="inline-block bg-blue-900 hover:bg-blue-800 text-white px-6 py-2 rounded-lg transition">
238
+ Learn More
239
+ </a>
240
+ </div>
241
+ </div>
242
+
243
+ <!-- Program 3 -->
244
+ <div class="bg-gray-100 rounded-lg overflow-hidden shadow-lg transition duration-300 hover:shadow-xl">
245
+ <div class="h-48 bg-yellow-500 flex items-center justify-center">
246
+ <i class="fas fa-star text-6xl text-blue-900"></i>
247
+ </div>
248
+ <div class="p-6">
249
+ <h3 class="text-2xl font-bold mb-3 text-blue-900">Elite Program</h3>
250
+ <p class="text-gray-700 mb-4">Advanced training for competitive players looking to reach higher levels.</p>
251
+ <ul class="space-y-2 mb-6">
252
+ <li class="flex items-start">
253
+ <i class="fas fa-check text-yellow-500 mt-1 mr-2"></i>
254
+ <span>Monday-Friday 5-7 PM</span>
255
+ </li>
256
+ <li class="flex items-start">
257
+ <i class="fas fa-check text-yellow-500 mt-1 mr-2"></i>
258
+ <span>Personalized development plans</span>
259
+ </li>
260
+ <li class="flex items-start">
261
+ <i class="fas fa-check text-yellow-500 mt-1 mr-2"></i>
262
+ <span>Scouting opportunities</span>
263
+ </li>
264
+ </ul>
265
+ <a href="#register" class="inline-block bg-blue-900 hover:bg-blue-800 text-white px-6 py-2 rounded-lg transition">
266
+ Learn More
267
+ </a>
268
+ </div>
269
+ </div>
270
+ </div>
271
+
272
+ <!-- Training Features -->
273
+ <div class="mt-16 bg-blue-900 text-white rounded-lg p-8">
274
+ <h3 class="text-2xl font-bold mb-6 text-center">Our Training Philosophy</h3>
275
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
276
+ <div class="text-center">
277
+ <div class="w-16 h-16 bg-yellow-400 rounded-full flex items-center justify-center mx-auto mb-4">
278
+ <i class="fas fa-futbol text-2xl text-blue-900"></i>
279
+ </div>
280
+ <h4 class="font-bold mb-2">Technical Excellence</h4>
281
+ <p class="text-blue-200">Master ball control, passing, shooting and other fundamental skills.</p>
282
+ </div>
283
+ <div class="text-center">
284
+ <div class="w-16 h-16 bg-yellow-400 rounded-full flex items-center justify-center mx-auto mb-4">
285
+ <i class="fas fa-chess text-2xl text-blue-900"></i>
286
+ </div>
287
+ <h4 class="font-bold mb-2">Tactical Understanding</h4>
288
+ <p class="text-blue-200">Develop game intelligence and decision-making abilities.</p>
289
+ </div>
290
+ <div class="text-center">
291
+ <div class="w-16 h-16 bg-yellow-400 rounded-full flex items-center justify-center mx-auto mb-4">
292
+ <i class="fas fa-heartbeat text-2xl text-blue-900"></i>
293
+ </div>
294
+ <h4 class="font-bold mb-2">Physical Development</h4>
295
+ <p class="text-blue-200">Improve speed, strength, endurance and flexibility.</p>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </section>
301
+
302
  <!-- Team Section -->
303
  <section id="team" class="py-16 bg-gray-100">
304
  <div class="container mx-auto px-6">