Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>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="services.html" class="hover:text-blue-400 transition-colors">Services</a> | |
| <a href="contact.html" 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-16 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"> | |
| Connect Your <span class="gradient-text">GitHub</span> With Everything | |
| </h1> | |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto mb-10"> | |
| Discover the best platforms and tools to integrate your GitHub repositories with your favorite services and workflows. | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <button class="bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 text-white font-semibold py-3 px-8 rounded-lg transition-all duration-300 transform hover:scale-105"> | |
| Explore Platforms | |
| </button> | |
| <button class="bg-transparent border-2 border-gray-600 hover:border-gray-400 text-white font-semibold py-3 px-8 rounded-lg transition-all duration-300"> | |
| Learn More | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Platforms Section --> | |
| <section class="py-16 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Popular Integration Platforms</h2> | |
| <p class="text-gray-400 max-w-2xl mx-auto"> | |
| Connect your GitHub repositories with these powerful platforms to automate workflows, deploy applications, and collaborate more effectively. | |
| </p> | |
| </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> | |
| </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">Ready to Connect Your GitHub?</h2> | |
| <p class="text-gray-300 text-xl mb-8 max-w-2xl mx-auto"> | |
| Start integrating your repositories with the best platforms today and supercharge your development workflow. | |
| </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"> | |
| Get Started Now | |
| </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"> | |
| <a href="contact.html">Contact Us</a> | |
| </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="#" 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> | |