Support Cards Grid** (3-column responsive layout) | **Card Type** | **Function** | **Icon** | |---------------------|----------------------------------------------|----------------| | Site Resources | Links to `https://www.google.com` sub-pages | `link` | | Download Attachments| PDFs/guides (max 25MB) | `attach_file` | | Contact Support | Form with email/issue dropdown Failed to perform inference: an HTTP error occurred when requesting the provider fixed error | `support_agent`| - Follow Up Deployment
Browse files- index.html +55 -0
index.html
CHANGED
|
@@ -156,6 +156,42 @@
|
|
| 156 |
<span class="text-xs text-gray-600 text-center">Hashtags</span>
|
| 157 |
</div>
|
| 158 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 159 |
|
| 160 |
<!-- Attachment Section -->
|
| 161 |
<div class="mt-8">
|
|
@@ -244,6 +280,12 @@ The Customer Success Team
|
|
| 244 |
</div>
|
| 245 |
</div>
|
| 246 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 247 |
<a href="https://wa.me/919014472364" target="_blank" style="position: fixed; bottom: 20px; right: 20px; z-index: 9999;">
|
| 248 |
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp Support" style="width: 60px; height: 60px;">
|
| 249 |
</a>
|
|
@@ -320,6 +362,19 @@ The Customer Success Team
|
|
| 320 |
alert(`Opening ${iconType} functionality...`);
|
| 321 |
});
|
| 322 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 323 |
</script>
|
| 324 |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Rajeshdakulla/https-youtu-be-l7bpyij0k7e" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 325 |
</html>
|
|
|
|
| 156 |
<span class="text-xs text-gray-600 text-center">Hashtags</span>
|
| 157 |
</div>
|
| 158 |
</div>
|
| 159 |
+
|
| 160 |
+
<!-- Support Cards Grid -->
|
| 161 |
+
<div class="mt-8">
|
| 162 |
+
<h3 class="text-md font-medium mb-4 text-gray-700">Support Resources</h3>
|
| 163 |
+
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
|
| 164 |
+
<!-- Card 1 -->
|
| 165 |
+
<div class="bg-white rounded-lg shadow-sm p-4 border border-gray-200 hover:shadow-md transition cursor-pointer">
|
| 166 |
+
<div class="flex items-center mb-3">
|
| 167 |
+
<i class="fas fa-link text-indigo-600 mr-2"></i>
|
| 168 |
+
<h4 class="font-medium text-gray-800">Site Resources</h4>
|
| 169 |
+
</div>
|
| 170 |
+
<p class="text-sm text-gray-600 mb-3">Links to Google sub-pages</p>
|
| 171 |
+
<a href="https://www.google.com" target="_blank" class="text-indigo-600 text-sm hover:underline">View Resources</a>
|
| 172 |
+
</div>
|
| 173 |
+
|
| 174 |
+
<!-- Card 2 -->
|
| 175 |
+
<div class="bg-white rounded-lg shadow-sm p-4 border border-gray-200 hover:shadow-md transition cursor-pointer">
|
| 176 |
+
<div class="flex items-center mb-3">
|
| 177 |
+
<i class="fas fa-paperclip text-indigo-600 mr-2"></i>
|
| 178 |
+
<h4 class="font-medium text-gray-800">Download Attachments</h4>
|
| 179 |
+
</div>
|
| 180 |
+
<p class="text-sm text-gray-600 mb-3">PDFs/guides (max 25MB)</p>
|
| 181 |
+
<button class="text-indigo-600 text-sm hover:underline">Download Files</button>
|
| 182 |
+
</div>
|
| 183 |
+
|
| 184 |
+
<!-- Card 3 -->
|
| 185 |
+
<div class="bg-white rounded-lg shadow-sm p-4 border border-gray-200 hover:shadow-md transition cursor-pointer">
|
| 186 |
+
<div class="flex items-center mb-3">
|
| 187 |
+
<i class="fas fa-headset text-indigo-600 mr-2"></i>
|
| 188 |
+
<h4 class="font-medium text-gray-800">Contact Support</h4>
|
| 189 |
+
</div>
|
| 190 |
+
<p class="text-sm text-gray-600 mb-3">Form with email/issue dropdown</p>
|
| 191 |
+
<button class="text-indigo-600 text-sm hover:underline">Contact Now</button>
|
| 192 |
+
</div>
|
| 193 |
+
</div>
|
| 194 |
+
</div>
|
| 195 |
|
| 196 |
<!-- Attachment Section -->
|
| 197 |
<div class="mt-8">
|
|
|
|
| 280 |
</div>
|
| 281 |
</div>
|
| 282 |
|
| 283 |
+
<div style="position: fixed; bottom: 20px; left: 20px; z-index: 9999; background: white; padding: 10px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1);">
|
| 284 |
+
<a href="https://www.google.com" target="_blank" style="color: #4f46e5; text-decoration: none; margin-right: 15px;">Google Home</a>
|
| 285 |
+
<a href="https://policies.google.com" target="_blank" style="color: #4f46e5; text-decoration: none; margin-right: 15px;">Privacy Policy</a>
|
| 286 |
+
<a href="https://terms.google.com" target="_blank" style="color: #4f46e5; text-decoration: none;">Terms of Service</a>
|
| 287 |
+
</div>
|
| 288 |
+
|
| 289 |
<a href="https://wa.me/919014472364" target="_blank" style="position: fixed; bottom: 20px; right: 20px; z-index: 9999;">
|
| 290 |
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp Support" style="width: 60px; height: 60px;">
|
| 291 |
</a>
|
|
|
|
| 362 |
alert(`Opening ${iconType} functionality...`);
|
| 363 |
});
|
| 364 |
});
|
| 365 |
+
|
| 366 |
+
// Support Cards click handlers
|
| 367 |
+
document.querySelectorAll('.grid.grid-cols-1.md\\:grid-cols-3 > div').forEach((card, index) => {
|
| 368 |
+
card.addEventListener('click', function() {
|
| 369 |
+
if (index === 0) {
|
| 370 |
+
window.open('https://www.google.com', '_blank');
|
| 371 |
+
} else if (index === 1) {
|
| 372 |
+
alert('Download attachments functionality would open here');
|
| 373 |
+
} else {
|
| 374 |
+
alert('Contact support form would open here');
|
| 375 |
+
}
|
| 376 |
+
});
|
| 377 |
+
});
|
| 378 |
</script>
|
| 379 |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Rajeshdakulla/https-youtu-be-l7bpyij0k7e" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 380 |
</html>
|