Spaces:
Running
Running
File size: 24,632 Bytes
a7992ea |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Children Urban Hub - Reimagined</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#4361ee',
secondary: '#3f37c9',
accent: '#4cc9f0',
light: '#f8f9fa',
dark: '#212529',
success: '#4ade80',
warning: '#facc15',
danger: '#f87171'
},
fontFamily: {
heading: ['Poppins', 'sans-serif'],
body: ['Open Sans', 'sans-serif']
}
}
}
}
</script>
<style>
.hero-bg {
background: linear-gradient(135deg, rgba(67, 97, 238, 0.9) 0%, rgba(63, 55, 201, 0.9) 100%), url('https://images.unsplash.com/photo-1519452635265-7b1fbfd1e4e0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
background-size: cover;
background-position: center;
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.btn-primary {
transition: all 0.3s ease;
background: linear-gradient(to right, #4361ee, #3f37c9);
}
.btn-primary:hover {
background: linear-gradient(to right, #3f37c9, #4361ee);
transform: translateY(-3px);
box-shadow: 0 10px 15px -3px rgba(67, 97, 238, 0.3);
}
.stats-card {
transition: all 0.3s ease;
}
.stats-card:hover {
transform: scale(1.05);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.section-divider {
height: 8px;
background: linear-gradient(to right, #4361ee, #3f37c9, #4cc9f0);
}
</style>
</head>
<body class="font-body bg-light text-dark">
<!-- Header -->
<header class="sticky top-0 z-50 bg-white shadow-md">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<div class="bg-primary w-12 h-12 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-child text-white text-2xl"></i>
</div>
<h1 class="font-heading text-2xl font-bold text-primary">Children Urban Hub</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="font-medium hover:text-primary transition">Home</a>
<a href="#" class="font-medium hover:text-primary transition">About</a>
<a href="#" class="font-medium hover:text-primary transition">Programs</a>
<a href="#" class="font-medium hover:text-primary transition">Resources</a>
<a href="#" class="font-medium hover:text-primary transition">Events</a>
<a href="#" class="font-medium hover:text-primary transition">Contact</a>
</nav>
<div class="flex items-center space-x-4">
<button class="hidden md:block bg-primary hover:bg-secondary text-white font-medium py-2 px-6 rounded-full transition">
Donate
</button>
<button class="md:hidden text-primary">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero-bg text-white py-20 md:py-32">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="font-heading text-4xl md:text-5xl lg:text-6xl font-bold mb-6 leading-tight">
Empowering Children in Urban Communities
</h1>
<p class="text-xl mb-8 max-w-lg">
Creating safe spaces, educational opportunities, and support networks for children in urban environments.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="btn-primary text-white font-bold py-3 px-8 rounded-full text-lg">
Get Involved
</button>
<button class="bg-white text-primary font-bold py-3 px-8 rounded-full text-lg hover:bg-gray-100 transition">
Learn More
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="bg-white bg-opacity-20 backdrop-blur-sm rounded-2xl p-6 max-w-md animate-float">
<div class="bg-white rounded-xl p-6 shadow-lg">
<div class="flex justify-between items-center mb-4">
<h3 class="font-heading text-xl font-bold text-primary">Our Impact</h3>
<i class="fas fa-chart-line text-primary text-2xl"></i>
</div>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">Children Supported</span>
<span class="font-bold">8,420</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-accent h-2.5 rounded-full" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">Programs Active</span>
<span class="font-bold">24</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-success h-2.5 rounded-full" style="width: 92%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-medium">Community Centers</span>
<span class="font-bold">12</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-warning h-2.5 rounded-full" style="width: 78%"></div>
</div>
</div>
</div>
</div>
</div>
<div class="absolute -bottom-6 -right-6 bg-accent w-24 h-24 rounded-full flex items-center justify-center shadow-xl">
<i class="fas fa-heart text-white text-3xl"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="font-heading text-3xl md:text-4xl font-bold mb-4">Our Community Impact</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Since our inception, we've been dedicated to transforming urban communities through child-focused initiatives.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="stats-card bg-primary text-white rounded-2xl p-8 text-center shadow-lg">
<div class="text-5xl font-bold mb-4">15,000+</div>
<h3 class="text-xl font-semibold">Children Reached</h3>
</div>
<div class="stats-card bg-secondary text-white rounded-2xl p-8 text-center shadow-lg">
<div class="text-5xl font-bold mb-4">42</div>
<h3 class="text-xl font-semibold">Urban Centers</h3>
</div>
<div class="stats-card bg-accent text-white rounded-2xl p-8 text-center shadow-lg">
<div class="text-5xl font-bold mb-4">120+</div>
<h3 class="text-xl font-semibold">Community Programs</h3>
</div>
<div class="stats-card bg-success text-white rounded-2xl p-8 text-center shadow-lg">
<div class="text-5xl font-bold mb-4">98%</div>
<h3 class="text-xl font-semibold">Parent Satisfaction</h3>
</div>
</div>
</div>
</section>
<!-- Programs Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="font-heading text-3xl md:text-4xl font-bold mb-4">Our Core Programs</h2>
<p class="text-gray-600 max-w-2xl mx-auto">We offer comprehensive programs designed to support children's development and well-being in urban environments.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
<!-- Program 1 -->
<div class="card-hover bg-white rounded-2xl overflow-hidden shadow-xl">
<div class="h-48 bg-gradient-to-r from-primary to-secondary flex items-center justify-center">
<i class="fas fa-book-open text-white text-6xl"></i>
</div>
<div class="p-8">
<h3 class="font-heading text-2xl font-bold mb-3">Educational Support</h3>
<p class="text-gray-600 mb-6">Tutoring, homework help, and educational resources to bridge the achievement gap in underserved communities.</p>
<a href="#" class="text-primary font-medium flex items-center">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Program 2 -->
<div class="card-hover bg-white rounded-2xl overflow-hidden shadow-xl">
<div class="h-48 bg-gradient-to-r from-accent to-primary flex items-center justify-center">
<i class="fas fa-utensils text-white text-6xl"></i>
</div>
<div class="p-8">
<h3 class="font-heading text-2xl font-bold mb-3">Nutrition Initiative</h3>
<p class="text-gray-600 mb-6">Providing healthy meals and nutrition education to ensure children have the foundation for growth.</p>
<a href="#" class="text-primary font-medium flex items-center">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Program 3 -->
<div class="card-hover bg-white rounded-2xl overflow-hidden shadow-xl">
<div class="h-48 bg-gradient-to-r from-success to-accent flex items-center justify-center">
<i class="fas fa-heartbeat text-white text-6xl"></i>
</div>
<div class="p-8">
<h3 class="font-heading text-2xl font-bold mb-3">Mental Health Support</h3>
<p class="text-gray-600 mb-6">Counseling services and emotional support programs to address the unique challenges urban children face.</p>
<a href="#" class="text-primary font-medium flex items-center">
Learn more
<i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="font-heading text-3xl md:text-4xl font-bold mb-4">Community Voices</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Hear from families and community members whose lives have been transformed by our programs.</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-gray-50 rounded-2xl p-8 shadow-md">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full bg-gray-300 overflow-hidden mr-4">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1287&q=80" alt="User" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-lg">Michael Johnson</h4>
<p class="text-gray-600">Parent</p>
</div>
</div>
<p class="text-gray-700 italic mb-6">"The after-school program has been a game-changer for my son. He's more confident, his grades have improved, and he's excited to learn."</p>
<div class="flex text-warning">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-gray-50 rounded-2xl p-8 shadow-md">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full bg-gray-300 overflow-hidden mr-4">
<img src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1288&q=80" alt="User" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-lg">Sarah Williams</h4>
<p class="text-gray-600">Community Leader</p>
</div>
</div>
<p class="text-gray-700 italic mb-6">"Children Urban Hub has brought our neighborhood together. The community garden project has created a space where families connect and children learn valuable life skills."</p>
<div class="flex text-warning">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-gray-50 rounded-2xl p-8 shadow-md">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full bg-gray-300 overflow-hidden mr-4">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1287&q=80" alt="User" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold text-lg">David Chen</h4>
<p class="text-gray-600">Volunteer</p>
</div>
</div>
<p class="text-gray-700 italic mb-6">"Volunteering with Children Urban Hub has been incredibly rewarding. Seeing the impact we have on children's lives motivates me to continue contributing to our community."</p>
<div class="flex text-warning">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-gradient-to-r from-primary to-secondary text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="font-heading text-3xl md:text-4xl font-bold mb-6">Join Us in Making a Difference</h2>
<p class="text-xl max-w-2xl mx-auto mb-10">Your support helps us create safe spaces and opportunities for children in urban communities.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<button class="btn-primary text-white font-bold py-4 px-10 rounded-full text-lg">
<i class="fas fa-hand-holding-heart mr-2"></i> Donate Now
</button>
<button class="bg-white text-primary font-bold py-4 px-10 rounded-full text-lg hover:bg-gray-100 transition">
<i class="fas fa-hands-helping mr-2"></i> Volunteer
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-10 mb-12">
<div>
<div class="flex items-center mb-6">
<div class="bg-primary w-10 h-10 rounded-full flex items-center justify-center mr-3">
<i class="fas fa-child text-white text-xl"></i>
</div>
<h3 class="font-heading text-2xl font-bold">Children Urban Hub</h3>
</div>
<p class="text-gray-400 mb-6">Creating safe spaces and opportunities for children in urban communities since 2010.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook-f text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin-in text-xl"></i>
</a>
</div>
</div>
<div>
<h4 class="font-heading text-xl font-bold mb-6">Quick Links</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Programs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Events</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Resources</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="font-heading text-xl font-bold mb-6">Programs</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">Educational Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Nutrition Initiative</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Mental Health Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Arts & Creativity</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Sports & Recreation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Community Gardens</a></li>
</ul>
</div>
<div>
<h4 class="font-heading text-xl font-bold mb-6">Contact Us</h4>
<ul class="space-y-4">
<li class="flex items-start">
<i class="fas fa-map-marker-alt text-primary mt-1 mr-3"></i>
<span class="text-gray-400">123 Community Street, Urban City, UC 10001</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt text-primary mr-3"></i>
<span class="text-gray-400">(123) 456-7890</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-primary mr-3"></i>
<span class="text-gray-400">info@childrenurbanhub.org</span>
</li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-gray-800 text-center text-gray-500">
<p>© 2023 Children Urban Hub. All rights reserved.</p>
</div>
</div>
</footer>
<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-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |