Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Integration Platforms - 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); | |
| } | |
| .category-btn { | |
| transition: all 0.3s ease; | |
| } | |
| .category-btn:hover, .category-btn.active { | |
| background: rgba(96, 165, 250, 0.2); | |
| border-color: #60a5fa; | |
| } | |
| </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="platforms.html" class="text-blue-400 transition-colors">Platforms</a> | |
| <a href="#" class="hover:text-blue-400 transition-colors">Resources</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> | |
| <!-- Platforms Hero Section --> | |
| <section class="py-16 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto text-center"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6"> | |
| Integration <span class="gradient-text">Platforms</span> | |
| </h1> | |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto mb-10"> | |
| Discover all the platforms you can connect with your GitHub repositories to enhance your development workflow. | |
| </p> | |
| </div> | |
| </section> | |
| <!-- Categories Filter --> | |
| <section class="py-8 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="flex flex-wrap justify-center gap-4 mb-12"> | |
| <button class="category-btn active border border-gray-600 rounded-full px-6 py-2">All Platforms</button> | |
| <button class="category-btn border border-gray-600 rounded-full px-6 py-2">Deployment</button> | |
| <button class="category-btn border border-gray-600 rounded-full px-6 py-2">CI/CD</button> | |
| <button class="category-btn border border-gray-600 rounded-full px-6 py-2">Monitoring</button> | |
| <button class="category-btn border border-gray-600 rounded-full px-6 py-2">Development</button> | |
| <button class="category-btn border border-gray-600 rounded-full px-6 py-2">Analytics</button> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Platform Card 1 --> | |
| <div class="platform-card rounded-2xl p-6 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-lg bg-blue-500 flex items-center justify-center mr-4"> | |
| <i data-feather="cloud" class="text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">Vercel</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Deploy your GitHub projects instantly with Vercel's seamless integration. Perfect for frontend applications. | |
| </p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-blue-400">Frontend Deployment</span> | |
| <button class="text-blue-400 hover:text-blue-300 flex items-center"> | |
| Connect <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Platform Card 2 --> | |
| <div class="platform-card rounded-2xl p-6 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-lg bg-purple-500 flex items-center justify-center mr-4"> | |
| <i data-feather="server" class="text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">Netlify</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Build, deploy, and host your GitHub projects with Netlify's powerful automation tools. | |
| </p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-purple-400">Static Sites</span> | |
| <button class="text-purple-400 hover:text-purple-300 flex items-center"> | |
| Connect <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Platform Card 3 --> | |
| <div class="platform-card rounded-2xl p-6 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-lg bg-pink-500 flex items-center justify-center mr-4"> | |
| <i data-feather="activity" class="text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">CircleCI</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Automate your testing and deployment pipelines with CircleCI's GitHub integration. | |
| </p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-pink-400">CI/CD</span> | |
| <button class="text-pink-400 hover:text-pink-300 flex items-center"> | |
| Connect <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Platform Card 4 --> | |
| <div class="platform-card rounded-2xl p-6 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-lg bg-green-500 flex items-center justify-center mr-4"> | |
| <i data-feather="code" class="text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">CodeSandbox</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Import and develop your GitHub repositories directly in the browser with CodeSandbox. | |
| </p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-green-400">Online IDE</span> | |
| <button class="text-green-400 hover:text-green-300 flex items-center"> | |
| Connect <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Platform Card 5 --> | |
| <div class="platform-card rounded-2xl p-6 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-lg bg-yellow-500 flex items-center justify-center mr-4"> | |
| <i data-feather="bar-chart-2" class="text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">GitHub Actions</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Automate your workflow directly in GitHub with GitHub Actions. No external tools needed. | |
| </p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-yellow-400">Native Automation</span> | |
| <button class="text-yellow-400 hover:text-yellow-300 flex items-center"> | |
| Connect <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Platform Card 6 --> | |
| <div class="platform-card rounded-2xl p-6 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-lg bg-red-500 flex items-center justify-center mr-4"> | |
| <i data-feather="monitor" class="text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">Heroku</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Deploy, manage, and scale your GitHub applications with Heroku's platform-as-a-service. | |
| </p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-red-400">Cloud Platform</span> | |
| <button class="text-red-400 hover:text-red-300 flex items-center"> | |
| Connect <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Platform Card 7 --> | |
| <div class="platform-card rounded-2xl p-6 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-lg bg-indigo-500 flex items-center justify-center mr-4"> | |
| <i data-feather="zap" class="text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">Travis CI</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Test and deploy your projects with confidence using Travis CI's continuous integration platform. | |
| </p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-indigo-400">CI/CD</span> | |
| <button class="text-indigo-400 hover:text-indigo-300 flex items-center"> | |
| Connect <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Platform Card 8 --> | |
| <div class="platform-card rounded-2xl p-6 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-lg bg-teal-500 flex items-center justify-center mr-4"> | |
| <i data-feather="pie-chart" class="text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">CodeClimate</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Automated code review and quality analysis for your GitHub repositories. | |
| </p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-teal-400">Code Quality</span> | |
| <button class="text-teal-400 hover:text-teal-300 flex items-center"> | |
| Connect <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Platform Card 9 --> | |
| <div class="platform-card rounded-2xl p-6 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-lg bg-orange-500 flex items-center justify-center mr-4"> | |
| <i data-feather="alert-triangle" class="text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">Sentry</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Real-time error tracking that integrates seamlessly with your GitHub workflow. | |
| </p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-orange-400">Error Monitoring</span> | |
| <button class="text-orange-400 hover:text-orange-300 flex items-center"> | |
| Connect <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-16 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-4xl mx-auto text-center bg-gradient-to-r from-blue-900/50 to-purple-900/50 rounded-3xl p-12 backdrop-blur-sm border border-gray-700"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Can't Find Your Platform?</h2> | |
| <p class="text-gray-300 text-xl mb-8 max-w-2xl mx-auto"> | |
| We're constantly adding new platforms. Suggest your favorite tool and we'll create a guide for it. | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <button class="bg-white text-gray-900 hover:bg-gray-100 font-semibold py-3 px-8 rounded-lg transition-all duration-300 transform hover:scale-105"> | |
| Request Platform | |
| </button> | |
| <button class="bg-transparent border-2 border-gray-400 hover:border-white text-white font-semibold py-3 px-8 rounded-lg transition-all duration-300"> | |
| View All Guides | |
| </button> | |
| </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="platforms.html" class="hover:text-white transition-colors">Vercel</a></li> | |
| <li><a href="platforms.html" class="hover:text-white transition-colors">Netlify</a></li> | |
| <li><a href="platforms.html" class="hover:text-white transition-colors">CircleCI</a></li> | |
| <li><a href="platforms.html" 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(); | |
| // Category filter functionality | |
| const categoryButtons = document.querySelectorAll('.category-btn'); | |
| categoryButtons.forEach(button => { | |
| button.addEventListener('click', () => { | |
| // Remove active class from all buttons | |
| categoryButtons.forEach(btn => btn.classList.remove('active')); | |
| // Add active class to clicked button | |
| button.classList.add('active'); | |
| }); | |
| }); | |
| </script> | |
| </body> | |
| </html> |