| | <!DOCTYPE html> |
| | <html lang="en"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>API Wizard - Google Cloud Console Companion</title> |
| | <link rel="icon" type="image/x-icon" href="https://www.gstatic.com/devrel-devsite/prod/v45f61267e2282694b2d2f3e2e2ff6c1050b0b1a6ff5f8eb3c3cba3b6a0804a8/cloud/images/favicons/onecloud/favicon.ico"> |
| | <script src="https://cdn.tailwindcss.com"></script> |
| | <script src="https://unpkg.com/feather-icons"></script> |
| | <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> |
| | <style> |
| | .gradient-bg { |
| | background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 100%); |
| | } |
| | .console-card:hover { |
| | transform: translateY(-5px); |
| | box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| | } |
| | </style> |
| | </head> |
| | <body class="bg-gray-50 min-h-screen" id="vanta-bg"> |
| | |
| | <nav class="gradient-bg text-white shadow-lg"> |
| | <div class="container mx-auto px-6 py-3 flex justify-between items-center"> |
| | <div class="flex items-center space-x-4"> |
| | <i data-feather="cloud" class="w-8 h-8"></i> |
| | <span class="text-xl font-bold">API Wizard</span> |
| | </div> |
| | <div class="hidden md:flex items-center space-x-8"> |
| | <a href="https://console.cloud.google.com/" class="hover:text-yellow-200 transition">Console</a> |
| | <a href="https://console.cloud.google.com/apis" class="hover:text-yellow-200 transition">APIs</a> |
| | <a href="https://console.cloud.google.com/iam-admin/iam" class="hover:text-yellow-200 transition">IAM</a> |
| | <a href="https://console.cloud.google.com/billing" class="hover:text-yellow-200 transition">Billing</a> |
| | </div> |
| | <button class="md:hidden focus:outline-none"> |
| | <i data-feather="menu" class="w-6 h-6"></i> |
| | </button> |
| | </div> |
| | </nav> |
| |
|
| | |
| | <section class="gradient-bg text-white py-20"> |
| | <div class="container mx-auto px-6 text-center"> |
| | <h1 class="text-4xl md:text-6xl font-bold mb-6">Supercharge Your Google Cloud Console</h1> |
| | <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Your magical companion for navigating the Google Cloud API labyrinth with ease</p> |
| | <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| | <a href="https://console.cloud.google.com/" class="bg-white text-blue-600 px-8 py-3 rounded-lg font-semibold hover:bg-blue-50 transition flex items-center justify-center"> |
| | <i data-feather="log-in" class="mr-2"></i> Open Console |
| | </a> |
| | <a href="#features" class="bg-blue-700 text-white px-8 py-3 rounded-lg font-semibold hover:bg-blue-800 transition flex items-center justify-center"> |
| | <i data-feather="info" class="mr-2"></i> Learn More |
| | </a> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="py-16 bg-white"> |
| | <div class="container mx-auto px-6"> |
| | <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Quick Access</h2> |
| | <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> |
| | |
| | <a href="https://console.cloud.google.com/apis" class="console-card bg-white rounded-xl shadow-md p-6 transition duration-300 hover:border-blue-500 border-2 border-transparent"> |
| | <div class="text-blue-500 mb-4"> |
| | <i data-feather="cpu" class="w-10 h-10"></i> |
| | </div> |
| | <h3 class="text-xl font-semibold mb-2 text-gray-800">API Dashboard</h3> |
| | <p class="text-gray-600">View and manage all your enabled APIs</p> |
| | </a> |
| |
|
| | |
| | <a href="https://console.cloud.google.com/apis/credentials" class="console-card bg-white rounded-xl shadow-md p-6 transition duration-300 hover:border-green-500 border-2 border-transparent"> |
| | <div class="text-green-500 mb-4"> |
| | <i data-feather="key" class="w-10 h-10"></i> |
| | </div> |
| | <h3 class="text-xl font-semibold mb-2 text-gray-800">Credentials</h3> |
| | <p class="text-gray-600">Manage API keys, OAuth clients & service accounts</p> |
| | </a> |
| |
|
| | |
| | <a href="https://console.cloud.google.com/apis/api/youtube.googleapis.com/quotas" class="console-card bg-white rounded-xl shadow-md p-6 transition duration-300 hover:border-yellow-500 border-2 border-transparent"> |
| | <div class="text-yellow-500 mb-4"> |
| | <i data-feather="bar-chart-2" class="w-10 h-10"></i> |
| | </div> |
| | <h3 class="text-xl font-semibold mb-2 text-gray-800">Quotas</h3> |
| | <p class="text-gray-600">Check and manage your API usage limits</p> |
| | </a> |
| |
|
| | |
| | <a href="https://console.cloud.google.com/apis/library" class="console-card bg-white rounded-xl shadow-md p-6 transition duration-300 hover:border-red-500 border-2 border-transparent"> |
| | <div class="text-red-500 mb-4"> |
| | <i data-feather="book-open" class="w-10 h-10"></i> |
| | </div> |
| | <h3 class="text-xl font-semibold mb-2 text-gray-800">API Library</h3> |
| | <p class="text-gray-600">Discover and enable new APIs</p> |
| | </a> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="features" class="py-16 bg-gray-50"> |
| | <div class="container mx-auto px-6"> |
| | <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Powerful Features</h2> |
| | <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| | <div class="bg-white p-8 rounded-lg shadow-md"> |
| | <div class="text-blue-500 mb-4"> |
| | <i data-feather="zap" class="w-8 h-8"></i> |
| | </div> |
| | <h3 class="text-xl font-semibold mb-3 text-gray-800">Quick Navigation</h3> |
| | <p class="text-gray-600">Direct links to all essential sections of the Google Cloud Console, saving you from endless menu hunting.</p> |
| | </div> |
| | <div class="bg-white p-8 rounded-lg shadow-md"> |
| | <div class="text-green-500 mb-4"> |
| | <i data-feather="search" class="w-8 h-8"></i> |
| | </div> |
| | <h3 class="text-xl font-semibold mb-3 text-gray-800">API Search</h3> |
| | <p class="text-gray-600">Quickly find the API you need with our enhanced search functionality (coming soon).</p> |
| | </div> |
| | <div class="bg-white p-8 rounded-lg shadow-md"> |
| | <div class="text-purple-500 mb-4"> |
| | <i data-feather="bell" class="w-8 h-8"></i> |
| | </div> |
| | <h3 class="text-xl font-semibold mb-3 text-gray-800">Usage Alerts</h3> |
| | <p class="text-gray-600">Get notified when you're approaching your quota limits (coming soon).</p> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="py-16 bg-white"> |
| | <div class="container mx-auto px-6"> |
| | <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Google Cloud API Status</h2> |
| | <div class="bg-gray-100 rounded-lg p-6"> |
| | <div class="flex justify-between items-center mb-4"> |
| | <h3 class="text-xl font-semibold">Current Status</h3> |
| | <span class="px-3 py-1 bg-green-100 text-green-800 rounded-full text-sm font-medium flex items-center"> |
| | <span class="w-2 h-2 bg-green-500 rounded-full mr-2"></span> |
| | All Systems Operational |
| | </span> |
| | </div> |
| | <p class="text-gray-600 mb-6">Last checked: <span id="status-time" class="font-medium">Just now</span></p> |
| | <div class="grid grid-cols-1 md:grid-cols-3 gap-4"> |
| | <div class="bg-white p-4 rounded-lg shadow"> |
| | <div class="flex items-center"> |
| | <span class="w-3 h-3 bg-green-500 rounded-full mr-2"></span> |
| | <span class="font-medium">Compute Engine</span> |
| | </div> |
| | </div> |
| | <div class="bg-white p-4 rounded-lg shadow"> |
| | <div class="flex items-center"> |
| | <span class="w-3 h-3 bg-green-500 rounded-full mr-2"></span> |
| | <span class="font-medium">Cloud Storage</span> |
| | </div> |
| | </div> |
| | <div class="bg-white p-4 rounded-lg shadow"> |
| | <div class="flex items-center"> |
| | <span class="w-3 h-3 bg-green-500 rounded-full mr-2"></span> |
| | <span class="font-medium">BigQuery</span> |
| | </div> |
| | </div> |
| | </div> |
| | <div class="mt-6 text-center"> |
| | <a href="https://status.cloud.google.com/" class="text-blue-600 hover:text-blue-800 font-medium inline-flex items-center"> |
| | View detailed status <i data-feather="external-link" class="ml-1 w-4 h-4"></i> |
| | </a> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <footer class="gradient-bg text-white py-12"> |
| | <div class="container mx-auto px-6"> |
| | <div class="flex flex-col md:flex-row justify-between items-center"> |
| | <div class="mb-6 md:mb-0"> |
| | <div class="flex items-center space-x-2"> |
| | <i data-feather="cloud" class="w-8 h-8"></i> |
| | <span class="text-xl font-bold">API Wizard</span> |
| | </div> |
| | <p class="mt-2 text-blue-100">Your Google Cloud Console companion</p> |
| | </div> |
| | <div class="flex flex-col md:flex-row md:space-x-8 space-y-4 md:space-y-0"> |
| | <div> |
| | <h4 class="text-lg font-semibold mb-2">Resources</h4> |
| | <ul class="space-y-2"> |
| | <li><a href="https://cloud.google.com/docs" class="text-blue-100 hover:text-white transition">Documentation</a></li> |
| | <li><a href="https://cloud.google.com/blog" class="text-blue-100 hover:text-white transition">Blog</a></li> |
| | <li><a href="https://cloud.google.com/terms" class="text-blue-100 hover:text-white transition">Terms</a></li> |
| | </ul> |
| | </div> |
| | <div> |
| | <h4 class="text-lg font-semibold mb-2">Support</h4> |
| | <ul class="space-y-2"> |
| | <li><a href="https://cloud.google.com/support" class="text-blue-100 hover:text-white transition">Help Center</a></li> |
| | <li><a href="https://cloud.google.com/community" class="text-blue-100 hover:text-white transition">Community</a></li> |
| | </ul> |
| | </div> |
| | </div> |
| | </div> |
| | <div class="border-t border-blue-400 mt-8 pt-8 text-center text-blue-100"> |
| | <p>© 2023 API Wizard. Not affiliated with Google LLC.</p> |
| | </div> |
| | </div> |
| | </footer> |
| |
|
| | <script> |
| | |
| | VANTA.NET({ |
| | el: "#vanta-bg", |
| | mouseControls: true, |
| | touchControls: true, |
| | gyroControls: false, |
| | minHeight: 200.00, |
| | minWidth: 200.00, |
| | scale: 1.00, |
| | scaleMobile: 1.00, |
| | color: 0x4285f4, |
| | backgroundColor: 0xf8fafc, |
| | points: 10.00, |
| | maxDistance: 22.00, |
| | spacing: 17.00 |
| | }); |
| | |
| | |
| | document.getElementById('status-time').textContent = new Date().toLocaleString(); |
| | |
| | |
| | feather.replace(); |
| | </script> |
| | </body> |
| | </html> |
| |
|