Cybele commited on
Commit
36ee35b
·
verified ·
1 Parent(s): 746a6d9

make a foundation website for veterans - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +567 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Snrv
3
- emoji: 🏢
4
- colorFrom: green
5
- colorTo: indigo
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: snrv
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: pink
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,567 @@
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>ValorVets Foundation - Supporting Our Veterans</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
+ .hero-pattern {
11
+ background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
12
+ background-size: cover;
13
+ background-position: center;
14
+ }
15
+
16
+ .counter-box {
17
+ transition: all 0.3s ease;
18
+ }
19
+
20
+ .counter-box:hover {
21
+ transform: translateY(-5px);
22
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
23
+ }
24
+
25
+ .testimonial-card {
26
+ transition: all 0.3s ease;
27
+ }
28
+
29
+ .testimonial-card:hover {
30
+ transform: scale(1.03);
31
+ }
32
+ </style>
33
+ </head>
34
+ <body class="font-sans text-gray-800 bg-gray-50">
35
+ <!-- Header/Navigation -->
36
+ <header class="sticky top-0 z-50 bg-white shadow-md">
37
+ <div class="container mx-auto px-4 py-3">
38
+ <div class="flex justify-between items-center">
39
+ <div class="flex items-center space-x-2">
40
+ <i class="fas fa-star text-red-600 text-2xl"></i>
41
+ <span class="text-xl font-bold text-gray-800">Valor<span class="text-red-600">Vets</span></span>
42
+ </div>
43
+
44
+ <nav class="hidden md:flex space-x-8">
45
+ <a href="#home" class="text-red-600 font-medium hover:text-red-700 transition">Home</a>
46
+ <a href="#about" class="text-gray-800 hover:text-red-600 transition">About</a>
47
+ <a href="#programs" class="text-gray-800 hover:text-red-600 transition">Programs</a>
48
+ <a href="#resources" class="text-gray-800 hover:text-red-600 transition">Resources</a>
49
+ <a href="#donate" class="bg-red-600 text-white px-4 py-2 rounded-md hover:bg-red-700 transition">Donate</a>
50
+ </nav>
51
+
52
+ <button class="md:hidden focus:outline-none" id="mobile-menu-button">
53
+ <i class="fas fa-bars text-2xl"></i>
54
+ </button>
55
+ </div>
56
+
57
+ <!-- Mobile Menu -->
58
+ <div class="md:hidden hidden" id="mobile-menu">
59
+ <div class="flex flex-col space-y-3 pt-4 pb-2">
60
+ <a href="#home" class="block px-3 py-2 rounded hover:bg-gray-100">Home</a>
61
+ <a href="#about" class="block px-3 py-2 rounded hover:bg-gray-100">About</a>
62
+ <a href="#programs" class="block px-3 py-2 rounded hover:bg-gray-100">Programs</a>
63
+ <a href="#resources" class="block px-3 py-2 rounded hover:bg-gray-100">Resources</a>
64
+ <a href="#donate" class="block bg-red-600 text-white px-3 py-2 rounded hover:bg-red-700 text-center">Donate</a>
65
+ </div>
66
+ </div>
67
+ </div>
68
+ </header>
69
+
70
+ <!-- Hero Section -->
71
+ <section id="home" class="hero-pattern text-white py-20 md:py-32">
72
+ <div class="container mx-auto px-4 text-center">
73
+ <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6">Honoring <span class="text-red-400">Heroes</span>, Building <span class="text-red-400">Futures</span></h1>
74
+ <p class="text-xl md:text-2xl mb-10 max-w-3xl mx-auto">Providing comprehensive support to veterans through housing, healthcare, education, and career services.</p>
75
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
76
+ <a href="#donate" class="bg-red-600 hover:bg-red-700 text-white font-bold py-3 px-8 rounded-lg transition duration-300 transform hover:scale-105 text-lg">Support Our Veterans</a>
77
+ <a href="#programs" class="bg-white hover:bg-gray-100 text-gray-800 font-bold py-3 px-8 rounded-lg transition duration-300 transform hover:scale-105 text-lg">Learn More</a>
78
+ </div>
79
+ </div>
80
+ </section>
81
+
82
+ <!-- Impact Numbers -->
83
+ <section class="bg-gray-100 py-12">
84
+ <div class="container mx-auto px-4">
85
+ <h2 class="text-3xl font-bold text-center mb-12">Our Impact in 2023</h2>
86
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
87
+ <div class="counter-box bg-white p-8 rounded-lg shadow-md text-center">
88
+ <div class="text-red-600 text-5xl font-bold mb-3" data-target="2500">0</div>
89
+ <div class="text-gray-600">Veterans Housed</div>
90
+ </div>
91
+ <div class="counter-box bg-white p-8 rounded-lg shadow-md text-center">
92
+ <div class="text-red-600 text-5xl font-bold mb-3" data-target="3800">0</div>
93
+ <div class="text-gray-600">Jobs Secured</div>
94
+ </div>
95
+ <div class="counter-box bg-white p-8 rounded-lg shadow-md text-center">
96
+ <div class="text-red-600 text-5xl font-bold mb-3" data-target="970">0</div>
97
+ <div class="text-gray-600">Mental Health Services</div>
98
+ </div>
99
+ <div class="counter-box bg-white p-8 rounded-lg shadow-md text-center">
100
+ <div class="text-red-600 text-5xl font-bold mb-3" data-target="1200">0</div>
101
+ <div class="text-gray-600">Scholarships Awarded</div>
102
+ </div>
103
+ </div>
104
+ </div>
105
+ </section>
106
+
107
+ <!-- About Section -->
108
+ <section id="about" class="py-16 bg-white">
109
+ <div class="container mx-auto px-4">
110
+ <div class="flex flex-col lg:flex-row items-center gap-12">
111
+ <div class="lg:w-1/2">
112
+ <h2 class="text-3xl font-bold mb-6">Our Mission</h2>
113
+ <p class="text-lg mb-6 leading-relaxed">The ValorVets Foundation was established in 2010 with one simple goal: to ensure that every veteran who has served our country has access to the resources they need to thrive in civilian life.</p>
114
+ <p class="text-lg mb-8 leading-relaxed">We believe that serving those who have served is not just a gratitude but a responsibility. Our comprehensive programs address the four pillars of veteran support: housing, healthcare, employment, and education.</p>
115
+ <div class="space-y-4">
116
+ <div class="flex items-start">
117
+ <div class="flex-shrink-0 mt-1">
118
+ <i class="fas fa-check-circle text-red-600"></i>
119
+ </div>
120
+ <p class="ml-3 text-gray-700">501(c)(3) non-profit organization</p>
121
+ </div>
122
+ <div class="flex items-start">
123
+ <div class="flex-shrink-0 mt-1">
124
+ <i class="fas fa-check-circle text-red-600"></i>
125
+ </div>
126
+ <p class="ml-3 text-gray-700">92% of donations go directly to programs</p>
127
+ </div>
128
+ <div class="flex items-start">
129
+ <div class="flex-shrink-0 mt-1">
130
+ <i class="fas fa-check-circle text-red-600"></i>
131
+ </div>
132
+ <p class="ml-3 text-gray-700">4-star Charity Navigator rating</p>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ <div class="lg:w-1/2">
137
+ <div class="relative rounded-lg overflow-hidden shadow-xl">
138
+ <img src="https://images.unsplash.com/photo-1501871731194-41998a9232f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Veterans group" class="w-full h-auto">
139
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
140
+ <div class="absolute bottom-0 left-0 p-6 text-white">
141
+ <h3 class="text-xl font-bold mb-2">"ValorVets changed my life after service"</h3>
142
+ <p>- Mike K., U.S. Marine Corps</p>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ </section>
149
+
150
+ <!-- Programs Section -->
151
+ <section id="programs" class="py-16 bg-gray-100">
152
+ <div class="container mx-auto px-4">
153
+ <h2 class="text-3xl font-bold text-center mb###4">Our Programs</h2>
154
+ <p class="text-lg text-center text-gray-600 max-w-3xl mx-auto mb-12">We offer comprehensive programs designed to address the diverse needs of our veterans community.</p>
155
+
156
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
157
+ <!-- Program Card 1 -->
158
+ <div class="bg-white rounded-lg overflow-hidden shadow-lg transition-all duration-300 hover:shadow-xl">
159
+ <div class="h-48 bg-blue-600 flex items-center justify-center">
160
+ <i class="fas fa-home text-white text-6xl"></i>
161
+ </div>
162
+ <div class="p-6">
163
+ <h3 class="text-xl font-bold mb-3">Veteran Housing Initiative</h3>
164
+ <p class="text-gray-600 mb-4">Providing transitional and permanent housing solutions for homeless and at-risk veterans across the country.</p>
165
+ <div class="flex items-center text-red-600 font-medium">
166
+ <span>Learn more</span>
167
+ <i class="fas fa-arrow-right ml-2"></i>
168
+ </div>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- Program Card 2 -->
173
+ <div class="bg-white rounded-lg overflow-hidden shadow-lg transition-all duration-300 hover:shadow-xl">
174
+ <div class="h-48 bg-green-600 flex items-center justify-center">
175
+ <i class="fas fa-briefcase text-white text-6xl"></i>
176
+ </div>
177
+ <div class="p-6">
178
+ <h3 class="text-xl font-bold mb-3">Career Transition Program</h3>
179
+ <p class="text-gray-600 mb-4">Career counseling, resume workshops, and job placement services to help veterans find meaningful employment.</p>
180
+ <div class="flex items-center text-red-600 font-medium">
181
+ <span>Learn more</span>
182
+ <i class="fas fa-arrow-right ml-2"></i>
183
+ </div>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- Program Card 3 -->
188
+ <div class="bg-white rounded-lg overflow-hidden shadow-lg transition-all duration-300 hover:shadow-xl">
189
+ <div class="h-48 bg-purple-600 flex items-center justify-center">
190
+ <i class="fas fa-brain text-white text-6xl"></i>
191
+ </div>
192
+ <div class="p-6">
193
+ <h3 class="text-xl font-bold mb-3">Mental Health Services</h3>
194
+ <p class="text-gray-600 mb-4">Specialized counseling and therapy programs tailored for veterans dealing with PTSD and other mental health challenges.</p>
195
+ <div class="flex items-center text-red-600 font-medium">
196
+ <span>Learn more</span>
197
+ <i class="fas fa-arrow-right ml-2"></i>
198
+ </div>
199
+ </div>
200
+ </div>
201
+ </div>
202
+ </div>
203
+ </section>
204
+
205
+ <!-- Testimonials -->
206
+ <section class="py-16 bg-red-600 text-white">
207
+ <div class="container mx-auto px-4">
208
+ <h2 class="text-3xl font-bold text-center mb-12">Stories of Success</h2>
209
+
210
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
211
+ <!-- Testimonial 1 -->
212
+ <div class="testimonial-card bg-white text-gray-800 p-6 rounded-lg shadow-md">
213
+ <div class="flex items-center mb-4">
214
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="John D." class="w-12 h-12 rounded-full mr-4">
215
+ <div>
216
+ <h4 class="font-bold">John D.</h4>
217
+ <p class="text-red-600 text-sm">U.S. Army, Retired</p>
218
+ </div>
219
+ </div>
220
+ <p class="italic mb-4">"After struggling with homelessness for two years, ValorVets provided me with an apartment and the support I needed to get back on my feet. Today I have a stable job and my own place."</p>
221
+ <div class="text-yellow-400">
222
+ <i class="fas fa-star"></i>
223
+ <i class="fas fa-star"></i>
224
+ <i class="fas fa-star"></i>
225
+ <i class="fas fa-star"></i>
226
+ <i class="fas fa-star"></i>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- Testimonial 2 -->
231
+ <div class="testimonial-card bg-white text-gray-800 p-6 rounded-lg shadow-md">
232
+ <div class="flex items-center mb-4">
233
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah M." class="w-12 h-12 rounded-full mr-4">
234
+ <div>
235
+ <h4 class="font-bold">Sarah M.</h4>
236
+ <p class="text-red-600 text-sm">U.S. Navy, Veteran</p>
237
+ </div>
238
+ </div>
239
+ <p class="italic mb-4">"The career transition program helped me translate my military experience into civilian job qualifications. I went from confusion to confidence in just three months!"</p>
240
+ <div class="text-yellow-400">
241
+ <i class="fas fa-star"></i>
242
+ <i class="fas fa-star"></i>
243
+ <i class="fas fa-star"></i>
244
+ <i class="fas fa-star"></i>
245
+ <i class="fas fa-star-half-alt"></i>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Testimonial 3 -->
250
+ <div class="testimonial-card bg-white text-gray-800 p-6 rounded-lg shadow-md">
251
+ <div class="flex items-center mb-4">
252
+ <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Robert T." class="w-12 h-12 rounded-full mr-4">
253
+ <div>
254
+ <h4 class="font-bold">Robert T.</h4>
255
+ <p class="text-red-600 text-sm">U.S. Marine Corps, Veteran</p>
256
+ </div>
257
+ </div>
258
+ <p class="italic mb-4">"I was struggling with PTSD and didn't know where to turn. ValorVets connected me with a counselor who understands military life. For the first time in years, I feel hopeful about the future."</p>
259
+ <div class="text-yellow-400">
260
+ <i class="fas fa-star"></i>
261
+ <i class="fas fa-star"></i>
262
+ <i class="fas fa-star"></i>
263
+ <i class="fas fa-star"></i>
264
+ <i class="fas fa-star"></i>
265
+ </div>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ </section>
270
+
271
+ <!-- Resources Section -->
272
+ <section id="resources" class="py-16 bg-white">
273
+ <div class="container mx-auto px-4">
274
+ <div class="text-center mb-12">
275
+ <h2 class="text-3xl font-bold mb-4">Veteran Resources</h2>
276
+ <p class="text-lg text-gray-600 max-w-3xl mx-auto">Access valuable resources for veterans and their families</p>
277
+ </div>
278
+
279
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
280
+ <a href="#" class="group">
281
+ <div class="bg-gray-100 rounded-lg p-6 h-full hover:bg-red-600 hover:text-white transition duration-300">
282
+ <div class="text-red-600 text-4xl mb-4 group-hover:text-white">
283
+ <i class="fas fa-file-alt"></i>
284
+ </div>
285
+ <h3 class="font-bold text-lg mb-2">VA Benefits Guide</h3>
286
+ <p>Comprehensive guide to understanding and applying for VA benefits.</p>
287
+ </div>
288
+ </a>
289
+
290
+ <a href="#" class="group">
291
+ <div class="bg-gray-100 rounded-lg p-6 h-full hover:bg-red-600 hover:text-white transition duration-300">
292
+ <div class="text-red-600 text-4xl mb-4 group-hover:text-white">
293
+ <i class="fas fa-graduation-cap"></i>
294
+ </div>
295
+ <h3 class="font-bold text-lg mb-2">Education Benefits</h3>
296
+ <p>Information about GI Bill and other education assistance programs.</p>
297
+ </div>
298
+ </a>
299
+
300
+ <a href="#" class="group">
301
+ <div class="bg-gray-100 rounded-lg p-6 h-full hover:bg-red-600 hover:text-white transition duration-300">
302
+ <div class="text-red-600 text-4xl mb-4 group-hover:text-white">
303
+ <i class="fas fa-heartbeat"></i>
304
+ </div>
305
+ <h3 class="font-bold text-lg mb-2">Healthcare Options</h3>
306
+ <p>Access to VA healthcare facilities and community care options.</p>
307
+ </div>
308
+ </a>
309
+
310
+ <a href="#" class="group">
311
+ <div class="bg-gray-100 rounded-lg p-6 h-full hover:bg-red-600 hover:text-white transition duration-300">
312
+ <div class="text-red-600 text-4xl mb-4 group-hover:text-white">
313
+ <i class="fas fa-hands-helping"></i>
314
+ </div>
315
+ <h3 class="font-bold text-lg mb-2">Peer Support</h3>
316
+ <p>Connect with fellow veterans in your area for mutual support.</p>
317
+ </div>
318
+ </a>
319
+ </div>
320
+
321
+ <div class="text-center mt-10">
322
+ <a href="#" class="inline-flex items-center text-red-600 font-bold text-lg">
323
+ <span>View all resources</span>
324
+ <i class="fas fa-arrow-right ml-2"></i>
325
+ </a>
326
+ </div>
327
+ </div>
328
+ </section>
329
+
330
+ <!-- Donation Section -->
331
+ <section id="donate" class="py-16 bg-gray-900 text-white">
332
+ <div class="container mx-auto px-4">
333
+ <div class="flex flex-col lg:flex-row items-center gap-12">
334
+ <div class="lg:w-1/2">
335
+ <h2 class="text-3xl font-bold mb-6">Your Support Makes a Difference</h2>
336
+ <p class="text-lg mb-6 leading-relaxed">Every dollar you donate helps us provide critical services to veterans in need. Your contribution directly impacts lives by providing:</p>
337
+
338
+ <div class="space-y-4 mb-8">
339
+ <div class="flex items-start">
340
+ <div class="flex-shrink-0 mt-1 text-red-400">
341
+ <i class="fas fa-check-circle"></i>
342
+ </div>
343
+ <p class="ml-3">Shelter for homeless veterans</p>
344
+ </div>
345
+ <div class="flex items-start">
346
+ <div class="flex-shrink-0 mt-1 text-red-400">
347
+ <i class="fas fa-check-circle"></i>
348
+ </div>
349
+ <p class="ml-3">Mental health counseling</p>
350
+ </div>
351
+ <div class="flex items-start">
352
+ <div class="flex-shrink-0 mt-1 text-red-400">
353
+ <i class="fas fa-check-circle"></i>
354
+ </div>
355
+ <p class="ml-3">Job training programs</p>
356
+ </div>
357
+ <div class="flex items-start">
358
+ <div class="flex-shrink-0 mt-1 text-red-400">
359
+ <i class="fas fa-check-circle"></i>
360
+ </div>
361
+ <p class="ml-3">Education scholarships</p>
362
+ </div>
363
+ </div>
364
+
365
+ <div class="bg-gray-800 p-6 rounded-lg mb-8">
366
+ <p class="mb-4 italic">"I can't thank ValorVets enough for helping me through my darkest days. The support saved my life."</p>
367
+ <p class="font-medium">- Marcus J., U.S. Army Veteran</p>
368
+ </div>
369
+ </div>
370
+
371
+ <div class="lg:w-1/2 w-full">
372
+ <div class="bg-white text-gray-800 rounded-lg shadow-xl p-8">
373
+ <h3 class="text-2xl font-bold mb-6 text-center">Make a Donation</h3>
374
+
375
+ <div class="grid grid-cols-2 gap-4 mb-6">
376
+ <button class="bg-red-600 hover:bg-red-700 text-white py-3 px-4 rounded-lg font-medium transition">$25</button>
377
+ <button class="bg-red-600 hover:bg-red-700 text-white py-3 px-4 rounded-lg font-medium transition">$50</button>
378
+ <button class="bg-red-600 hover:bg-red-700 text-white py-3 px-4 rounded-lg font-medium transition">$100</button>
379
+ <button class="bg-red-600 hover:bg-red-700 text-white py-3 px-4 rounded-lg font-medium transition">$250</button>
380
+ </div>
381
+
382
+ <div class="mb-6">
383
+ <label class="block text-gray-700 mb-2 font-medium">Other Amount</label>
384
+ <input type="number" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500" placeholder="Enter amount">
385
+ </div>
386
+
387
+ <div class="mb-6">
388
+ <label class="flex items-start">
389
+ <input type="checkbox" class="mt-1 mr-2">
390
+ <span>Make this a monthly recurring donation</span>
391
+ </label>
392
+ </div>
393
+
394
+ <button class="w-full bg-red-600 hover:bg-red-700 text-white py-4 px-6 rounded-lg font-bold text-lg transition duration-300 transform hover:scale-105">
395
+ Donate Now
396
+ </button>
397
+
398
+ <div class="mt-6 text-center">
399
+ <img src="https://www.paypalobjects.com/webstatic/mktg/Logo/pp-logo-200px.png" alt="PayPal" class="h-8 mx-auto mb-3">
400
+ <p class="text-sm text-gray-500">We also accept Bitcoin, Venmo, and checks</p>
401
+ </div>
402
+ </div>
403
+ </div>
404
+ </div>
405
+ </div>
406
+ </section>
407
+
408
+ <!-- Partners Section -->
409
+ <section class="py-12 bg-gray-100">
410
+ <div class="container mx-auto px-4">
411
+ <h3 class="text-lg font-semibold text-center mb-8 text-gray-600">TRUSTED BY LEADING ORGANIZATIONS</h3>
412
+ <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
413
+ <img src="https://via.placeholder.com/150x60?text=USAA" alt="USAA" class="h-12 opacity-70 hover:opacity-100 transition">
414
+ <img src="https://via.placeholder.com/150x60?text=Wounded+Warrior" alt="Wounded Warrior Project" class="h-12 opacity-70 hover:opacity-100 transition">
415
+ <img src="https://via.placeholder.com/150x60?text=VA" alt="Department of Veterans Affairs" class="h-12 opacity-70 hover:opacity-100 transition">
416
+ <img src="https://via.placeholder.com/150x60?text=Home+Depot" alt="Home Depot Foundation" class="h-12 opacity-70 hover:opacity-100 transition">
417
+ <img src="https://via.placeholder.com/150x60?text=Microsoft" alt="Microsoft" class="h-12 opacity-70 hover:opacity-100 transition">
418
+ </div>
419
+ </div>
420
+ </section>
421
+
422
+ <!-- Newsletter -->
423
+ <section class="py-16 bg-white">
424
+ <div class="container mx-auto px-4 max-w-4xl">
425
+ <div class="bg-gradient-to-r from-red-600 to-red-800 rounded-xl p-8 text-white text-center shadow-lg">
426
+ <h2 class="text-2xl md:text-3xl font-bold mb-4">Stay Connected</h2>
427
+ <p class="mb-6 max-w-2xl mx-auto">Subscribe to our newsletter to receive updates on our programs, veteran success stories, and ways you can help.</p>
428
+
429
+ <div class="flex flex-col sm:flex-row gap-3 max-w-md mx-auto">
430
+ <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-lg text-gray-800 focus:outline-none">
431
+ <button class="bg-white text-red-600 font-bold py-3 px-6 rounded-lg hover:bg-gray-100 transition whitespace-nowrap">Subscribe</button>
432
+ </div>
433
+
434
+ <p class="text-xs mt-4 text-red-200">We respect your privacy. Unsubscribe at any time.</p>
435
+ </div>
436
+ </div>
437
+ </section>
438
+
439
+ <!-- Footer -->
440
+ <footer class="bg-gray-800 text-white pt-16 pb-8">
441
+ <div class="container mx-auto px-4">
442
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-10 mb-12">
443
+ <div>
444
+ <div class="flex items-center space-x-2 mb-6">
445
+ <i class="fas fa-star text-red-400 text-2xl"></i>
446
+ <span class="text-xl font-bold">Valor<span class="text-red-400">Vets</span></span>
447
+ </div>
448
+ <p class="mb-4">Dedicated to serving those who served our country with honor and distinction.</p>
449
+ <div class="flex space-x-4">
450
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
451
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
452
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
453
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
454
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
455
+ </div>
456
+ </div>
457
+
458
+ <div>
459
+ <h4 class="text-lg font-bold mb-6">Quick Links</h4>
460
+ <ul class="space-y-3">
461
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
462
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
463
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Our Programs</a></li>
464
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Success Stories</a></li>
465
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Donate</a></li>
466
+ </ul>
467
+ </div>
468
+
469
+ <div>
470
+ <h4 class="text-lg font-bold mb-6">Contact Us</h4>
471
+ <ul class="space-y-3">
472
+ <li class="flex items-start">
473
+ <i class="fas fa-map-marker-alt mt-1 mr-3 text-red-400"></i>
474
+ <span class="text-gray-400">1234 Patriot Way, Suite 500<br>Washington, DC 20001</span>
475
+ </li>
476
+ <li class="flex items-center">
477
+ <i class="fas fa-phone-alt mr-3 text-red-400"></i>
478
+ <span class="text-gray-400">(800) VET-HELP</span>
479
+ </li>
480
+ <li class="flex items-center">
481
+ <i class="fas fa-envelope mr-3 text-red-400"></i>
482
+ <span class="text-gray-400">[email protected]</span>
483
+ </li>
484
+ </ul>
485
+ </div>
486
+
487
+ <div>
488
+ <h4 class="text-lg font-bold mb-6">Legal</h4>
489
+ <ul class="space-y-3">
490
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
491
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
492
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Financial Reports</a></li>
493
+ <li><a href="#" class="text-gray-400 hover:text-white transition">501(c)(3) Status</a></li>
494
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
495
+ </ul>
496
+ </div>
497
+ </div>
498
+
499
+ <div class="pt-8 border-t border-gray-700 text-center text-gray-400">
500
+ <p>&copy; 2023 ValorVets Foundation. All rights reserved. EIN: 45-1234567</p>
501
+ </div>
502
+ </div>
503
+ </footer>
504
+
505
+ <script>
506
+ // Mobile menu toggle
507
+ const mobileMenuButton = document.getElementById('mobile-menu-button');
508
+ const mobileMenu = document.getElementById('mobile-menu');
509
+
510
+ mobileMenuButton.addEventListener('click', () => {
511
+ mobileMenu.classList.toggle('hidden');
512
+ });
513
+
514
+ // Counter animation
515
+ const counters = document.querySelectorAll('.counter-box div');
516
+ const speed = 200;
517
+
518
+ const animateCounters = () => {
519
+ counters.forEach(counter => {
520
+ const target = +counter.getAttribute('data-target');
521
+ const count = +counter.innerText;
522
+ const increment = target / speed;
523
+
524
+ if (count < target) {
525
+ counter.innerText = Math.ceil(count + increment);
526
+ setTimeout(animateCounters, 1);
527
+ } else {
528
+ counter.innerText = target.toLocaleString();
529
+ }
530
+ });
531
+ };
532
+
533
+ // Start animation when scrolled to counters
534
+ const counterSection = document.querySelector('.bg-gray-100');
535
+ const observer = new IntersectionObserver((entries) => {
536
+ if (entries[0].isIntersecting) {
537
+ animateCounters();
538
+ observer.unobserve(counterSection);
539
+ }
540
+ }, { threshold: 0.5 });
541
+
542
+ observer.observe(counterSection);
543
+
544
+ // Smooth scrolling for navigation links
545
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
546
+ anchor.addEventListener('click', function (e) {
547
+ e.preventDefault();
548
+
549
+ // Close mobile menu if open
550
+ if (!mobileMenu.classList.contains('hidden')) {
551
+ mobileMenu.classList.add('hidden');
552
+ }
553
+
554
+ const targetId = this.getAttribute('href');
555
+ const targetElement = document.querySelector(targetId);
556
+
557
+ if (targetElement) {
558
+ window.scrollTo({
559
+ top: targetElement.offsetTop - 80,
560
+ behavior: 'smooth'
561
+ });
562
+ }
563
+ });
564
+ });
565
+ </script>
566
+ <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=Cybele/snrv" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
567
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ make a foundation website for veterans