Yalexis commited on
Commit
f520f81
·
verified ·
1 Parent(s): 8e49bee

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +510 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Basketball Donation Page
3
- emoji: 🚀
4
- colorFrom: pink
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: basketball-donation-page
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,510 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Hoops for Hope - Support Our Team</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .donation-card:hover {
11
+ transform: translateY(-5px);
12
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
13
+ }
14
+ .progress-bar {
15
+ transition: width 1s ease-in-out;
16
+ }
17
+ .animate-bounce-slow {
18
+ animation: bounce-slow 2s infinite;
19
+ }
20
+ @keyframes bounce-slow {
21
+ 0%, 100% {
22
+ transform: translateY(0);
23
+ }
24
+ 50% {
25
+ transform: translateY(-10px);
26
+ }
27
+ }
28
+ .player-card:hover img {
29
+ transform: scale(1.05);
30
+ }
31
+ </style>
32
+ </head>
33
+ <body class="bg-gray-50 font-sans">
34
+ <!-- Header with Navigation -->
35
+ <header class="bg-blue-900 text-white shadow-lg">
36
+ <div class="container mx-auto px-4 py-6 flex justify-between items-center">
37
+ <div class="flex items-center space-x-2">
38
+ <i class="fas fa-basketball-ball text-3xl text-orange-500"></i>
39
+ <h1 class="text-2xl font-bold">Hoops for Hope</h1>
40
+ </div>
41
+ <nav>
42
+ <ul class="flex space-x-6">
43
+ <li><a href="#about" class="hover:text-orange-400 transition">About</a></li>
44
+ <li><a href="#team" class="hover:text-orange-400 transition">Team</a></li>
45
+ <li><a href="#donate" class="hover:text-orange-400 transition">Donate</a></li>
46
+ <li><a href="#contact" class="hover:text-orange-400 transition">Contact</a></li>
47
+ </ul>
48
+ </nav>
49
+ </div>
50
+ </header>
51
+
52
+ <!-- Hero Section -->
53
+ <section class="relative bg-gradient-to-r from-blue-800 to-blue-600 text-white py-20">
54
+ <div class="absolute inset-0 opacity-20 bg-[url('https://images.unsplash.com/photo-1546519638-68e109498ffc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1790&q=80')] bg-cover bg-center"></div>
55
+ <div class="container mx-auto px-4 relative z-10 text-center">
56
+ <h1 class="text-5xl font-bold mb-6 animate-bounce-slow">Support Our Basketball Journey</h1>
57
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Help us reach new heights this season! Your donation will fund equipment, travel, and community programs.</p>
58
+ <div class="flex justify-center space-x-4">
59
+ <a href="#donate" class="bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-8 rounded-full transition transform hover:scale-105">Donate Now</a>
60
+ <a href="#about" class="bg-transparent border-2 border-white hover:bg-white hover:text-blue-800 text-white font-bold py-3 px-8 rounded-full transition">Learn More</a>
61
+ </div>
62
+ </div>
63
+ </section>
64
+
65
+ <!-- Progress Bar -->
66
+ <section class="bg-white py-12 shadow-md">
67
+ <div class="container mx-auto px-4">
68
+ <div class="max-w-4xl mx-auto">
69
+ <h2 class="text-3xl font-bold text-center mb-6 text-blue-900">Our Fundraising Goal</h2>
70
+ <div class="mb-4 flex justify-between">
71
+ <span class="font-semibold">$8,250 raised</span>
72
+ <span class="font-semibold">$15,000 goal</span>
73
+ </div>
74
+ <div class="w-full bg-gray-200 rounded-full h-4 mb-6">
75
+ <div class="progress-bar bg-orange-500 h-4 rounded-full" style="width: 55%"></div>
76
+ </div>
77
+ <p class="text-center text-gray-600">55% of our goal achieved! Help us cross the finish line.</p>
78
+ </div>
79
+ </div>
80
+ </section>
81
+
82
+ <!-- About Section -->
83
+ <section id="about" class="py-16 bg-gray-50">
84
+ <div class="container mx-auto px-4">
85
+ <div class="flex flex-col md:flex-row items-center">
86
+ <div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
87
+ <img src="https://images.unsplash.com/photo-1600185365483-26d7a4cc7519?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1025&q=80"
88
+ alt="Basketball team huddle"
89
+ class="rounded-lg shadow-xl w-full h-auto">
90
+ </div>
91
+ <div class="md:w-1/2">
92
+ <h2 class="text-3xl font-bold mb-6 text-blue-900">About Hoops for Hope</h2>
93
+ <p class="text-gray-700 mb-4">Founded in 2015, Hoops for Hope is more than just a basketball team. We're a community organization dedicated to empowering youth through sports, education, and mentorship.</p>
94
+ <p class="text-gray-700 mb-6">This season, we're aiming to compete in regional tournaments while expanding our free basketball clinics for underprivileged youth in our community.</p>
95
+ <div class="space-y-4">
96
+ <div class="flex items-start">
97
+ <i class="fas fa-basketball-ball text-orange-500 mt-1 mr-3"></i>
98
+ <div>
99
+ <h3 class="font-semibold text-lg">Equipment & Uniforms</h3>
100
+ <p class="text-gray-600">Quality gear for all players to perform at their best.</p>
101
+ </div>
102
+ </div>
103
+ <div class="flex items-start">
104
+ <i class="fas fa-bus text-orange-500 mt-1 mr-3"></i>
105
+ <div>
106
+ <h3 class="font-semibold text-lg">Travel Expenses</h3>
107
+ <p class="text-gray-600">Covering transportation and lodging for away games.</p>
108
+ </div>
109
+ </div>
110
+ <div class="flex items-start">
111
+ <i class="fas fa-graduation-cap text-orange-500 mt-1 mr-3"></i>
112
+ <div>
113
+ <h3 class="font-semibold text-lg">Youth Programs</h3>
114
+ <p class="text-gray-600">Funding free basketball clinics and academic support.</p>
115
+ </div>
116
+ </div>
117
+ </div>
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </section>
122
+
123
+ <!-- Team Section -->
124
+ <section id="team" class="py-16 bg-white">
125
+ <div class="container mx-auto px-4">
126
+ <h2 class="text-3xl font-bold text-center mb-12 text-blue-900">Meet Our Team</h2>
127
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
128
+ <!-- Player 1 -->
129
+ <div class="player-card bg-white rounded-lg overflow-hidden shadow-md transition hover:shadow-xl">
130
+ <div class="overflow-hidden h-64">
131
+ <img src="https://images.unsplash.com/photo-1574629810360-7efbbe195018?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=693&q=80"
132
+ alt="Player 1"
133
+ class="w-full h-full object-cover transition duration-500">
134
+ </div>
135
+ <div class="p-6">
136
+ <h3 class="text-xl font-bold mb-1">Marcus Johnson</h3>
137
+ <p class="text-orange-500 font-semibold mb-3">Point Guard • Captain</p>
138
+ <p class="text-gray-600">"Basketball changed my life. Now I want to help change others' lives through this game."</p>
139
+ </div>
140
+ </div>
141
+
142
+ <!-- Player 2 -->
143
+ <div class="player-card bg-white rounded-lg overflow-hidden shadow-md transition hover:shadow-xl">
144
+ <div class="overflow-hidden h-64">
145
+ <img src="https://images.unsplash.com/photo-1549060279-7e168fcee0c2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
146
+ alt="Player 2"
147
+ class="w-full h-full object-cover transition duration-500">
148
+ </div>
149
+ <div class="p-6">
150
+ <h3 class="text-xl font-bold mb-1">Jamal Williams</h3>
151
+ <p class="text-orange-500 font-semibold mb-3">Shooting Guard</p>
152
+ <p class="text-gray-600">"Every donation helps us inspire the next generation of players in our community."</p>
153
+ </div>
154
+ </div>
155
+
156
+ <!-- Player 3 -->
157
+ <div class="player-card bg-white rounded-lg overflow-hidden shadow-md transition hover:shadow-xl">
158
+ <div class="overflow-hidden h-64">
159
+ <img src="https://images.unsplash.com/photo-1600185365926-3a2ce3cdb9eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1025&q=80"
160
+ alt="Player 3"
161
+ class="w-full h-full object-cover transition duration-500">
162
+ </div>
163
+ <div class="p-6">
164
+ <h3 class="text-xl font-bold mb-1">Coach Davis</h3>
165
+ <p class="text-orange-500 font-semibold mb-3">Head Coach</p>
166
+ <p class="text-gray-600">"We teach more than basketball - we teach life skills, discipline, and teamwork."</p>
167
+ </div>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ </section>
172
+
173
+ <!-- Donation Section -->
174
+ <section id="donate" class="py-16 bg-blue-900 text-white">
175
+ <div class="container mx-auto px-4">
176
+ <h2 class="text-3xl font-bold text-center mb-12">Make a Difference</h2>
177
+ <div class="max-w-5xl mx-auto">
178
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
179
+ <!-- Donation Tier 1 -->
180
+ <div class="donation-card bg-white text-gray-800 rounded-lg p-6 shadow-md transition duration-300">
181
+ <div class="text-center mb-6">
182
+ <div class="bg-blue-100 text-blue-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
183
+ <i class="fas fa-basketball-ball text-2xl"></i>
184
+ </div>
185
+ <h3 class="text-xl font-bold">Rookie</h3>
186
+ <p class="text-orange-500 font-bold text-2xl mt-2">$25</p>
187
+ </div>
188
+ <ul class="space-y-3 mb-6">
189
+ <li class="flex items-start">
190
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
191
+ <span>Team sticker pack</span>
192
+ </li>
193
+ <li class="flex items-start">
194
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
195
+ <span>Social media shoutout</span>
196
+ </li>
197
+ <li class="flex items-start">
198
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
199
+ <span>Your name on our donor wall</span>
200
+ </li>
201
+ </ul>
202
+ <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-full transition" onclick="selectAmount(25)">Select</button>
203
+ </div>
204
+
205
+ <!-- Donation Tier 2 (Featured) -->
206
+ <div class="donation-card bg-orange-500 text-white rounded-lg p-6 shadow-lg transform scale-105 relative">
207
+ <div class="absolute top-0 right-0 bg-yellow-400 text-orange-800 font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg text-sm">MOST POPULAR</div>
208
+ <div class="text-center mb-6">
209
+ <div class="bg-white text-orange-500 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
210
+ <i class="fas fa-medal text-2xl"></i>
211
+ </div>
212
+ <h3 class="text-xl font-bold">All-Star</h3>
213
+ <p class="text-white font-bold text-2xl mt-2">$100</p>
214
+ </div>
215
+ <ul class="space-y-3 mb-6">
216
+ <li class="flex items-start">
217
+ <i class="fas fa-check text-white mt-1 mr-2"></i>
218
+ <span>Team t-shirt</span>
219
+ </li>
220
+ <li class="flex items-start">
221
+ <i class="fas fa-check text-white mt-1 mr-2"></i>
222
+ <span>Signed team photo</span>
223
+ </li>
224
+ <li class="flex items-start">
225
+ <i class="fas fa-check text-white mt-1 mr-2"></i>
226
+ <span>Invitation to team dinner</span>
227
+ </li>
228
+ <li class="flex items-start">
229
+ <i class="fas fa-check text-white mt-1 mr-2"></i>
230
+ <span>All Rookie benefits</span>
231
+ </li>
232
+ </ul>
233
+ <button class="w-full bg-white hover:bg-gray-100 text-orange-500 py-2 px-4 rounded-full transition" onclick="selectAmount(100)">Select</button>
234
+ </div>
235
+
236
+ <!-- Donation Tier 3 -->
237
+ <div class="donation-card bg-white text-gray-800 rounded-lg p-6 shadow-md transition duration-300">
238
+ <div class="text-center mb-6">
239
+ <div class="bg-blue-100 text-blue-800 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
240
+ <i class="fas fa-trophy text-2xl"></i>
241
+ </div>
242
+ <h3 class="text-xl font-bold">MVP</h3>
243
+ <p class="text-orange-500 font-bold text-2xl mt-2">$250+</p>
244
+ </div>
245
+ <ul class="space-y-3 mb-6">
246
+ <li class="flex items-start">
247
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
248
+ <span>Custom team jersey</span>
249
+ </li>
250
+ <li class="flex items-start">
251
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
252
+ <span>Courtside seats for home games</span>
253
+ </li>
254
+ <li class="flex items-start">
255
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
256
+ <span>Recognition in game programs</span>
257
+ </li>
258
+ <li class="flex items-start">
259
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
260
+ <span>All All-Star benefits</span>
261
+ </li>
262
+ </ul>
263
+ <button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-full transition" onclick="selectAmount(250)">Select</button>
264
+ </div>
265
+ </div>
266
+
267
+ <!-- Custom Amount Form -->
268
+ <div class="mt-12 bg-white rounded-lg shadow-md p-8 max-w-2xl mx-auto">
269
+ <h3 class="text-2xl font-bold text-center text-blue-900 mb-6">Custom Donation</h3>
270
+ <form id="donationForm" class="space-y-6">
271
+ <div>
272
+ <label for="amount" class="block text-gray-700 font-medium mb-2">Amount ($)</label>
273
+ <input type="number" id="amount" min="1" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500" placeholder="Enter your amount">
274
+ </div>
275
+ <div>
276
+ <label for="name" class="block text-gray-700 font-medium mb-2">Full Name</label>
277
+ <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500" placeholder="Your name">
278
+ </div>
279
+ <div>
280
+ <label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
281
+ <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500" placeholder="Your email">
282
+ </div>
283
+ <div>
284
+ <label for="message" class="block text-gray-700 font-medium mb-2">Message (Optional)</label>
285
+ <textarea id="message" rows="3" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500" placeholder="Words of encouragement or dedication"></textarea>
286
+ </div>
287
+ <button type="submit" class="w-full bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-6 rounded-lg transition transform hover:scale-105">
288
+ Donate Now <i class="fas fa-arrow-right ml-2"></i>
289
+ </button>
290
+ </form>
291
+ </div>
292
+ </div>
293
+ </div>
294
+ </section>
295
+
296
+ <!-- Testimonials -->
297
+ <section class="py-16 bg-gray-50">
298
+ <div class="container mx-auto px-4">
299
+ <h2 class="text-3xl font-bold text-center mb-12 text-blue-900">What People Say</h2>
300
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-5xl mx-auto">
301
+ <!-- Testimonial 1 -->
302
+ <div class="bg-white p-6 rounded-lg shadow-md">
303
+ <div class="flex items-center mb-4">
304
+ <img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
305
+ <div>
306
+ <h4 class="font-bold">Sarah Johnson</h4>
307
+ <p class="text-orange-500 text-sm">Community Sponsor</p>
308
+ </div>
309
+ </div>
310
+ <p class="text-gray-600">"Supporting Hoops for Hope has been incredibly rewarding. Seeing how the team gives back to the community while excelling on the court is inspiring."</p>
311
+ <div class="mt-4 text-orange-400">
312
+ <i class="fas fa-star"></i>
313
+ <i class="fas fa-star"></i>
314
+ <i class="fas fa-star"></i>
315
+ <i class="fas fa-star"></i>
316
+ <i class="fas fa-star"></i>
317
+ </div>
318
+ </div>
319
+
320
+ <!-- Testimonial 2 -->
321
+ <div class="bg-white p-6 rounded-lg shadow-md">
322
+ <div class="flex items-center mb-4">
323
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
324
+ <div>
325
+ <h4 class="font-bold">Michael Thompson</h4>
326
+ <p class="text-orange-500 text-sm">Parent</p>
327
+ </div>
328
+ </div>
329
+ <p class="text-gray-600">"My son has grown so much since joining this team. The coaches focus on character development as much as basketball skills. Worth every penny of support!"</p>
330
+ <div class="mt-4 text-orange-400">
331
+ <i class="fas fa-star"></i>
332
+ <i class="fas fa-star"></i>
333
+ <i class="fas fa-star"></i>
334
+ <i class="fas fa-star"></i>
335
+ <i class="fas fa-star"></i>
336
+ </div>
337
+ </div>
338
+ </div>
339
+ </div>
340
+ </section>
341
+
342
+ <!-- Contact Section -->
343
+ <section id="contact" class="py-16 bg-white">
344
+ <div class="container mx-auto px-4">
345
+ <div class="max-w-4xl mx-auto bg-blue-900 text-white rounded-xl overflow-hidden shadow-xl">
346
+ <div class="md:flex">
347
+ <div class="md:w-1/2 p-8 md:p-12">
348
+ <h2 class="text-3xl font-bold mb-6">Get In Touch</h2>
349
+ <p class="mb-6">Have questions about supporting our team? Want to sponsor a specific initiative? We'd love to hear from you!</p>
350
+ <div class="space-y-4">
351
+ <div class="flex items-center">
352
+ <i class="fas fa-envelope text-orange-400 mr-4"></i>
353
+ <span>support@hoopsforhope.org</span>
354
+ </div>
355
+ <div class="flex items-center">
356
+ <i class="fas fa-phone text-orange-400 mr-4"></i>
357
+ <span>(555) 123-4567</span>
358
+ </div>
359
+ <div class="flex items-center">
360
+ <i class="fas fa-map-marker-alt text-orange-400 mr-4"></i>
361
+ <span>123 Court Street, Basketball City, BC 12345</span>
362
+ </div>
363
+ </div>
364
+ <div class="mt-8 flex space-x-4">
365
+ <a href="#" class="bg-blue-700 hover:bg-blue-600 w-10 h-10 rounded-full flex items-center justify-center transition">
366
+ <i class="fab fa-facebook-f"></i>
367
+ </a>
368
+ <a href="#" class="bg-blue-400 hover:bg-blue-500 w-10 h-10 rounded-full flex items-center justify-center transition">
369
+ <i class="fab fa-twitter"></i>
370
+ </a>
371
+ <a href="#" class="bg-pink-600 hover:bg-pink-700 w-10 h-10 rounded-full flex items-center justify-center transition">
372
+ <i class="fab fa-instagram"></i>
373
+ </a>
374
+ </div>
375
+ </div>
376
+ <div class="md:w-1/2 bg-white text-gray-800 p-8 md:p-12">
377
+ <h3 class="text-2xl font-bold mb-6 text-blue-900">Send Us a Message</h3>
378
+ <form class="space-y-4">
379
+ <div>
380
+ <input type="text" placeholder="Your Name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500">
381
+ </div>
382
+ <div>
383
+ <input type="email" placeholder="Your Email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500">
384
+ </div>
385
+ <div>
386
+ <input type="text" placeholder="Subject" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500">
387
+ </div>
388
+ <div>
389
+ <textarea rows="4" placeholder="Your Message" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500"></textarea>
390
+ </div>
391
+ <button type="submit" class="w-full bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-6 rounded-lg transition">Send Message</button>
392
+ </form>
393
+ </div>
394
+ </div>
395
+ </div>
396
+ </div>
397
+ </section>
398
+
399
+ <!-- Footer -->
400
+ <footer class="bg-gray-900 text-white py-12">
401
+ <div class="container mx-auto px-4">
402
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
403
+ <div>
404
+ <div class="flex items-center mb-4">
405
+ <i class="fas fa-basketball-ball text-orange-500 text-2xl mr-2"></i>
406
+ <h3 class="text-xl font-bold">Hoops for Hope</h3>
407
+ </div>
408
+ <p class="text-gray-400">Empowering youth through basketball since 2015.</p>
409
+ </div>
410
+ <div>
411
+ <h4 class="text-lg font-semibold mb-4">Quick Links</h4>
412
+ <ul class="space-y-2">
413
+ <li><a href="#" class="text-gray-400 hover:text-orange-400 transition">Home</a></li>
414
+ <li><a href="#about" class="text-gray-400 hover:text-orange-400 transition">About Us</a></li>
415
+ <li><a href="#team" class="text-gray-400 hover:text-orange-400 transition">Our Team</a></li>
416
+ <li><a href="#donate" class="text-gray-400 hover:text-orange-400 transition">Donate</a></li>
417
+ </ul>
418
+ </div>
419
+ <div>
420
+ <h4 class="text-lg font-semibold mb-4">Legal</h4>
421
+ <ul class="space-y-2">
422
+ <li><a href="#" class="text-gray-400 hover:text-orange-400 transition">Privacy Policy</a></li>
423
+ <li><a href="#" class="text-gray-400 hover:text-orange-400 transition">Terms of Service</a></li>
424
+ <li><a href="#" class="text-gray-400 hover:text-orange-400 transition">Tax Information</a></li>
425
+ </ul>
426
+ </div>
427
+ <div>
428
+ <h4 class="text-lg font-semibold mb-4">Newsletter</h4>
429
+ <p class="text-gray-400 mb-4">Subscribe to get updates on our season and community events.</p>
430
+ <form class="flex">
431
+ <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg w-full text-gray-800">
432
+ <button type="submit" class="bg-orange-500 hover:bg-orange-600 px-4 py-2 rounded-r-lg transition">
433
+ <i class="fas fa-paper-plane"></i>
434
+ </button>
435
+ </form>
436
+ </div>
437
+ </div>
438
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
439
+ <p>&copy; 2023 Hoops for Hope. All rights reserved.</p>
440
+ </div>
441
+ </div>
442
+ </footer>
443
+
444
+ <!-- Donation Modal (hidden by default) -->
445
+ <div id="donationModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
446
+ <div class="bg-white rounded-lg p-8 max-w-md w-full mx-4">
447
+ <div class="flex justify-between items-center mb-6">
448
+ <h3 class="text-2xl font-bold text-blue-900">Thank You!</h3>
449
+ <button onclick="closeModal()" class="text-gray-500 hover:text-gray-700">
450
+ <i class="fas fa-times"></i>
451
+ </button>
452
+ </div>
453
+ <div class="text-center mb-6">
454
+ <i class="fas fa-check-circle text-green-500 text-5xl mb-4"></i>
455
+ <p class="text-gray-700">Your donation of <span id="donationAmount" class="font-bold text-orange-500">$100</span> has been received!</p>
456
+ <p class="text-gray-600 mt-2">We'll send a confirmation email shortly.</p>
457
+ </div>
458
+ <button onclick="closeModal()" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-lg transition">
459
+ Close
460
+ </button>
461
+ </div>
462
+ </div>
463
+
464
+ <script>
465
+ // Function to handle donation amount selection
466
+ function selectAmount(amount) {
467
+ document.getElementById('amount').value = amount;
468
+ // Scroll to donation form
469
+ document.getElementById('donate').scrollIntoView({ behavior: 'smooth' });
470
+ }
471
+
472
+ // Handle form submission
473
+ document.getElementById('donationForm').addEventListener('submit', function(e) {
474
+ e.preventDefault();
475
+
476
+ // Get form values
477
+ const amount = document.getElementById('amount').value;
478
+ const name = document.getElementById('name').value;
479
+
480
+ // Validate
481
+ if (!amount || !name) {
482
+ alert('Please fill in all required fields');
483
+ return;
484
+ }
485
+
486
+ // Show thank you modal
487
+ document.getElementById('donationAmount').textContent = '$' + amount;
488
+ document.getElementById('donationModal').classList.remove('hidden');
489
+
490
+ // Reset form (in a real app, you would submit to a server here)
491
+ this.reset();
492
+ });
493
+
494
+ // Close modal function
495
+ function closeModal() {
496
+ document.getElementById('donationModal').classList.add('hidden');
497
+ }
498
+
499
+ // Smooth scrolling for anchor links
500
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
501
+ anchor.addEventListener('click', function (e) {
502
+ e.preventDefault();
503
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
504
+ behavior: 'smooth'
505
+ });
506
+ });
507
+ });
508
+ </script>
509
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Yalexis/basketball-donation-page" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
510
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Basketball team donation page