File size: 27,141 Bytes
4fbfde8 |
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 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chop Shop Cycle Ltd. | Exotic Vehicle & Performance Parts Salvage</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@keyframes flicker {
0% { opacity: 1; }
50% { opacity: 0.8; }
100% { opacity: 1; }
}
.flickering-light {
animation: flicker 2s infinite alternate;
box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}
.garage-background {
background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
url('https://images.unsplash.com/photo-1600861195091-690c92f1d2cc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
background-size: cover;
background-position: center;
}
.inventory-item {
transition: all 0.3s ease;
}
.inventory-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}
.chat-bubble {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
transform: translateY(100%);
transition: transform 0.3s ease;
}
.chat-bubble.active {
transform: translateY(0);
}
.nav-scrolled {
background-color: rgba(10, 10, 10, 0.95);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.section-divider {
height: 2px;
background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}
</style>
</head>
<body class="bg-gray-900 text-gray-100 font-sans">
<!-- Flickering Light Header -->
<div class="flickering-light bg-yellow-600 h-2 w-full"></div>
<!-- Navigation -->
<nav id="mainNav" class="fixed top-0 w-full z-50 transition duration-300 py-3">
<div class="container mx-auto px-4 flex justify-between items-center">
<div class="flex items-center">
<img src="https://i.postimg.cc/wv0QsDtH/Screenshot-2025-06-06-at-10-07-17-AM.png" alt="Chop Shop Cycle Logo" class="h-12">
</div>
<div class="hidden md:flex space-x-8">
<a href="#about" class="text-gray-300 hover:text-yellow-500 transition font-semibold">ABOUT</a>
<a href="#inventory" class="text-gray-300 hover:text-yellow-500 transition font-semibold">INVENTORY</a>
<a href="#reviews" class="text-gray-300 hover:text-yellow-500 transition font-semibold">REVIEWS</a>
<a href="#contact" class="text-gray-300 hover:text-yellow-500 transition font-semibold">CONTACT</a>
</div>
<div class="md:hidden">
<button id="mobileMenuBtn" class="text-gray-300 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobileMenu" class="hidden md:hidden bg-gray-800 w-full fixed z-40 mt-14 py-4 px-4">
<div class="flex flex-col space-y-4">
<a href="#about" class="text-gray-300 hover:text-yellow-500 transition font-semibold">ABOUT</a>
<a href="#inventory" class="text-gray-300 hover:text-yellow-500 transition font-semibold">INVENTORY</a>
<a href="#reviews" class="text-gray-300 hover:text-yellow-500 transition font-semibold">REVIEWS</a>
<a href="#contact" class="text-gray-300 hover:text-yellow-500 transition font-semibold">CONTACT</a>
</div>
</div>
<!-- Hero Section -->
<header class="garage-background pt-32 pb-20 md:pt-40 md:pb-28">
<div class="container mx-auto px-4 text-center">
<img src="https://i.postimg.cc/wv0QsDtH/Screenshot-2025-06-06-at-10-07-17-AM.png" alt="Chop Shop Cycle Logo" class="mx-auto w-3/4 md:w-1/2 lg:w-1/3 h-auto">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mt-8 mb-6">EXOTIC AUTOMOTIVE SALVAGE SPECIALISTS</h1>
<p class="text-xl md:text-2xl text-yellow-400 max-w-3xl mx-auto">Rare vehicles. Premium parts. Unbeatable prices.</p>
<div class="mt-12 flex justify-center space-x-4">
<a href="#inventory" class="bg-yellow-600 hover:bg-yellow-700 text-black font-bold py-3 px-8 rounded-md transition">VEHICLE INVENTORY</a>
<a href="#inventory" class="bg-gray-800 hover:bg-gray-700 text-yellow-400 font-bold py-3 px-8 rounded-md transition">PARTS INVENTORY</a>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="py-16 bg-gray-800">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<img src="https://images.unsplash.com/photo-1493238792000-8113da705763?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Chop Shop Cycle Facility" class="rounded-lg shadow-xl w-full">
</div>
<div class="md:w-1/2">
<h2 class="text-3xl md:text-4xl font-bold mb-6 text-yellow-400">OUR STORY</h2>
<p class="text-lg mb-6">Chop Shop Cycle Ltd. isn't your typical salvage yard. We specialize in acquiring and dismantling high-end, exotic, and electric vehicles to provide enthusiasts, mechanics, and body shops with premium parts at a fraction of OEM prices.</p>
<p class="text-lg mb-6">Founded by automotive enthusiasts for automotive enthusiasts, we've built a reputation for sourcing rare components that others simply can't find.</p>
<div class="grid grid-cols-2 gap-4 mt-8">
<div class="flex items-center">
<div class="bg-yellow-600 p-3 rounded-full mr-4">
<i class="fas fa-car-crash text-xl"></i>
</div>
<span class="font-semibold">75+ Rare Vehicles</span>
</div>
<div class="flex items-center">
<div class="bg-yellow-600 p-3 rounded-full mr-4">
<i class="fas fa-bolt text-xl"></i>
</div>
<span class="font-semibold">Premium Electric Components</span>
</div>
<div class="flex items-center">
<div class="bg-yellow-600 p-3 rounded-full mr-4">
<i class="fas fa-tools text-xl"></i>
</div>
<span class="font-semibold">Expert Dismantling</span>
</div>
<div class="flex items-center">
<div class="bg-yellow-600 p-3 rounded-full mr-4">
<i class="fas fa-certificate text-xl"></i>
</div>
<span class="font-semibold">Guaranteed Fitment</span>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="section-divider w-full"></div>
<!-- Inventory Section -->
<section id="inventory" class="py-16 bg-gray-900">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center text-yellow-400">PREMIUM INVENTORY</h2>
<!-- Inventory Tabs -->
<div class="flex justify-center mb-12">
<button id="vehiclesTab" class="tab-button active bg-yellow-600 text-black font-bold py-2 px-6 rounded-l-lg">VEHICLES</button>
<button id="partsTab" class="tab-button bg-gray-700 hover:bg-gray-600 text-white font-bold py-2 px-6 rounded-r-lg">PARTS</button>
</div>
<!-- Vehicles Inventory -->
<div id="vehiclesContent" class="inventory-content active">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Tesla Model 3 -->
<div class="inventory-item bg-gray-800 rounded-lg overflow-hidden shadow-lg">
<img src="https://i.postimg.cc/ncHNgtbw/chopshopcycle-tesla-model-3.png" alt="Tesla Model 3" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">2021 Tesla Model 3</h3>
<p class="text-gray-400 mb-4">Performance AWD • 14,000 km • Salvage Title</p>
<p class="text-yellow-400 text-xl font-bold mb-4">$28,750 CAD</p>
<button class="w-full bg-yellow-600 hover:bg-yellow-700 text-black font-bold py-2 rounded-md transition">INQUIRE NOW</button>
</div>
</div>
<!-- Tesla Model Y -->
<div class="inventory-item bg-gray-800 rounded-lg overflow-hidden shadow-lg">
<img src="https://i.postimg.cc/XvyPdjdX/chopshopcycle-tesla-model-y.png" alt="Tesla Model Y" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">2023 Tesla Model Y</h3>
<p class="text-gray-400 mb-4">Long Range AWD • 8,500 km • Rebuildable</p>
<p class="text-yellow-400 text-xl font-bold mb-4">$36,900 CAD</p>
<button class="w-full bg-yellow-600 hover:bg-yellow-700 text-black font-bold py-2 rounded-md transition">INQUIRE NOW</button>
</div>
</div>
<!-- Ducati Superbike -->
<div class="inventory-item bg-gray-800 rounded-lg overflow-hidden shadow-lg">
<img src="https://images.unsplash.com/photo-1558981033-0f0309284409?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Ducati Superbike" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Ducati Panigale V4</h3>
<p class="text-gray-400 mb-4">2022 Model • 6,200 km • Carbon Fiber Pkg</p>
<p class="text-yellow-400 text-xl font-bold mb-4">$24,500 CAD</p>
<button class="w-full bg-yellow-600 hover:bg-yellow-700 text-black font-bold py-2 rounded-md transition">INQUIRE NOW</button>
</div>
</div>
</div>
</div>
<!-- Parts Inventory -->
<div id="partsContent" class="inventory-content hidden">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- BMW Transmission -->
<div class="inventory-item bg-gray-800 rounded-lg overflow-hidden shadow-lg">
<img src="https://i.postimg.cc/26LCqN8x/chopshopcycle-bmw-transmission.png" alt="BMW X7 Transmission" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">BMW X7 Transmission</h3>
<p class="text-gray-400 mb-4">Full assembly • 28,000 km • 8HP76</p>
<p class="text-yellow-400 text-xl font-bold mb-4">$4,500 CAD</p>
<button class="w-full bg-yellow-600 hover:bg-yellow-700 text-black font-bold py-2 rounded-md transition">INQUIRE NOW</button>
</div>
</div>
<!-- Mercedes Biturbo -->
<div class="inventory-item bg-gray-800 rounded-lg overflow-hidden shadow-lg">
<img src="https://i.postimg.cc/LXPM9kNC/chopshopcycle-mercedes-biturbo.png" alt="Mercedes CLS63 AMG Bi-Turbo System" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Mercedes CLS63 AMG Bi-Turbo System</h3>
<p class="text-gray-400 mb-4">Complete assembly • 35,000 km</p>
<p class="text-yellow-400 text-xl font-bold mb-4">$5,800 CAD</p>
<button class="w-full bg-yellow-600 hover:bg-yellow-700 text-black font-bold py-2 rounded-md transition">INQUIRE NOW</button>
</div>
</div>
<!-- Porsche Airbags -->
<div class="inventory-item bg-gray-800 rounded-lg overflow-hidden shadow-lg">
<img src="https://i.postimg.cc/rFMLTrWj/chopshopcycle-prosche-airbags.png" alt="Porsche Cayenne Airbags" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Porsche Cayenne Airbags</h3>
<p class="text-gray-400 mb-4">Front airbags & module • 2022 model</p>
<p class="text-yellow-400 text-xl font-bold mb-4">$2,300 CAD</p>
<button class="w-full bg-yellow-600 hover:bg-yellow-700 text-black font-bold py-2 rounded-md transition">INQUIRE NOW</button>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="section-divider w-full"></div>
<!-- Reviews Section -->
<section id="reviews" class="py-16 bg-gray-800">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center text-yellow-400">WHAT OUR CUSTOMERS SAY</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Review 1 -->
<div class="bg-gray-700 p-6 rounded-lg shadow-lg">
<div class="flex items-center mb-4">
<div class="bg-yellow-600 p-2 rounded-full mr-4">
<i class="fas fa-quote-left text-xl"></i>
</div>
<div class="font-bold">Alex R.</div>
</div>
<p class="text-gray-300 italic mb-4">"Got a Porsche 911 turbo build done thanks to Chop Shop Cycle. OEM part quality, insane pricing. Saved me over $12k on what the dealer wanted."</p>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<!-- Review 2 -->
<div class="bg-gray-700 p-6 rounded-lg shadow-lg">
<div class="flex items-center mb-4">
<div class="bg-yellow-600 p-2 rounded-full mr-4">
<i class="fas fa-quote-left text-xl"></i>
</div>
<div class="font-bold">Maria T.</div>
</div>
<p class="text-gray-300 italic mb-4">"As a custom shop owner, finding rare parts is a pain — this place is now my go-to. Their selection of German performance parts is unmatched."</p>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<!-- Review 3 -->
<div class="bg-gray-700 p-6 rounded-lg shadow-lg">
<div class="flex items-center mb-4">
<div class="bg-yellow-600 p-2 rounded-full mr-4">
<i class="fas fa-quote-left text-xl"></i>
</div>
<div class="font-bold">David K.</div>
</div>
<p class="text-gray-300 italic mb-4">"We grabbed a Tesla battery pack and suspension system here — saved us 60% over new. Absolute game-changer for EV repair shops."</p>
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star-half-alt text-yellow-400"></i>
</div>
</div>
</div>
</div>
</section>
<div class="section-divider w-full"></div>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-gray-900">
<div class="container mx-auto px-4">
<h2 class="text-3xl md:text-4xl font-bold mb-12 text-center text-yellow-400">GET IN TOUCH</h2>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<div class="border-4 border-yellow-600 rounded-lg overflow-hidden shadow-xl">
<img src="https://i.postimg.cc/9Fn1b3W9/chopshopcycle-googlemap-contact-info.png" alt="Chop Shop Cycle Location" class="w-full">
</div>
</div>
<div class="md:w-1/2 bg-gray-800 p-8 rounded-lg shadow-lg">
<h3 class="text-2xl font-bold mb-6 text-yellow-400">VISIT OUR YARD</h3>
<div class="mb-8">
<p class="text-gray-300 mb-4 text-lg">Monday - Friday: 8:00 AM - 6:00 PM</p>
<p class="text-gray-300 mb-4 text-lg">Saturday: 9:00 AM - 4:00 PM</p>
<p class="text-gray-300 text-lg">Sunday: Closed</p>
</div>
<div class="space-y-4">
<a href="tel:+1234567890" class="block bg-yellow-600 hover:bg-yellow-700 text-black font-bold py-3 px-6 rounded-md text-center transition">
<i class="fas fa-phone-alt mr-2"></i> CALL US NOW
</a>
<a href="mailto:[email protected]" class="block bg-gray-700 hover:bg-gray-600 text-white font-bold py-3 px-6 rounded-md text-center transition">
<i class="fas fa-envelope mr-2"></i> SEND EMAIL
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<img src="https://i.postimg.cc/wv0QsDtH/Screenshot-2025-06-06-at-10-07-17-AM.png" alt="Chop Shop Cycle Logo" class="h-10">
</div>
<div class="flex space-x-6 mb-4 md:mb-0">
<a href="#" class="text-gray-400 hover:text-yellow-400 transition">
<i class="fab fa-facebook-f text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-yellow-400 transition">
<i class="fab fa-instagram text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-yellow-400 transition">
<i class="fab fa-youtube text-xl"></i>
</a>
</div>
<div class="text-gray-400 text-sm">
© 2023 Chop Shop Cycle Ltd. All Rights Reserved.
</div>
</div>
</div>
</footer>
<!-- AI Chat Module -->
<div id="chatBubble" class="chat-bubble bg-gray-800 rounded-t-xl shadow-2xl overflow-hidden w-full max-w-md">
<div class="border-b border-yellow-600 bg-gray-900 p-4 flex justify-between items-center">
<div class="flex items-center">
<div class="bg-yellow-600 rounded-full w-10 h-10 flex items-center justify-center mr-3">
<i class="fas fa-robot text-white"></i>
</div>
<div>
<h4 class="font-bold">ALEX - Your Parts Specialist</h4>
<p class="text-xs text-gray-400">Online now</p>
</div>
</div>
<button id="closeChatBtn" class="text-gray-400 hover:text-white">
<i class="fas fa-times"></i>
</button>
</div>
<div id="chatMessages" class="p-4 h-60 overflow-y-auto">
<div class="chat-message">
<div class="bg-yellow-600 text-black p-3 rounded-lg max-w-xs mb-2">
Need help finding the right part for your ride?
</div>
</div>
</div>
<div class="p-4 bg-gray-900 border-t border-gray-700">
<div class="flex mb-2">
<div class="bg-gray-700 text-white p-2 rounded-lg max-w-xs">
"Do you carry the OEM rear diff for a 2021 VW Golf R?"
</div>
</div>
<div class="flex mb-2">
<div class="bg-yellow-600 text-black p-2 rounded-lg max-w-xs">
"Yes! We have 3 rear differentials in stock for the Golf R. Two have under 60,000 km and are priced at $2,100 CAD. I can help reserve one for you if you'd like. May I grab your VIN to confirm fitment?"
</div>
</div>
<div class="flex mb-2">
<div class="bg-gray-700 text-white p-2 rounded-lg max-w-xs">
"Sounds good, let's do it."
</div>
</div>
<div class="flex mb-4">
<div class="bg-yellow-600 text-black p-2 rounded-lg max-w-xs">
"Awesome — just need your contact info and I'll get our parts manager Charles to finalize the details with you."
</div>
</div>
<div class="relative">
<input type="text" placeholder="Type your message..." class="w-full bg-gray-800 text-white px-4 py-2 rounded-full border border-gray-700 focus:outline-none focus:border-yellow-600">
<button class="absolute right-2 top-1/2 transform -translate-y-1/2 text-yellow-400 hover:text-yellow-300">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<script>
// Mobile Menu Toggle
document.getElementById('mobileMenuBtn').addEventListener('click', function() {
document.getElementById('mobileMenu').classList.toggle('hidden');
});
// Scrolled Navigation
window.addEventListener('scroll', function() {
const nav = document.getElementById('mainNav');
if (window.scrollY > 50) {
nav.classList.add('nav-scrolled');
} else {
nav.classList.remove('nav-scrolled');
}
});
// Inventory Tabs
const vehiclesTab = document.getElementById('vehiclesTab');
const partsTab = document.getElementById('partsTab');
const vehiclesContent = document.getElementById('vehiclesContent');
const partsContent = document.getElementById('partsContent');
vehiclesTab.addEventListener('click', function() {
vehiclesTab.classList.add('bg-yellow-600', 'text-black');
vehiclesTab.classList.remove('bg-gray-700', 'text-white');
partsTab.classList.add('bg-gray-700', 'text-white');
partsTab.classList.remove('bg-yellow-600', 'text-black');
vehiclesContent.classList.remove('hidden');
partsContent.classList.add('hidden');
});
partsTab.addEventListener('click', function() {
partsTab.classList.add('bg-yellow-600', 'text-black');
partsTab.classList.remove('bg-gray-700', 'text-white');
vehiclesTab.classList.add('bg-gray-700', 'text-white');
vehiclesTab.classList.remove('bg-yellow-600', 'text-black');
partsContent.classList.remove('hidden');
vehiclesContent.classList.add('hidden');
});
// Smooth Scrolling for Anchor Links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
document.getElementById('mobileMenu').classList.add('hidden');
});
});
// AI Chat Functionality
const chatBubble = document.getElementById('chatBubble');
const closeChatBtn = document.getElementById('closeChatBtn');
// Show chat after 6 seconds
setTimeout(() => {
chatBubble.classList.add('active');
}, 6000);
closeChatBtn.addEventListener('click', function() {
chatBubble.classList.remove('active');
});
// Optional: Click to open chat
document.addEventListener('click', function(e) {
if (e.target.matches('.show-chat')) {
chatBubble.classList.add('active');
}
});
</script>
<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=nextgensolutions8/chopshopcycle-sample-1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |