NaderFayed07 commited on
Commit
6036aba
·
verified ·
1 Parent(s): cfc62a4

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +296 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Draft
3
- emoji: 📈
4
- colorFrom: green
5
- colorTo: purple
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: draft
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: red
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,296 @@
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>Children Urban Hub - Empowering Young Minds</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-gradient {
11
+ background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
12
+ }
13
+ .card-hover:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .animate-float {
18
+ animation: float 6s ease-in-out infinite;
19
+ }
20
+ @keyframes float {
21
+ 0% { transform: translateY(0px); }
22
+ 50% { transform: translateY(-20px); }
23
+ 100% { transform: translateY(0px); }
24
+ }
25
+ </style>
26
+ </head>
27
+ <body class="font-sans antialiased text-gray-800">
28
+ <!-- Navigation -->
29
+ <nav class="bg-white shadow-md sticky top-0 z-50">
30
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
31
+ <div class="flex items-center space-x-2">
32
+ <i class="fas fa-child text-3xl text-orange-500"></i>
33
+ <a href="#" class="text-2xl font-bold text-gray-800">Children Urban Hub</a>
34
+ </div>
35
+ <div class="hidden md:flex space-x-8">
36
+ <a href="#" class="text-orange-500 font-medium">Home</a>
37
+ <a href="#" class="hover:text-orange-500 transition">Programs</a>
38
+ <a href="#" class="hover:text-orange-500 transition">Events</a>
39
+ <a href="#" class="hover:text-orange-500 transition">Resources</a>
40
+ <a href="#" class="hover:text-orange-500 transition">About Us</a>
41
+ </div>
42
+ <button class="md:hidden text-gray-600 focus:outline-none">
43
+ <i class="fas fa-bars text-2xl"></i>
44
+ </button>
45
+ <div class="hidden md:block">
46
+ <button class="bg-orange-500 hover:bg-orange-600 text-white px-6 py-2 rounded-full font-medium transition">Donate</button>
47
+ </div>
48
+ </div>
49
+ </nav>
50
+
51
+ <!-- Hero Section -->
52
+ <section class="hero-gradient text-white">
53
+ <div class="container mx-auto px-4 py-20 md:py-32 flex flex-col md:flex-row items-center">
54
+ <div class="md:w-1/2 mb-10 md:mb-0">
55
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">Empowering Urban Youth Through Education</h1>
56
+ <p class="text-xl mb-8">We provide safe spaces, educational programs, and mentorship to help children in urban environments thrive.</p>
57
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
58
+ <button class="bg-white text-orange-500 hover:bg-gray-100 px-8 py-3 rounded-full font-bold transition">Join Our Programs</button>
59
+ <button class="border-2 border-white hover:bg-white hover:text-orange-500 px-8 py-3 rounded-full font-bold transition">Learn More</button>
60
+ </div>
61
+ </div>
62
+ <div class="md:w-1/2 flex justify-center">
63
+ <img src="https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
64
+ alt="Happy children learning"
65
+ class="rounded-xl shadow-2xl w-full max-w-md animate-float">
66
+ </div>
67
+ </div>
68
+ </section>
69
+
70
+ <!-- Stats Section -->
71
+ <section class="bg-gray-50 py-16">
72
+ <div class="container mx-auto px-4">
73
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 text-center">
74
+ <div class="bg-white p-8 rounded-xl shadow-md">
75
+ <div class="text-5xl font-bold text-orange-500 mb-2">5,000+</div>
76
+ <div class="text-gray-600">Children Helped</div>
77
+ </div>
78
+ <div class="bg-white p-8 rounded-xl shadow-md">
79
+ <div class="text-5xl font-bold text-orange-500 mb-2">50+</div>
80
+ <div class="text-gray-600">Urban Centers</div>
81
+ </div>
82
+ <div class="bg-white p-8 rounded-xl shadow-md">
83
+ <div class="text-5xl font-bold text-orange-500 mb-2">200+</div>
84
+ <div class="text-gray-600">Dedicated Volunteers</div>
85
+ </div>
86
+ <div class="bg-white p-8 rounded-xl shadow-md">
87
+ <div class="text-5xl font-bold text-orange-500 mb-2">15</div>
88
+ <div class="text-gray-600">Years of Service</div>
89
+ </div>
90
+ </div>
91
+ </div>
92
+ </section>
93
+
94
+ <!-- Programs Section -->
95
+ <section class="py-20">
96
+ <div class="container mx-auto px-4">
97
+ <div class="text-center mb-16">
98
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Our Programs</h2>
99
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">We offer diverse programs designed to nurture young minds and create opportunities for growth.</p>
100
+ </div>
101
+
102
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
103
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover transition duration-300">
104
+ <img src="https://images.unsplash.com/photo-1542816417-098367527d41?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
105
+ alt="After School Program"
106
+ class="w-full h-48 object-cover">
107
+ <div class="p-6">
108
+ <div class="text-orange-500 mb-2"><i class="fas fa-school mr-2"></i>Education</div>
109
+ <h3 class="text-xl font-bold mb-3">After School Learning</h3>
110
+ <p class="text-gray-600 mb-4">Our after-school programs provide homework help, tutoring, and educational enrichment activities.</p>
111
+ <button class="text-orange-500 font-medium hover:text-orange-600 transition">Learn More →</button>
112
+ </div>
113
+ </div>
114
+
115
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover transition duration-300">
116
+ <img src="https://images.unsplash.com/photo-1541178735493-479c1a27ed24?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
117
+ alt="Arts Program"
118
+ class="w-full h-48 object-cover">
119
+ <div class="p-6">
120
+ <div class="text-orange-500 mb-2"><i class="fas fa-paint-brush mr-2"></i>Creativity</div>
121
+ <h3 class="text-xl font-bold mb-3">Creative Arts Studio</h3>
122
+ <p class="text-gray-600 mb-4">We nurture creativity through music, painting, drama, and other artistic expressions.</p>
123
+ <button class="text-orange-500 font-medium hover:text-orange-600 transition">Learn More →</button>
124
+ </div>
125
+ </div>
126
+
127
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg card-hover transition duration-300">
128
+ <img src="https://images.unsplash.com/photo-1542626991-cbc4e32524cc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
129
+ alt="Sports Program"
130
+ class="w-full h-48 object-cover">
131
+ <div class="p-6">
132
+ <div class="text-orange-500 mb-2"><i class="fas fa-running mr-2"></i>Fitness</div>
133
+ <h3 class="text-xl font-bold mb-3">Urban Sports League</h3>
134
+ <p class="text-gray-600 mb-4">Team sports and physical activities to promote health, teamwork, and discipline.</p>
135
+ <button class="text-orange-500 font-medium hover:text-orange-600 transition">Learn More →</button>
136
+ </div>
137
+ </div>
138
+ </div>
139
+
140
+ <div class="text-center mt-12">
141
+ <button class="border-2 border-orange-500 text-orange-500 hover:bg-orange-500 hover:text-white px-8 py-3 rounded-full font-bold transition">View All Programs</button>
142
+ </div>
143
+ </div>
144
+ </section>
145
+
146
+ <!-- Testimonials -->
147
+ <section class="bg-orange-50 py-20">
148
+ <div class="container mx-auto px-4">
149
+ <div class="text-center mb-16">
150
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Success Stories</h2>
151
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Hear from children and families whose lives we've impacted.</p>
152
+ </div>
153
+
154
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
155
+ <div class="bg-white p-8 rounded-xl shadow-md">
156
+ <div class="flex items-center mb-6">
157
+ <img src="https://randomuser.me/api/portraits/women/32.jpg"
158
+ alt="Maria's mom"
159
+ class="w-16 h-16 rounded-full object-cover mr-4">
160
+ <div>
161
+ <div class="font-bold">Maria's Mom</div>
162
+ <div class="text-gray-500">Parent</div>
163
+ </div>
164
+ </div>
165
+ <p class="text-gray-700 italic mb-6">"The after-school program gave Maria the confidence she needed. Her grades improved dramatically and she's now excited about learning."</p>
166
+ <div class="text-orange-400">
167
+ <i class="fas fa-star"></i>
168
+ <i class="fas fa-star"></i>
169
+ <i class="fas fa-star"></i>
170
+ <i class="fas fa-star"></i>
171
+ <i class="fas fa-star"></i>
172
+ </div>
173
+ </div>
174
+
175
+ <div class="bg-white p-8 rounded-xl shadow-md">
176
+ <div class="flex items-center mb-6">
177
+ <img src="https://randomuser.me/api/portraits/men/45.jpg"
178
+ alt="Jamal"
179
+ class="w-16 h-16 rounded-full object-cover mr-4">
180
+ <div>
181
+ <div class="font-bold">Jamal</div>
182
+ <div class="text-gray-500">Age 14, Program Participant</div>
183
+ </div>
184
+ </div>
185
+ <p class="text-gray-700 italic mb-6">"I never thought I could be good at anything until I joined the robotics program. Now I want to be an engineer when I grow up!"</p>
186
+ <div class="text-orange-400">
187
+ <i class="fas fa-star"></i>
188
+ <i class="fas fa-star"></i>
189
+ <i class="fas fa-star"></i>
190
+ <i class="fas fa-star"></i>
191
+ <i class="fas fa-star"></i>
192
+ </div>
193
+ </div>
194
+ </div>
195
+ </div>
196
+ </section>
197
+
198
+ <!-- Call to Action -->
199
+ <section class="py-20 bg-gray-900 text-white">
200
+ <div class="container mx-auto px-4 text-center">
201
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Join Us in Making a Difference</h2>
202
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Whether you want to volunteer, donate, or enroll your child, we welcome you to be part of our community.</p>
203
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
204
+ <button class="bg-orange-500 hover:bg-orange-600 text-white px-8 py-3 rounded-full font-bold transition">Become a Volunteer</button>
205
+ <button class="bg-white hover:bg-gray-100 text-gray-900 px-8 py-3 rounded-full font-bold transition">Make a Donation</button>
206
+ </div>
207
+ </div>
208
+ </section>
209
+
210
+ <!-- Footer -->
211
+ <footer class="bg-gray-800 text-white pt-16 pb-8">
212
+ <div class="container mx-auto px-4">
213
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
214
+ <div>
215
+ <div class="flex items-center space-x-2 mb-4">
216
+ <i class="fas fa-child text-3xl text-orange-500"></i>
217
+ <div class="text-2xl font-bold">Children Urban Hub</div>
218
+ </div>
219
+ <p class="text-gray-400 mb-4">Empowering urban youth through education, creativity, and opportunity since 2008.</p>
220
+ <div class="flex space-x-4">
221
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
222
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
223
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
224
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin-in"></i></a>
225
+ </div>
226
+ </div>
227
+
228
+ <div>
229
+ <h3 class="text-lg font-bold mb-4">Quick Links</h3>
230
+ <ul class="space-y-2">
231
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
232
+ <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
233
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Programs</a></li>
234
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Events</a></li>
235
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Volunteer</a></li>
236
+ </ul>
237
+ </div>
238
+
239
+ <div>
240
+ <h3 class="text-lg font-bold mb-4">Contact Us</h3>
241
+ <ul class="space-y-2 text-gray-400">
242
+ <li class="flex items-start">
243
+ <i class="fas fa-map-marker-alt mt-1 mr-3 text-orange-500"></i>
244
+ <span>123 Urban Way, Cityville, ST 12345</span>
245
+ </li>
246
+ <li class="flex items-start">
247
+ <i class="fas fa-phone-alt mt-1 mr-3 text-orange-500"></i>
248
+ <span>(555) 123-4567</span>
249
+ </li>
250
+ <li class="flex items-start">
251
+ <i class="fas fa-envelope mt-1 mr-3 text-orange-500"></i>
252
+ <span>info@childrenurbanhub.org</span>
253
+ </li>
254
+ </ul>
255
+ </div>
256
+
257
+ <div>
258
+ <h3 class="text-lg font-bold mb-4">Newsletter</h3>
259
+ <p class="text-gray-400 mb-4">Subscribe to our newsletter for updates on programs and events.</p>
260
+ <div class="flex">
261
+ <input type="email" placeholder="Your email" class="bg-gray-700 text-white px-4 py-2 rounded-l focus:outline-none focus:ring-2 focus:ring-orange-500 w-full">
262
+ <button class="bg-orange-500 hover:bg-orange-600 px-4 py-2 rounded-r font-medium transition">
263
+ <i class="fas fa-paper-plane"></i>
264
+ </button>
265
+ </div>
266
+ </div>
267
+ </div>
268
+
269
+ <div class="border-t border-gray-700 pt-8 text-center text-gray-400">
270
+ <p>&copy; 2023 Children Urban Hub. All rights reserved.</p>
271
+ </div>
272
+ </div>
273
+ </footer>
274
+
275
+ <script>
276
+ // Mobile menu toggle functionality
277
+ document.addEventListener('DOMContentLoaded', function() {
278
+ const mobileMenuButton = document.querySelector('button.md\\:hidden');
279
+ mobileMenuButton.addEventListener('click', function() {
280
+ // This would toggle a mobile menu - implementation would depend on your specific needs
281
+ alert('Mobile menu would open here in a full implementation');
282
+ });
283
+
284
+ // Smooth scrolling for anchor links
285
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
286
+ anchor.addEventListener('click', function (e) {
287
+ e.preventDefault();
288
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
289
+ behavior: 'smooth'
290
+ });
291
+ });
292
+ });
293
+ });
294
+ </script>
295
+ <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=NaderFayed07/draft" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
296
+ </html>