File size: 12,671 Bytes
1d77260
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158fc3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!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">
    <!-- Navigation -->
    <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>

    <!-- Hero Section -->
    <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>

    <!-- Quick Links -->
    <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">
                <!-- API Dashboard -->
                <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>

                <!-- Credentials -->
                <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>

                <!-- Quotas -->
                <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>

                <!-- Library -->
                <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>

    <!-- Features 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>

    <!-- API Status -->
    <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 -->
    <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>
        // Initialize Vanta.js background
        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
        });

        // Update status time
        document.getElementById('status-time').textContent = new Date().toLocaleString();

        // Initialize feather icons
        feather.replace();
    </script>
</body>
</html>