| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Tools | GitHub Galaxy Explorer</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <style> |
| |
| </style> |
| </head> |
| <body> |
| <div class="min-h-screen"> |
| |
| |
| |
| <section class="py-16 px-6 lg:px-12 relative"> |
| <div class="absolute inset-x-0 top-0 h-64 bg-gradient-to-b from-purple-900/10 to-transparent -z-10"></div> |
| <div class="relative max-w-4xl mx-auto mb-12"> |
| <div class="flex items-center bg-gray-800/80 backdrop-blur-sm rounded-xl px-6 py-4 border border-gray-700 focus-within:border-purple-500 transition-all duration-300 shadow-lg hover:shadow-purple-500/20"> |
| <i data-feather="search" class="text-purple-400 mr-3"></i> |
| <input type="text" placeholder="Search or enter GitHub repo URL..." |
| class="bg-transparent w-full focus:outline-none text-white placeholder-gray-400 text-lg"> |
| <button class="ml-4 bg-gradient-to-r from-purple-600 to-blue-600 hover:from-purple-700 hover:to-blue-700 px-6 py-2 rounded-lg text-sm font-medium transition-all duration-300 transform hover:scale-105"> |
| Search |
| </button> |
| </div> |
| </div> |
| <h1 class="text-3xl font-bold mb-8">Developer Tools</h1> |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
| <div class="repo-card rounded-xl p-6"> |
| <div class="flex items-center mb-4"> |
| <img src="https://avatars.githubusercontent.com/u/44036562?s=200&v=4" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h3 class="font-bold text-lg">GitHub CLI</h3> |
| <p class="text-gray-400 text-sm">GitHub</p> |
| </div> |
| </div> |
| <p class="text-gray-300 mb-4"> |
| GitHub on the command line. Take GitHub to the command line. |
| </p> |
| <div class="flex justify-between items-center text-sm text-gray-400"> |
| <span><i data-feather="star" class="w-4 h-4 inline mr-1"></i> 12.5k</span> |
| <span class="bg-green-900 text-green-300 px-2 py-1 rounded-full text-xs">CLI</span> |
| </div> |
| </div> |
| |
| |
| </div> |
| </section> |
|
|
| |
| </div> |
|
|
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |