dqc-template-4 / index.html
Onekee's picture
Add 3 files
49e8092 verified
<!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>
<script src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--techno-black: #0A0A0A;
--quantum-glow: #4FE8C1;
--neutral-grey: #E5E5E5;
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--techno-black);
color: var(--neutral-grey);
overflow-x: hidden;
}
h1, h2, h3, h4 {
font-family: 'Orbitron', sans-serif;
}
.quantum-gradient {
background: linear-gradient(135deg, var(--techno-black) 0%, var(--quantum-glow) 100%);
}
.glow-text {
text-shadow: 0 0 10px rgba(79, 232, 193, 0.7);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(79, 232, 193, 0.4);
}
70% {
box-shadow: 0 0 0 15px rgba(79, 232, 193, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(79, 232, 193, 0);
}
}
.ripple {
position: relative;
overflow: hidden;
}
.ripple-effect {
position: absolute;
border-radius: 50%;
background: rgba(79, 232, 193, 0.4);
transform: scale(0);
animation: ripple 0.6s linear;
pointer-events: none;
}
@keyframes ripple {
to {
transform: scale(4);
opacity: 0;
}
}
.card-hover {
transition: all 0.3s ease;
border: 1px solid rgba(79, 232, 193, 0.1);
}
.card-hover:hover {
transform: translateY(-5px);
border-color: var(--quantum-glow);
box-shadow: 0 10px 25px rgba(79, 232, 193, 0.2);
}
.nav-item::after {
content: '';
display: block;
width: 0;
height: 2px;
background: var(--quantum-glow);
transition: width 0.3s;
}
.nav-item:hover::after {
width: 100%;
}
.swiper-slide {
opacity: 0.5;
transition: opacity 0.3s;
}
.swiper-slide-active {
opacity: 1;
}
.grid-pattern {
background-image:
linear-gradient(rgba(79, 232, 193, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(79, 232, 193, 0.1) 1px, transparent 1px);
background-size: 40px 40px;
}
</style>
</head>
<body class="min-h-screen" x-data="{ mobileMenuOpen: false, activeTab: 'overview' }">
<!-- Quantum Ripple Effect -->
<div id="ripple-container" class="fixed inset-0 pointer-events-none z-0"></div>
<!-- Navigation -->
<nav class="fixed w-full bg-black bg-opacity-90 backdrop-blur-md z-50 border-b border-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<!-- Logo -->
<div class="flex-shrink-0 flex items-center">
<div class="flex items-center">
<div class="w-8 h-8 rounded-full bg-gradient-to-br from-quantum-glow to-transparent flex items-center justify-center">
<div class="w-6 h-6 rounded-full bg-quantum-glow pulse"></div>
</div>
<span class="ml-3 text-xl font-bold text-white font-orbitron">DQC</span>
</div>
</div>
<!-- Desktop Menu -->
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="#" class="nav-item text-white px-3 py-2 rounded-md text-sm font-medium hover:text-quantum-glow transition">Overview</a>
<a href="#" class="nav-item text-white px-3 py-2 rounded-md text-sm font-medium hover:text-quantum-glow transition">Features</a>
<a href="#" class="nav-item text-white px-3 py-2 rounded-md text-sm font-medium hover:text-quantum-glow transition">Technology</a>
<a href="#" class="nav-item text-white px-3 py-2 rounded-md text-sm font-medium hover:text-quantum-glow transition">Pricing</a>
<button class="ripple bg-quantum-glow text-black px-6 py-2 rounded-full font-bold hover:bg-opacity-90 transition">
Join Beta
</button>
</div>
</div>
<!-- Mobile menu button -->
<div class="md:hidden flex items-center">
<button @click="mobileMenuOpen = !mobileMenuOpen" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white focus:outline-none">
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div x-show="mobileMenuOpen" class="md:hidden bg-gray-900">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-gray-800">Overview</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-gray-800">Features</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-gray-800">Technology</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-gray-800">Pricing</a>
<button class="w-full mt-2 bg-quantum-glow text-black px-6 py-2 rounded-full font-bold">
Join Beta
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 grid-pattern">
<div class="max-w-7xl mx-auto">
<div class="lg:grid lg:grid-cols-12 lg:gap-8">
<div class="px-4 sm:px-0 lg:col-span-6">
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6 glow-text">
Your <span class="text-quantum-glow">Quantum</span> Clone
</h1>
<p class="text-xl text-gray-300 mb-8">
The next-generation personalized AI that learns, adapts, and becomes an extension of you. Secured by unbreakable quantum encryption.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="ripple bg-quantum-glow text-black px-8 py-4 rounded-full font-bold text-lg hover:bg-opacity-90 transition flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
</svg>
Create Your Clone
</button>
<button class="ripple border-2 border-quantum-glow text-quantum-glow px-8 py-4 rounded-full font-bold text-lg hover:bg-gray-900 transition flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 mr-2" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
Watch Demo
</button>
</div>
</div>
<div class="mt-12 lg:mt-0 lg:col-span-6 flex items-center justify-center">
<div class="relative w-full max-w-lg">
<div class="absolute top-0 left-0 w-64 h-64 bg-quantum-glow rounded-full filter blur-3xl opacity-20 animate-pulse"></div>
<div class="absolute bottom-0 right-0 w-64 h-64 bg-purple-500 rounded-full filter blur-3xl opacity-20 animate-pulse animation-delay-2000"></div>
<div class="relative">
<div class="swiper-container w-full h-96">
<div class="swiper-wrapper">
<div class="swiper-slide flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1620712943543-b0c3a96f7de8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" class="w-full h-full object-cover rounded-xl border-2 border-quantum-glow" alt="AI Clone">
</div>
<div class="swiper-slide flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1634712282287-14ed57b9cc89?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" class="w-full h-full object-cover rounded-xl border-2 border-quantum-glow" alt="AI Clone">
</div>
<div class="swiper-slide flex items-center justify-center">
<img src="https://images.unsplash.com/photo-1633332755192-727a05c4013d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" class="w-full h-full object-cover rounded-xl border-2 border-quantum-glow" alt="AI Clone">
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-b from-gray-900 to-black">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-white mb-4">
<span class="text-quantum-glow">Quantum</span> Capabilities
</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Your digital clone isn't just another AI assistant - it's a quantum leap in personal technology.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Feature 1 -->
<div class="card-hover bg-gray-900 p-8 rounded-xl">
<div class="w-14 h-14 bg-gray-800 rounded-full flex items-center justify-center mb-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-quantum-glow" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" />
</svg>
</div>
<h3 class="text-xl font-bold text-white mb-3">Quantum Encryption</h3>
<p class="text-gray-300">
Unbreakable security powered by quantum cryptography. Your data remains yours alone.
</p>
</div>
<!-- Feature 2 -->
<div class="card-hover bg-gray-900 p-8 rounded-xl">
<div class="w-14 h-14 bg-gray-800 rounded-full flex items-center justify-center mb-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-quantum-glow" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" />
</svg>
</div>
<h3 class="text-xl font-bold text-white mb-3">Adaptive Learning</h3>
<p class="text-gray-300">
Your clone evolves with you, learning your patterns, preferences, and personality.
</p>
</div>
<!-- Feature 3 -->
<div class="card-hover bg-gray-900 p-8 rounded-xl">
<div class="w-14 h-14 bg-gray-800 rounded-full flex items-center justify-center mb-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-quantum-glow" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z" />
</svg>
</div>
<h3 class="text-xl font-bold text-white mb-3">Human-like Interaction</h3>
<p class="text-gray-300">
Conversations that feel natural, with emotional intelligence and contextual awareness.
</p>
</div>
<!-- Feature 4 -->
<div class="card-hover bg-gray-900 p-8 rounded-xl">
<div class="w-14 h-14 bg-gray-800 rounded-full flex items-center justify-center mb-6">
<svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-quantum-glow" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
</div>
<h3 class="text-xl font-bold text-white mb-3">Customizable Avatars</h3>
<p class="text-gray-300">
Personalize your clone's appearance with a wide range of visual customization options.
</p>
</div>
</div>
</div>
</section>
<!-- AI Specialists Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-black">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-5xl font-bold text-white mb-4">
Meet Your <span class="text-quantum-glow">Specialized</span> Clones
</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto">
Different situations call for different expertise. Your quantum clones can specialize in various professional domains.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Medical Clone -->
<div class="card-hover bg-gray-900 rounded-xl overflow-hidden">
<div class="h-48 bg-gradient-to-r from-blue-900 to-quantum-glow flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-20 w-20 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.428 15.428a2 2 0 00-1.022-.547l-2.387-.477a6 6 0 00-3.86.517l-.318.158a6 6 0 01-3.86.517L6.05 15.21a2 2 0 00-1.806.547M8 4h8l-1 1v5.172a2 2 0 00.586 1.414l5 5c1.26 1.26.367 3.414-1.415 3.414H4.828c-1.782 0-2.674-2.154-1.414-3.414l5-5A2 2 0 009 10.172V5L8 4z" />
</svg>
</div>
<div class="p-8">
<h3 class="text-xl font-bold text-white mb-3">Medical & Psychological</h3>
<p class="text-gray-300 mb-4">
Analyzes symptoms, provides psychological support, and helps manage health conditions.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-quantum-glow mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Medical diagnosis assistance</span>
</li>
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-quantum-glow mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Mental health support</span>
</li>
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-quantum-glow mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Health data analysis</span>
</li>
</ul>
</div>
</div>
<!-- Legal Clone -->
<div class="card-hover bg-gray-900 rounded-xl overflow-hidden">
<div class="h-48 bg-gradient-to-r from-purple-900 to-quantum-glow flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-20 w-20 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
</svg>
</div>
<div class="p-8">
<h3 class="text-xl font-bold text-white mb-3">Legal Expert</h3>
<p class="text-gray-300 mb-4">
Helps analyze legal documents, explains laws, and assists with legal paperwork.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-quantum-glow mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Document analysis</span>
</li>
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-quantum-glow mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Legal consultations</span>
</li>
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-quantum-glow mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Contract preparation</span>
</li>
</ul>
</div>
</div>
<!-- Financial Clone -->
<div class="card-hover bg-gray-900 rounded-xl overflow-hidden">
<div class="h-48 bg-gradient-to-r from-green-900 to-quantum-glow flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-20 w-20 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<div class="p-8">
<h3 class="text-xl font-bold text-white mb-3">Financial Assistant</h3>
<p class="text-gray-300 mb-4">
Manages budgets, analyzes investments, and helps optimize your financial strategy.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-quantum-glow mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Budget optimization</span>
</li>
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-quantum-glow mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Investment analysis</span>
</li>
<li class="flex items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-quantum-glow mr-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
<span>Financial security</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8 quantum-gradient">
<div class="max-w-7xl mx-auto text-center">
<h2 class="text-3xl md:text-5xl font-bold text-white mb-6">
Ready to Meet Your <span class="glow-text">Digital Twin</span>?
</h2>
<p class="text-xl text-gray-200 mb-10 max-w-3xl mx-auto">
Join our beta program and be among the first to experience the future of personalized AI.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<button class="ripple bg-white text-black px-8 py-4 rounded-full font-bold text-lg hover:bg-opacity-90 transition">
Start Free Trial
</button>
<button class="ripple border-2 border-white text-white px-8 py-4 rounded-full font-bold text-lg hover:bg-white hover:bg-opacity-10 transition">
Schedule Demo
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black py-12 px-4 sm:px-6 lg:px-8 border-t border-gray-800">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-6">
<div class="w-8 h-8 rounded-full bg-gradient-to-br from-quantum-glow to-transparent flex items-center justify-center">
<div class="w-6 h-6 rounded-full bg-quantum-glow"></div>
</div>
<span class="ml-3 text-xl font-bold text-white font-orbitron">DQC</span>
</div>
<p class="text-gray-400">
The next-generation personalized quantum AI that learns, adapts, and becomes an extension of you.
</p>
</div>
<div>
<h3 class="text-lg font-semibold text-white mb-4">Product</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">API</a></li>
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">Integrations</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold text-white mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">Support</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold text-white mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">Privacy</a></li>
<li><a href="#" class="text-gray-400 hover:text-quantum-glow transition">Terms</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">
© 2023 Digital Quantum Clone. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-quantum-glow transition">
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" />
</svg>
</a>
<a href="#" class="text-gray-400 hover:text-quantum-glow transition">
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z" clip-rule="evenodd" />
</svg>
</a>
<a href="#" class="text-gray-400 hover:text-quantum-glow transition">
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd" />
</svg>
</a>
<a href="#" class="text-gray-400 hover:text-quantum-glow transition">
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z" clip-rule="evenodd" />
</svg>
</a>
</div>
</div>
</div>
</footer>
<script>
// Initialize Swiper
const swiper = new Swiper('.swiper-container', {
loop: true,
autoplay: {
delay: 3000,
disableOnInteraction: false,
},
pagination: {
el: '.swiper-pagination',
clickable: true,
},
});
// Ripple effect
document.addEventListener('DOMContentLoaded', function() {
const buttons = document.querySelectorAll('.ripple');
const rippleContainer = document.getElementById('ripple-container');
buttons.forEach(button => {
button.addEventListener('click', function(e) {
e.preventDefault();
const rect = button.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
const ripple = document.createElement('span');
ripple.classList.add('ripple-effect');
ripple.style.left = `${x}px`;
ripple.style.top = `${y}px`;
button.appendChild(ripple);
setTimeout(() => {
ripple.remove();
}, 600);
});
});
// Background ripple effect
document.addEventListener('mousemove', function(e) {
const ripple = document.createElement('div');
ripple.classList.add('ripple-effect');
ripple.style.left = `${e.clientX}px`;
ripple.style.top = `${e.clientY}px`;
rippleContainer.appendChild(ripple);
setTimeout(() => {
ripple.remove();
}, 1000);
});
});
</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-4" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>