Spaces:
Running
Running
| <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">[email protected]</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> |