Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>About - GitConnect Hub</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <style> | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); | |
| min-height: 100vh; | |
| } | |
| .card-hover { | |
| transition: all 0.3s ease; | |
| } | |
| .card-hover:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2); | |
| } | |
| .gradient-text { | |
| background: linear-gradient(90deg, #60a5fa, #8b5cf6, #ec4899); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .platform-card { | |
| backdrop-filter: blur(10px); | |
| background: rgba(255, 255, 255, 0.05); | |
| border: 1px solid rgba(255, 255, 255, 0.1); | |
| } | |
| .platform-card:hover { | |
| background: rgba(255, 255, 255, 0.1); | |
| border: 1px solid rgba(255, 255, 255, 0.2); | |
| } | |
| </style> | |
| </head> | |
| <body class="text-gray-100"> | |
| <!-- Header --> | |
| <header class="py-6 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-10 h-10 rounded-lg bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center"> | |
| <i data-feather="git-branch" class="text-white"></i> | |
| </div> | |
| <h1 class="text-2xl font-bold gradient-text">GitConnect Hub</h1> | |
| </div> | |
| <nav class="hidden md:flex space-x-8"> | |
| <a href="index.html" class="hover:text-blue-400 transition-colors">Home</a> | |
| <a href="about.html" class="hover:text-blue-400 transition-colors">About</a> | |
| <a href="#" class="hover:text-blue-400 transition-colors">Services</a> | |
| <a href="#" class="hover:text-blue-400 transition-colors">Contact</a> | |
| </nav> | |
| <button class="md:hidden text-gray-300"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="py-20 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto text-center"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-6"> | |
| About <span class="gradient-text">GitConnect Hub</span> | |
| </h1> | |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto mb-12"> | |
| We're passionate about helping developers connect their GitHub repositories with the best platforms and tools available. | |
| </p> | |
| </div> | |
| </section> | |
| <!-- Mission Section --> | |
| <section class="py-16 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center"> | |
| <div> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Our Mission</h2> | |
| <p class="text-gray-300 text-lg mb-6"> | |
| At GitConnect Hub, we believe that seamless integration between GitHub and third-party platforms is essential for modern software development. Our mission is to make these connections simple, accessible, and efficient for developers worldwide. | |
| </p> | |
| <p class="text-gray-300 text-lg mb-6"> | |
| We curate the best platforms and provide clear guidance on how to integrate them with your GitHub repositories, saving you time and effort in setting up complex workflows. | |
| </p> | |
| <div class="flex flex-wrap gap-4 mt-8"> | |
| <div class="flex items-center"> | |
| <i data-feather="check-circle" class="text-green-500 mr-2"></i> | |
| <span>Easy Integration Guides</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i data-feather="check-circle" class="text-green-500 mr-2"></i> | |
| <span>Curated Platform Selection</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i data-feather="check-circle" class="text-green-500 mr-2"></i> | |
| <span>Regular Updates</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gradient-to-br from-blue-900/50 to-purple-900/50 rounded-2xl p-8 backdrop-blur-sm border border-gray-700"> | |
| <div class="aspect-video rounded-xl bg-gradient-to-r from-blue-600 to-purple-600 flex items-center justify-center"> | |
| <i data-feather="layers" class="w-16 h-16 text-white"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Team Section --> | |
| <section class="py-16 px-4 sm:px-6 lg:px-8 bg-black/20"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Meet Our Team</h2> | |
| <p class="text-gray-400 max-w-2xl mx-auto"> | |
| Passionate developers and designers dedicated to making GitHub integrations easier for everyone. | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <!-- Team Member 1 --> | |
| <div class="platform-card rounded-2xl p-6 text-center"> | |
| <div class="w-24 h-24 rounded-full mx-auto mb-4 bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center"> | |
| <i data-feather="user" class="text-white w-12 h-12"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-2">Alex Johnson</h3> | |
| <p class="text-blue-400 mb-3">Founder & Lead Developer</p> | |
| <p class="text-gray-300"> | |
| 10+ years experience in DevOps and cloud infrastructure. Passionate about automation and developer tools. | |
| </p> | |
| </div> | |
| <!-- Team Member 2 --> | |
| <div class="platform-card rounded-2xl p-6 text-center"> | |
| <div class="w-24 h-24 rounded-full mx-auto mb-4 bg-gradient-to-r from-purple-500 to-pink-600 flex items-center justify-center"> | |
| <i data-feather="user" class="text-white w-12 h-12"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-2">Sarah Williams</h3> | |
| <p class="text-purple-400 mb-3">UI/UX Designer</p> | |
| <p class="text-gray-300"> | |
| Specializes in creating intuitive interfaces for developer tools. Believes in design that empowers users. | |
| </p> | |
| </div> | |
| <!-- Team Member 3 --> | |
| <div class="platform-card rounded-2xl p-6 text-center"> | |
| <div class="w-24 h-24 rounded-full mx-auto mb-4 bg-gradient-to-r from-green-500 to-teal-600 flex items-center justify-center"> | |
| <i data-feather="user" class="text-white w-12 h-12"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-2">Michael Chen</h3> | |
| <p class="text-green-400 mb-3">Content Strategist</p> | |
| <p class="text-gray-300"> | |
| Technical writer focused on making complex integrations easy to understand through clear documentation. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Stats Section --> | |
| <section class="py-16 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center"> | |
| <div class="platform-card rounded-2xl p-6"> | |
| <div class="text-4xl font-bold gradient-text mb-2">50+</div> | |
| <div class="text-gray-300">Platforms Covered</div> | |
| </div> | |
| <div class="platform-card rounded-2xl p-6"> | |
| <div class="text-4xl font-bold gradient-text mb-2">10K+</div> | |
| <div class="text-gray-300">Developers Helped</div> | |
| </div> | |
| <div class="platform-card rounded-2xl p-6"> | |
| <div class="text-4xl font-bold gradient-text mb-2">100%</div> | |
| <div class="text-gray-300">Free Resources</div> | |
| </div> | |
| <div class="platform-card rounded-2xl p-6"> | |
| <div class="text-4xl font-bold gradient-text mb-2">24/7</div> | |
| <div class="text-gray-300">Community Support</div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="py-12 px-4 sm:px-6 lg:px-8 border-t border-gray-800"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-4"> | |
| <div class="w-8 h-8 rounded-lg bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center"> | |
| <i data-feather="git-branch" class="text-white w-4 h-4"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">GitConnect Hub</h3> | |
| </div> | |
| <p class="text-gray-400"> | |
| The ultimate guide to connecting your GitHub repositories with the best platforms and tools. | |
| </p> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Platforms</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Vercel</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Netlify</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">CircleCI</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Heroku</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Resources</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Documentation</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Tutorials</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Blog</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Community</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Connect</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Twitter</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">GitHub</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Discord</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Contact</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500"> | |
| <p>© 2023 GitConnect Hub. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |