Spaces:
Running
Running
File size: 36,923 Bytes
f085fe0 |
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 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Quantum Clone - Your Future, Reimagined</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">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #121212;
color: #FAFAFA;
scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Inter', sans-serif;
}
.quantum-gradient {
background: linear-gradient(135deg, #3DDC97 0%, rgba(61, 220, 151, 0.2) 100%);
}
.quantum-turquoise {
color: #3DDC97;
}
.bg-quantum-turquoise {
background-color: #3DDC97;
}
.hover-glow:hover {
box-shadow: 0 0 15px rgba(61, 220, 151, 0.5);
}
.nav-scrolled {
background-color: rgba(18, 18, 18, 0.95);
backdrop-filter: blur(10px);
}
.fade-in {
animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 25px rgba(61, 220, 151, 0.2);
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
</style>
</head>
<body class="antialiased">
<!-- Navigation -->
<nav id="navbar" class="fixed w-full z-50 transition-all duration-300 py-4">
<div class="container mx-auto px-6 flex justify-between items-center">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-quantum-turquoise flex items-center justify-center mr-3">
<i class="fas fa-atom text-white text-xl"></i>
</div>
<span class="text-xl font-bold text-white">DQC</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#about" class="text-gray-300 hover:text-white transition-colors">About</a>
<a href="#features" class="text-gray-300 hover:text-white transition-colors">Features</a>
<a href="#agents" class="text-gray-300 hover:text-white transition-colors">AI Agents</a>
<a href="#impact" class="text-gray-300 hover:text-white transition-colors">Impact</a>
<a href="#contact" class="text-gray-300 hover:text-white transition-colors">Contact</a>
</div>
<button class="md:hidden text-gray-300 focus:outline-none">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="relative min-h-screen flex items-center justify-center overflow-hidden pt-20">
<div id="particles-js" class="particles"></div>
<div class="container mx-auto px-6 z-10 text-center fade-in">
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
Your Digital Clone, <span class="quantum-turquoise">Secured by Quantum Encryption</span>
</h1>
<p class="text-xl md:text-2xl text-gray-300 mb-10 max-w-3xl mx-auto">
Experience the future of AI with your personalized digital avatar, protected by unbreakable quantum security.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-quantum-turquoise hover-glow text-black font-bold py-3 px-8 rounded-full transition-all transform hover:scale-105">
Create Your Clone
</button>
<button class="border border-gray-600 hover:border-quantum-turquoise text-white font-bold py-3 px-8 rounded-full transition-all transform hover:scale-105">
Learn More
</button>
</div>
</div>
<div class="absolute bottom-10 left-0 right-0 flex justify-center">
<a href="#about" class="text-gray-400 hover:text-white animate-bounce">
<i class="fas fa-chevron-down text-2xl"></i>
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-6">
What is <span class="quantum-turquoise">Digital Quantum Clone?</span>
</h2>
<p class="text-gray-300 mb-6 text-lg">
DQC is a breakthrough in smart AI that isn't just another voice assistant—it's your personalized digital clone. Crafted to deliver absolute security with advanced quantum encryption.
</p>
<p class="text-gray-300 mb-6 text-lg">
This revolutionary AI transforms how you access information, communicate, and interact with technology by creating an instant copy of yourself that evolves and learns to better represent you over time.
</p>
<div class="flex space-x-4">
<div class="flex items-center">
<div class="w-8 h-8 rounded-full bg-quantum-turquoise flex items-center justify-center mr-2">
<i class="fas fa-shield-alt text-xs text-black"></i>
</div>
<span class="text-sm">Quantum Security</span>
</div>
<div class="flex items-center">
<div class="w-8 h-8 rounded-full bg-quantum-turquoise flex items-center justify-center mr-2">
<i class="fas fa-brain text-xs text-black"></i>
</div>
<span class="text-sm">Self-Learning AI</span>
</div>
</div>
</div>
<div class="md:w-1/2 relative fade-in">
<div class="relative">
<div class="w-full h-80 bg-gray-800 rounded-xl overflow-hidden">
<div class="absolute inset-0 flex items-center justify-center">
<i class="fas fa-user-astronaut text-6xl text-gray-600"></i>
</div>
</div>
<div class="absolute -bottom-5 -right-5 w-32 h-32 rounded-xl bg-gray-900 border-2 border-quantum-turquoise flex items-center justify-center">
<i class="fas fa-lock text-3xl quantum-turquoise"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="quantum-turquoise">Revolutionary</span> Features
</h2>
<p class="text-gray-400 max-w-2xl mx-auto">
DQC combines cutting-edge AI with quantum-grade security to deliver an unparalleled experience.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-gray-800 p-8 rounded-xl transition-all duration-300 hover:border-quantum-turquoise border border-gray-700 fade-in">
<div class="w-14 h-14 rounded-full quantum-gradient flex items-center justify-center mb-6">
<i class="fas fa-user-tie text-white text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Personalized Digital Clone</h3>
<p class="text-gray-400">
Your AI clone mimics your conversational style, knowledge, and evolves to better represent you over time.
</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-gray-800 p-8 rounded-xl transition-all duration-300 hover:border-quantum-turquoise border border-gray-700 fade-in">
<div class="w-14 h-14 rounded-full quantum-gradient flex items-center justify-center mb-6">
<i class="fas fa-lock text-white text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Quantum Encryption</h3>
<p class="text-gray-400">
All your information and passwords are secured with unbreakable quantum encryption technology.
</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-gray-800 p-8 rounded-xl transition-all duration-300 hover:border-quantum-turquoise border border-gray-700 fade-in">
<div class="w-14 h-14 rounded-full quantum-gradient flex items-center justify-center mb-6">
<i class="fas fa-tshirt text-white text-xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Visual Customization</h3>
<p class="text-gray-400">
Personalize your clone's appearance with customizable clothing and visual elements.
</p>
</div>
</div>
</div>
</section>
<!-- AI Agents Section -->
<section id="agents" class="py-20">
<div class="container mx-auto px-6">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
Specialized <span class="quantum-turquoise">AI Agents</span>
</h2>
<p class="text-gray-400 max-w-2xl mx-auto">
Our AI clone model comes with specialized virtual assistants for various professional needs.
</p>
</div>
<div class="max-w-3xl mx-auto">
<!-- Doctor/Psychologist Agent -->
<div class="mb-4 border border-gray-800 rounded-xl overflow-hidden fade-in">
<button class="accordion-header w-full flex justify-between items-center p-6 bg-gray-900 hover:bg-gray-800 transition-colors">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-red-500 bg-opacity-20 flex items-center justify-center mr-4">
<i class="fas fa-heartbeat text-red-500"></i>
</div>
<h3 class="text-lg font-bold">Medical & Psychological Assistant</h3>
</div>
<i class="fas fa-chevron-down transition-transform"></i>
</button>
<div class="accordion-content bg-gray-900">
<div class="p-6 pt-0">
<ul class="list-disc pl-5 text-gray-400 space-y-2">
<li>Analyzes symptoms and suggests possible diagnoses</li>
<li>Provides psychological support and stress management advice</li>
<li>Studies medical history and suggests solutions based on AI analysis</li>
<li>Helps with emotional awareness and problem-solving</li>
</ul>
<div class="mt-4 text-sm text-gray-500">
* Note: This agent does not replace a live doctor or psychologist for complex cases.
</div>
</div>
</div>
</div>
<!-- Lawyer Agent -->
<div class="mb-4 border border-gray-800 rounded-xl overflow-hidden fade-in">
<button class="accordion-header w-full flex justify-between items-center p-6 bg-gray-900 hover:bg-gray-800 transition-colors">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-blue-500 bg-opacity-20 flex items-center justify-center mr-4">
<i class="fas fa-gavel text-blue-500"></i>
</div>
<h3 class="text-lg font-bold">Legal Assistant</h3>
</div>
<i class="fas fa-chevron-down transition-transform"></i>
</button>
<div class="accordion-content bg-gray-900">
<div class="p-6 pt-0">
<ul class="list-disc pl-5 text-gray-400 space-y-2">
<li>Analyzes laws and documents with quick processing</li>
<li>Provides understandable legal consultations</li>
<li>Helps draft contracts, complaints, and other legal papers</li>
<li>Assesses risks and predicts legal consequences</li>
<li>Suggests arguments based on previous cases</li>
</ul>
</div>
</div>
</div>
<!-- Fitness Coach Agent -->
<div class="mb-4 border border-gray-800 rounded-xl overflow-hidden fade-in">
<button class="accordion-header w-full flex justify-between items-center p-6 bg-gray-900 hover:bg-gray-800 transition-colors">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-green-500 bg-opacity-20 flex items-center justify-center mr-4">
<i class="fas fa-dumbbell text-green-500"></i>
</div>
<h3 class="text-lg font-bold">Fitness & Nutrition Coach</h3>
</div>
<i class="fas fa-chevron-down transition-transform"></i>
</button>
<div class="accordion-content bg-gray-900">
<div class="p-6 pt-0">
<ul class="list-disc pl-5 text-gray-400 space-y-2">
<li>Creates personalized training programs based on goals</li>
<li>Analyzes movements and corrects technique</li>
<li>Provides motivation and recovery advice</li>
<li>Designs personalized nutrition plans</li>
<li>Monitors hydration and eating habits</li>
<li>Adapts for health conditions like allergies or diabetes</li>
</ul>
<div class="mt-4 text-sm text-gray-500">
* Note: This agent does not replace a live coach and nutritionist in complex cases.
</div>
</div>
</div>
</div>
<!-- Financial Assistant -->
<div class="border border-gray-800 rounded-xl overflow-hidden fade-in">
<button class="accordion-header w-full flex justify-between items-center p-6 bg-gray-900 hover:bg-gray-800 transition-colors">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-yellow-500 bg-opacity-20 flex items-center justify-center mr-4">
<i class="fas fa-chart-line text-yellow-500"></i>
</div>
<h3 class="text-lg font-bold">Financial Assistant</h3>
</div>
<i class="fas fa-chevron-down transition-transform"></i>
</button>
<div class="accordion-content bg-gray-900">
<div class="p-6 pt-0">
<ul class="list-disc pl-5 text-gray-400 space-y-2">
<li>Helps with budgeting and expense control</li>
<li>Assists in financial planning and goal setting</li>
<li>Provides investment analysis and risk assessment</li>
<li>Analyzes credit history and suggests improvement strategies</li>
<li>Automates payment reminders</li>
<li>Identifies suspicious transactions and potential fraud</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Impact Section -->
<section id="impact" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
The <span class="quantum-turquoise">Impact</span>
</h2>
<p class="text-gray-400 max-w-2xl mx-auto">
DQC isn't just a product—it's a movement toward a more secure, personalized future.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center fade-in">
<div class="w-20 h-20 quantum-gradient rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-shield-alt text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Security Meets Intelligence</h3>
<p class="text-gray-400">
Your data remains safeguarded by quantum-grade encryption while you enjoy lightning-fast, accurate information retrieval.
</p>
</div>
<div class="text-center fade-in">
<div class="w-20 h-20 quantum-gradient rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-user-cog text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Personalization Redefined</h3>
<p class="text-gray-400">
Your digital clone evolves with you, offering bespoke interactions that mirror your unique personality and expertise.
</p>
</div>
<div class="text-center fade-in">
<div class="w-20 h-20 quantum-gradient rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-comments text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Empowered Communication</h3>
<p class="text-gray-400">
Experience conversations that feel truly human, as our AI adapts to your tone, context, and emotional cues.
</p>
</div>
</div>
<div class="mt-16 text-center fade-in">
<h3 class="text-2xl font-bold mb-6">Ready to experience the quantum leap in AI technology?</h3>
<button class="bg-quantum-turquoise hover-glow text-black font-bold py-3 px-8 rounded-full transition-all transform hover:scale-105">
Join the Waitlist
</button>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20">
<div class="container mx-auto px-6">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
What <span class="quantum-turquoise">People Say</span>
</h2>
<p class="text-gray-400 max-w-2xl mx-auto">
Hear from early adopters who have experienced the DQC difference.
</p>
</div>
<div class="max-w-5xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-900 p-6 rounded-xl border border-gray-800 fade-in">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-700 mr-4 overflow-hidden">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="User" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-sm text-gray-500">Medical Researcher</p>
</div>
</div>
<p class="text-gray-400">
"The medical assistant has transformed how I track symptoms and research treatments. The quantum security gives me peace of mind with sensitive health data."
</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-900 p-6 rounded-xl border border-gray-800 fade-in">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-700 mr-4 overflow-hidden">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="User" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Michael Chen</h4>
<p class="text-sm text-gray-500">Startup Founder</p>
</div>
</div>
<p class="text-gray-400">
"As a busy entrepreneur, my DQC clone handles routine communications with my exact tone and style. It's like having a digital twin that learns from me."
</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-900 p-6 rounded-xl border border-gray-800 fade-in">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-700 mr-4 overflow-hidden">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="User" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Emma Rodriguez</h4>
<p class="text-sm text-gray-500">Fitness Coach</p>
</div>
</div>
<p class="text-gray-400">
"The fitness coach agent helps me provide better service to my clients by handling routine questions, freeing me to focus on personalized training."
</p>
<div class="mt-4 text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
Get in <span class="quantum-turquoise">Touch</span>
</h2>
<p class="text-gray-400 max-w-2xl mx-auto">
Have questions about Digital Quantum Clone? We'd love to hear from you.
</p>
</div>
<div class="bg-gray-800 rounded-xl p-8 md:p-10 fade-in">
<form>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<label for="name" class="block text-gray-400 mb-2">Name</label>
<input type="text" id="name" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:border-quantum-turquoise">
</div>
<div>
<label for="email" class="block text-gray-400 mb-2">Email</label>
<input type="email" id="email" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:border-quantum-turquoise">
</div>
</div>
<div class="mb-6">
<label for="subject" class="block text-gray-400 mb-2">Subject</label>
<input type="text" id="subject" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:border-quantum-turquoise">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-400 mb-2">Message</label>
<textarea id="message" rows="5" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:border-quantum-turquoise"></textarea>
</div>
<button type="submit" class="w-full bg-quantum-turquoise hover-glow text-black font-bold py-3 px-8 rounded-full transition-all transform hover:scale-[1.02]">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 border-t border-gray-800">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-6 md:mb-0">
<div class="w-10 h-10 rounded-full bg-quantum-turquoise flex items-center justify-center mr-3">
<i class="fas fa-atom text-white text-xl"></i>
</div>
<span class="text-xl font-bold text-white">DQC</span>
</div>
<div class="flex space-x-6 mb-6 md:mb-0">
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition-colors">
<i class="fab fa-discord text-xl"></i>
</a>
</div>
<div class="text-gray-500 text-sm">
© 2023 Digital Quantum Clone. All rights reserved.
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/particles.min.js"></script>
<script>
// Navigation scroll effect
window.addEventListener('scroll', function() {
const navbar = document.getElementById('navbar');
if (window.scrollY > 50) {
navbar.classList.add('nav-scrolled');
} else {
navbar.classList.remove('nav-scrolled');
}
});
// Accordion functionality
document.querySelectorAll('.accordion-header').forEach(header => {
header.addEventListener('click', () => {
const content = header.nextElementSibling;
const icon = header.querySelector('i');
if (content.style.maxHeight) {
content.style.maxHeight = null;
icon.style.transform = 'rotate(0deg)';
} else {
content.style.maxHeight = content.scrollHeight + 'px';
icon.style.transform = 'rotate(180deg)';
}
});
});
// Initialize particles.js
document.addEventListener('DOMContentLoaded', function() {
if (typeof particlesJS !== 'undefined') {
particlesJS('particles-js', {
"particles": {
"number": {
"value": 80,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#3DDC97"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 5
}
},
"opacity": {
"value": 0.3,
"random": false,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 3,
"random": true,
"anim": {
"enable": false,
"speed": 40,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#3DDC97",
"opacity": 0.2,
"width": 1
},
"move": {
"enable": true,
"speed": 2,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "grab"
},
"onclick": {
"enable": true,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 140,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
});
}
// Intersection Observer for fade-in animations
const fadeElements = document.querySelectorAll('.fade-in');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
fadeElements.forEach(el => {
el.style.opacity = 0;
el.style.transform = 'translateY(20px)';
el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(el);
});
});
</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=Onekee/dqc-template-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |