Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>TiDB - One Database for All Your AI Needs</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"> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#2563eb', | |
| secondary: '#1e40af', | |
| accent: '#3b82f6', | |
| dark: '#0f172a', | |
| light: '#f8fafc' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); | |
| color: #f1f5f9; | |
| overflow-x: hidden; | |
| } | |
| .hero-gradient { | |
| background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.2) 0%, transparent 40%), | |
| radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.2) 0%, transparent 40%); | |
| } | |
| .feature-card { | |
| transition: all 0.3s ease; | |
| background: rgba(30, 41, 59, 0.6); | |
| backdrop-filter: blur(10px); | |
| border: 1px solid rgba(100, 116, 139, 0.2); | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-5px); | |
| border-color: rgba(59, 130, 246, 0.5); | |
| box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.2); | |
| } | |
| .glow { | |
| box-shadow: 0 0 20px 5px rgba(59, 130, 246, 0.3); | |
| } | |
| .pricing-card { | |
| background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8)); | |
| border: 1px solid rgba(100, 116, 139, 0.3); | |
| transition: all 0.3s ease; | |
| } | |
| .pricing-card:hover { | |
| transform: scale(1.03); | |
| border-color: rgba(59, 130, 246, 0.6); | |
| } | |
| .diagonal-bg { | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .diagonal-bg::before { | |
| content: ''; | |
| position: absolute; | |
| top: -50%; | |
| left: -50%; | |
| width: 200%; | |
| height: 200%; | |
| background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%); | |
| transform: rotate(30deg); | |
| z-index: -1; | |
| } | |
| .animated-dots { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| overflow: hidden; | |
| z-index: -1; | |
| } | |
| .dot { | |
| position: absolute; | |
| background: rgba(59, 130, 246, 0.15); | |
| border-radius: 50%; | |
| animation: float 15s infinite linear; | |
| } | |
| @keyframes float { | |
| 0% { transform: translateY(0) translateX(0); } | |
| 100% { transform: translateY(-100vh) translateX(50px); } | |
| } | |
| .btn-gradient { | |
| background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%); | |
| transition: all 0.3s ease; | |
| } | |
| .btn-gradient:hover { | |
| background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 100%); | |
| transform: translateY(-2px); | |
| box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4); | |
| } | |
| .wave-pattern { | |
| background: | |
| radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 20%), | |
| radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 20%); | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen"> | |
| <!-- Animated Background Dots --> | |
| <div class="animated-dots"> | |
| <!-- Dots will be generated dynamically with JavaScript --> | |
| </div> | |
| <!-- Navigation --> | |
| <nav class="flex items-center justify-between px-6 py-4 md:px-12 lg:px-24"> | |
| <div class="flex items-center"> | |
| <div class="bg-accent w-10 h-10 rounded-lg flex items-center justify-center mr-3"> | |
| <i class="fas fa-database text-white text-xl"></i> | |
| </div> | |
| <span class="text-white text-2xl font-bold">Ti<span class="text-accent">DB</span></span> | |
| </div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="#" class="text-slate-300 hover:text-white transition">Features</a> | |
| <a href="#" class="text-slate-300 hover:text-white transition">Solutions</a> | |
| <a href="#" class="text-slate-300 hover:text-white transition">Pricing</a> | |
| <a href="#" class="text-slate-300 hover:text-white transition">Docs</a> | |
| <a href="#" class="text-slate-300 hover:text-white transition">Company</a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <button class="text-slate-300 hover:text-white transition hidden md:block">Sign In</button> | |
| <button class="btn-gradient text-white font-medium px-5 py-2 rounded-lg">Get Started</button> | |
| <button class="md:hidden text-white"> | |
| <i class="fas fa-bars text-xl"></i> | |
| </button> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="hero-gradient py-16 md:py-24 px-6 md:px-12 lg:px-24"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center"> | |
| <div> | |
| <div class="bg-secondary/20 text-accent px-4 py-1 rounded-full inline-block mb-6"> | |
| <span class="text-sm font-semibold">Next-Gen AI Database</span> | |
| </div> | |
| <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6"> | |
| One Database for All Your <span class="text-accent">AI Needs</span> | |
| </h1> | |
| <p class="text-xl text-slate-300 mb-10 max-w-2xl"> | |
| TiDB combines vector search, full-text search, SQL, and graph capabilities in a single, scalable database with pay-as-you-go pricing. | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4"> | |
| <button class="btn-gradient text-white font-semibold px-8 py-4 rounded-lg text-lg"> | |
| Start Free Trial | |
| </button> | |
| <button class="bg-white/10 border border-slate-700 text-white font-medium px-8 py-4 rounded-lg text-lg hover:bg-white/20 transition"> | |
| <i class="fas fa-play-circle mr-2"></i> Watch Demo | |
| </button> | |
| </div> | |
| </div> | |
| <div class="relative"> | |
| <div class="relative z-10 bg-slate-800/50 border border-slate-700 rounded-2xl p-6 backdrop-blur-lg"> | |
| <div class="absolute -inset-1 rounded-2xl bg-gradient-to-r from-blue-600 to-cyan-600 opacity-20 blur"></div> | |
| <div class="relative"> | |
| <div class="flex justify-between items-center mb-6"> | |
| <div class="flex space-x-2"> | |
| <div class="w-3 h-3 rounded-full bg-red-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-yellow-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> | |
| </div> | |
| <span class="text-slate-400 text-sm">database: tidb</span> | |
| </div> | |
| <div class="space-y-4"> | |
| <div> | |
| <div class="text-blue-400 mb-2">-- Vector similarity search</div> | |
| <div class="bg-slate-900/70 p-4 rounded-lg text-sm font-mono"> | |
| <span class="text-purple-400">SELECT</span> id, embedding <br> | |
| <span class="text-purple-400">FROM</span> products <br> | |
| <span class="text-purple-400">ORDER BY</span> vec_cosine(embedding, ?) <br> | |
| <span class="text-purple-400">LIMIT</span> 10; | |
| </div> | |
| </div> | |
| <div> | |
| <div class="text-blue-400 mb-2">-- Hybrid search (vector + full-text)</div> | |
| <div class="bg-slate-900/70 p-4 rounded-lg text-sm font-mono"> | |
| <span class="text-purple-400">SELECT</span> id, title, description <br> | |
| <span class="text-purple-400">FROM</span> docs <br> | |
| <span class="text-purple-400">WHERE</span> <span class="text-green-400">MATCH</span>(description) AGAINST('AI database') <br> | |
| <span class="text-purple-400">ORDER BY</span> vec_cosine(embedding, ?) <br> | |
| <span class="text-purple-400">LIMIT</span> 10; | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="absolute -bottom-8 -right-8 w-64 h-64 bg-blue-600 rounded-full mix-blend-soft-light filter blur-3xl opacity-30"></div> | |
| <div class="absolute top-16 -left-8 w-48 h-48 bg-purple-600 rounded-full mix-blend-soft-light filter blur-3xl opacity-30"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="py-20 px-6 md:px-12 lg:px-24 diagonal-bg"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Unified Database for AI Workloads</h2> | |
| <p class="text-xl text-slate-400 max-w-3xl mx-auto"> | |
| TiDB integrates all essential database capabilities required for modern AI applications | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
| <!-- Feature 1: Vector Search --> | |
| <div class="feature-card rounded-2xl p-8"> | |
| <div class="w-16 h-16 bg-blue-900/30 rounded-xl flex items-center justify-center mb-6"> | |
| <i class="fas fa-vector-square text-accent text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Vector Search</h3> | |
| <p class="text-slate-400 mb-4"> | |
| Embeddings-based similarity search for semantic understanding and recommendation systems. | |
| </p> | |
| <div class="text-accent font-medium"> | |
| <span>Learn more</span> | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </div> | |
| </div> | |
| <!-- Feature 2: Full-text Search --> | |
| <div class="feature-card rounded-2xl p-8"> | |
| <div class="w-16 h-16 bg-blue-900/30 rounded-xl flex items-center justify-center mb-6"> | |
| <i class="fas fa-search text-accent text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Full-text Search</h3> | |
| <p class="text-slate-400 mb-4"> | |
| Advanced text indexing and querying for keyword-based document retrieval. | |
| </p> | |
| <div class="text-accent font-medium"> | |
| <span>Learn more</span> | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </div> | |
| </div> | |
| <!-- Feature 3: SQL --> | |
| <div class="feature-card rounded-2xl p-8"> | |
| <div class="w-16 h-16 bg-blue-900/30 rounded-xl flex items-center justify-center mb-6"> | |
| <i class="fas fa-database text-accent text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">SQL Database</h3> | |
| <p class="text-slate-400 mb-4"> | |
| Full SQL compatibility with ACID transactions for structured data operations. | |
| </p> | |
| <div class="text-accent font-medium"> | |
| <span>Learn more</span> | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </div> | |
| </div> | |
| <!-- Feature 4: Graph --> | |
| <div class="feature-card rounded-2xl p-8"> | |
| <div class="w-16 h-16 bg-blue-900/30 rounded-xl flex items-center justify-center mb-6"> | |
| <i class="fas fa-project-diagram text-accent text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Graph Database</h3> | |
| <p class="text-slate-400 mb-4"> | |
| Relationship traversal for fraud detection, social networks, and knowledge graphs. | |
| </p> | |
| <div class="text-accent font-medium"> | |
| <span>Learn more</span> | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Benefits Section --> | |
| <section class="py-20 px-6 md:px-12 lg:px-24 wave-pattern"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center"> | |
| <div class="order-2 lg:order-1"> | |
| <div class="relative"> | |
| <div class="relative z-10"> | |
| <div class="grid grid-cols-2 gap-6"> | |
| <div class="bg-slate-800/50 p-6 rounded-2xl border border-slate-700"> | |
| <div class="text-4xl font-bold text-accent mb-2">10x</div> | |
| <div class="text-lg">Faster vector queries</div> | |
| </div> | |
| <div class="bg-slate-800/50 p-6 rounded-2xl border border-slate-700"> | |
| <div class="text-4xl font-bold text-accent mb-2">99.99%</div> | |
| <div class="text-lg">Uptime SLA</div> | |
| </div> | |
| <div class="bg-slate-800/50 p-6 rounded-2xl border border-slate-700"> | |
| <div class="text-4xl font-bold text-accent mb-2">∞</div> | |
| <div class="text-lg">Horizontal scalability</div> | |
| </div> | |
| <div class="bg-slate-800/50 p-6 rounded-2xl border border-slate-700"> | |
| <div class="text-4xl font-bold text-accent mb-2">70%</div> | |
| <div class="text-lg">Cost reduction</div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="absolute -top-8 -left-8 w-48 h-48 bg-blue-600 rounded-full mix-blend-soft-light filter blur-3xl opacity-20"></div> | |
| </div> | |
| </div> | |
| <div class="order-1 lg:order-2"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Why Choose TiDB for AI?</h2> | |
| <div class="space-y-6"> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-8 h-8 rounded-full bg-blue-900/30 flex items-center justify-center"> | |
| <i class="fas fa-check text-accent"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-xl font-semibold mb-2">Simplified Architecture</h3> | |
| <p class="text-slate-400"> | |
| Eliminate the complexity of managing multiple specialized databases. TiDB handles all your data workloads in one place. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-8 h-8 rounded-full bg-blue-900/30 flex items-center justify-center"> | |
| <i class="fas fa-check text-accent"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-xl font-semibold mb-2">Massive Scalability</h3> | |
| <p class="text-slate-400"> | |
| Scale horizontally to handle petabytes of data and millions of queries per second without downtime. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="flex"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-8 h-8 rounded-full bg-blue-900/30 flex items-center justify-center"> | |
| <i class="fas fa-check text-accent"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-xl font-semibold mb-2">Cost Efficiency</h3> | |
| <p class="text-slate-400"> | |
| Pay-as-you-go pricing with significant savings compared to using multiple specialized databases. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Pricing Section --> | |
| <section class="py-20 px-6 md:px-12 lg:px-24"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Simple, Transparent Pricing</h2> | |
| <p class="text-xl text-slate-400 max-w-3xl mx-auto"> | |
| Pay only for what you use with no upfront costs or long-term commitments | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 lg:grid-cols-3 gap-8"> | |
| <!-- Developer Plan --> | |
| <div class="pricing-card rounded-2xl p-8"> | |
| <div class="mb-6"> | |
| <h3 class="text-2xl font-bold mb-2">Developer</h3> | |
| <div class="flex items-end"> | |
| <span class="text-4xl font-bold">$0</span> | |
| <span class="text-slate-400 ml-2">/month</span> | |
| </div> | |
| <p class="text-slate-400 mt-2">Perfect for learning and small projects</p> | |
| </div> | |
| <ul class="space-y-4 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>Up to 10GB storage</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>Basic vector search</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>Single-node deployment</span> | |
| </li> | |
| <li class="flex items-center text-slate-500"> | |
| <i class="fas fa-times-circle mr-3"></i> | |
| <span>No high availability</span> | |
| </li> | |
| <li class="flex items-center text-slate-500"> | |
| <i class="fas fa-times-circle mr-3"></i> | |
| <span>Community support only</span> | |
| </li> | |
| </ul> | |
| <button class="w-full bg-slate-700 hover:bg-slate-600 text-white font-medium py-3 rounded-lg transition"> | |
| Get Started Free | |
| </button> | |
| </div> | |
| <!-- Business Plan --> | |
| <div class="pricing-card rounded-2xl p-8 relative glow"> | |
| <div class="absolute top-0 right-0 bg-accent text-white px-4 py-1 rounded-bl-lg rounded-tr-2xl"> | |
| Most Popular | |
| </div> | |
| <div class="mb-6"> | |
| <h3 class="text-2xl font-bold mb-2">Business</h3> | |
| <div class="flex items-end"> | |
| <span class="text-4xl font-bold">$299</span> | |
| <span class="text-slate-400 ml-2">/month + usage</span> | |
| </div> | |
| <p class="text-slate-400 mt-2">For production applications and teams</p> | |
| </div> | |
| <ul class="space-y-4 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>Unlimited storage</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>Advanced vector & hybrid search</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>Multi-node cluster</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>High availability</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>24/7 business support</span> | |
| </li> | |
| </ul> | |
| <button class="w-full btn-gradient text-white font-medium py-3 rounded-lg"> | |
| Start Free Trial | |
| </button> | |
| </div> | |
| <!-- Enterprise Plan --> | |
| <div class="pricing-card rounded-2xl p-8"> | |
| <div class="mb-6"> | |
| <h3 class="text-2xl font-bold mb-2">Enterprise</h3> | |
| <div class="flex items-end"> | |
| <span class="text-4xl font-bold">Custom</span> | |
| </div> | |
| <p class="text-slate-400 mt-2">For large-scale mission-critical applications</p> | |
| </div> | |
| <ul class="space-y-4 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>Everything in Business</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>Multi-region deployment</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>Advanced security & compliance</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>Dedicated infrastructure</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check-circle text-green-500 mr-3"></i> | |
| <span>24/7 premium support with SLA</span> | |
| </li> | |
| </ul> | |
| <button class="w-full bg-slate-700 hover:bg-slate-600 text-white font-medium py-3 rounded-lg transition"> | |
| Contact Sales | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-20 px-6 md:px-12 lg:px-24"> | |
| <div class="max-w-5xl mx-auto bg-gradient-to-r from-blue-900/30 to-slate-800/30 rounded-3xl p-12 text-center border border-slate-700 relative overflow-hidden"> | |
| <div class="absolute -top-40 -right-40 w-96 h-96 bg-blue-600 rounded-full mix-blend-soft-light filter blur-3xl opacity-20"></div> | |
| <div class="absolute -bottom-40 -left-40 w-96 h-96 bg-purple-600 rounded-full mix-blend-soft-light filter blur-3xl opacity-20"></div> | |
| <div class="relative z-10"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Power Your AI Applications?</h2> | |
| <p class="text-xl text-slate-300 max-w-2xl mx-auto mb-8"> | |
| Join thousands of developers and companies building the future with TiDB | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <button class="btn-gradient text-white font-semibold px-8 py-4 rounded-lg text-lg"> | |
| Start Free Trial | |
| </button> | |
| <button class="bg-white/10 border border-slate-700 text-white font-medium px-8 py-4 rounded-lg text-lg hover:bg-white/20 transition"> | |
| Schedule a Demo | |
| </button> | |
| </div> | |
| <p class="text-slate-400 mt-6">No credit card required • 14-day free trial • Cancel anytime</p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="py-12 px-6 md:px-12 lg:px-24 border-t border-slate-800"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-12"> | |
| <div class="lg:col-span-2"> | |
| <div class="flex items-center mb-6"> | |
| <div class="bg-accent w-10 h-10 rounded-lg flex items-center justify-center mr-3"> | |
| <i class="fas fa-database text-white text-xl"></i> | |
| </div> | |
| <span class="text-white text-2xl font-bold">Ti<span class="text-accent">DB</span></span> | |
| </div> | |
| <p class="text-slate-400 mb-6 max-w-md"> | |
| The one database that unifies vector search, full-text search, SQL, and graph for all your AI needs. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 rounded-full bg-slate-800 flex items-center justify-center hover:bg-accent transition"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-slate-800 flex items-center justify-center hover:bg-accent transition"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-slate-800 flex items-center justify-center hover:bg-accent transition"> | |
| <i class="fab fa-github"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-slate-800 flex items-center justify-center hover:bg-accent transition"> | |
| <i class="fab fa-youtube"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-6">Product</h4> | |
| <ul class="space-y-4"> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Features</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Solutions</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Pricing</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Documentation</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Releases</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-6">Resources</h4> | |
| <ul class="space-y-4"> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Blog</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Tutorials</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Community</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Support</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Events</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-6">Company</h4> | |
| <ul class="space-y-4"> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">About</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Careers</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Customers</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Partners</a></li> | |
| <li><a href="#" class="text-slate-400 hover:text-white transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-slate-800 mt-12 pt-8 text-center text-slate-500"> | |
| <p>© 2023 TiDB. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Create animated background dots | |
| const dotContainer = document.querySelector('.animated-dots'); | |
| const dotsCount = 20; | |
| for (let i = 0; i < dotsCount; i++) { | |
| const dot = document.createElement('div'); | |
| dot.classList.add('dot'); | |
| // Random size | |
| const size = Math.random() * 6 + 2; | |
| dot.style.width = `${size}px`; | |
| dot.style.height = `${size}px`; | |
| // Random position | |
| dot.style.left = `${Math.random() * 100}%`; | |
| dot.style.top = `${Math.random() * 100}%`; | |
| // Random animation duration | |
| const duration = Math.random() * 10 + 10; | |
| dot.style.animationDuration = `${duration}s`; | |
| // Random animation delay | |
| const delay = Math.random() * 5; | |
| dot.style.animationDelay = `${delay}s`; | |
| dotContainer.appendChild(dot); | |
| } | |
| </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=goroutine/tidb-for-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |