| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Seedream Explorer 4.0 | AI Model Showcase</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
| |
| body { |
| font-family: 'Inter', sans-serif; |
| overflow-x: hidden; |
| } |
| |
| .gradient-bg { |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); |
| } |
| |
| .model-card { |
| transition: all 0.3s ease; |
| border-radius: 16px; |
| overflow: hidden; |
| } |
| |
| .model-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| |
| .feature-icon { |
| width: 50px; |
| height: 50px; |
| border-radius: 12px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| background: rgba(102, 126, 234, 0.1); |
| } |
| |
| .animate-float { |
| animation: float 6s ease-in-out infinite; |
| } |
| |
| @keyframes float { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-10px); } |
| 100% { transform: translateY(0px); } |
| } |
| |
| .typewriter { |
| overflow: hidden; |
| border-right: .15em solid #764ba2; |
| white-space: nowrap; |
| animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite; |
| } |
| |
| @keyframes typing { |
| from { width: 0 } |
| to { width: 100% } |
| } |
| |
| @keyframes blink-caret { |
| from, to { border-color: transparent } |
| 50% { border-color: #764ba2; } |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50"> |
| |
| <div id="vanta-bg" class="min-h-screen flex items-center justify-center gradient-bg text-white"> |
| <div class="container mx-auto px-6 text-center z-10"> |
| <h1 class="text-5xl md:text-7xl font-bold mb-6 animate-float">Seedream 4.0</h1> |
| <p class="text-xl md:text-2xl mb-8 typewriter">The next generation of visual AI imagination</p> |
| <div class="flex flex-wrap justify-center gap-4"> |
| <a href="#features" class="px-8 py-3 bg-white text-purple-700 rounded-full font-semibold hover:bg-gray-100 transition duration-300">Explore Features</a> |
| <a href="#demo" class="px-8 py-3 border-2 border-white text-white rounded-full font-semibold hover:bg-white hover:text-purple-700 transition duration-300">Try Demo</a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <nav class="sticky top-0 bg-white shadow-md z-50"> |
| <div class="container mx-auto px-6 py-3"> |
| <div class="flex justify-between items-center"> |
| <a href="#" class="text-2xl font-bold text-purple-700 flex items-center"> |
| <i data-feather="cloud" class="mr-2"></i> Seedream Explorer |
| </a> |
| <div class="hidden md:flex space-x-8"> |
| <a href="#features" class="text-gray-700 hover:text-purple-600 transition">Features</a> |
| <a href="#demo" class="text-gray-700 hover:text-purple-600 transition">Demo</a> |
| <a href="#applications" class="text-gray-700 hover:text-purple-600 transition">Applications</a> |
| <a href="#pricing" class="text-gray-700 hover:text-purple-600 transition">Pricing</a> |
| </div> |
| <button class="md:hidden"> |
| <i data-feather="menu"></i> |
| </button> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section id="features" class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Powerful AI Capabilities</h2> |
| <p class="text-gray-600 max-w-2xl mx-auto">Seedream 4.0 revolutionizes how we interact with visual AI, offering unprecedented creativity and precision.</p> |
| </div> |
| |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="model-card p-6 bg-gray-50 border border-gray-200"> |
| <div class="feature-icon mb-4 text-purple-600"> |
| <i data-feather="image"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">High-Resolution Generation</h3> |
| <p class="text-gray-600">Create stunning 4K visuals with incredible detail and photorealism.</p> |
| </div> |
| |
| |
| <div class="model-card p-6 bg-gray-50 border border-gray-200"> |
| <div class="feature-icon mb-4 text-purple-600"> |
| <i data-feather="edit-3"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Text-to-Image Precision</h3> |
| <p class="text-gray-600">Translate complex descriptions into accurate visual representations.</p> |
| </div> |
| |
| |
| <div class="model-card p-6 bg-gray-50 border border-gray-200"> |
| <div class="feature-icon mb-4 text-purple-600"> |
| <i data-feather="refresh-cw"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Style Transfer</h3> |
| <p class="text-gray-600">Apply artistic styles to generated images with fine-grained control.</p> |
| </div> |
| |
| |
| <div class="model-card p-6 bg-gray-50 border border-gray-200"> |
| <div class="feature-icon mb-4 text-purple-600"> |
| <i data-feather="layers"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Multi-Modal Understanding</h3> |
| <p class="text-gray-600">Process both text and image inputs for enhanced creative possibilities.</p> |
| </div> |
| |
| |
| <div class="model-card p-6 bg-gray-50 border border-gray-200"> |
| <div class="feature-icon mb-4 text-purple-600"> |
| <i data-feather="zap"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Rapid Generation</h3> |
| <p class="text-gray-600">Produce high-quality results in seconds, not minutes.</p> |
| </div> |
| |
| |
| <div class="model-card p-6 bg-gray-50 border border-gray-200"> |
| <div class="feature-icon mb-4 text-purple-600"> |
| <i data-feather="shield"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Ethical AI</h3> |
| <p class="text-gray-600">Built with responsible AI practices and content filtering.</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="demo" class="py-20 bg-gray-100"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Experience Seedream 4.0</h2> |
| <p class="text-gray-600 max-w-2xl mx-auto">Try our interactive demo to see the power of Seedream's AI capabilities.</p> |
| </div> |
| |
| <div class="bg-white rounded-xl shadow-lg p-6 md:p-8 max-w-4xl mx-auto"> |
| <div class="grid md:grid-cols-2 gap-8"> |
| <div> |
| <h3 class="text-xl font-semibold mb-4">Input Your Creative Prompt</h3> |
| <textarea class="w-full h-40 p-4 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-transparent" placeholder="Describe what you want to generate..."></textarea> |
| <div class="mt-4 grid grid-cols-2 gap-3"> |
| <select class="p-3 border border-gray-300 rounded-lg"> |
| <option>Realistic</option> |
| <option>Artistic</option> |
| <option>Abstract</option> |
| <option>Fantasy</option> |
| </select> |
| <select class="p-3 border border-gray-300 rounded-lg"> |
| <option>Portrait</option> |
| <option>Landscape</option> |
| <option>Object</option> |
| <option>Concept</option> |
| </select> |
| </div> |
| <button class="w-full mt-6 py-3 bg-purple-600 text-white rounded-lg font-semibold hover:bg-purple-700 transition duration-300">Generate Image</button> |
| </div> |
| |
| <div> |
| <h3 class="text-xl font-semibold mb-4">Generated Result</h3> |
| <div class="h-40 md:h-56 bg-gray-200 rounded-lg flex items-center justify-center"> |
| <p class="text-gray-500">Your generated image will appear here</p> |
| </div> |
| <div class="mt-4 flex justify-between"> |
| <button class="px-4 py-2 bg-gray-200 text-gray-700 rounded-lg hover:bg-gray-300 transition">Download</button> |
| <button class="px-4 py-2 bg-gray-200 text-gray-700 rounded-lg hover:bg-gray-300 transition">Regenerate</button> |
| <button class="px-4 py-2 bg-gray-200 text-gray-700 rounded-lg hover:bg-gray-300 transition">Share</button> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-16 grid md:grid-cols-3 gap-6"> |
| <div class="bg-white p-6 rounded-lg shadow"> |
| <img src="http://static.photos/abstract/320x240/1" alt="Sample generation 1" class="w-full h-48 object-cover rounded-lg mb-4"> |
| <h4 class="font-semibold mb-2">"Cyberpunk cityscape at night"</h4> |
| <p class="text-sm text-gray-600">Generated in 4.2 seconds</p> |
| </div> |
| <div class="bg-white p-6 rounded-lg shadow"> |
| <img src="http://static.photos/nature/320x240/2" alt="Sample generation 2" class="w-full h-48 object-cover rounded-lg mb-4"> |
| <h4 class="font-semibold mb-2">"Majestic mountain landscape"</h4> |
| <p class="text-sm text-gray-600">Generated in 3.8 seconds</p> |
| </div> |
| <div class="bg-white p-6 rounded-lg shadow"> |
| <img src="http://static.photos/technology/320x240/3" alt="Sample generation 3" class="w-full h-48 object-cover rounded-lg mb-4"> |
| <h4 class="font-semibold mb-2">"Futuristic AI interface design"</h4> |
| <p class="text-sm text-gray-600">Generated in 5.1 seconds</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="applications" class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Endless Applications</h2> |
| <p class="text-gray-600 max-w-2xl mx-auto">Seedream 4.0 transforms industries with its versatile AI capabilities.</p> |
| </div> |
| |
| <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6"> |
| <div class="text-center p-6 bg-purple-50 rounded-lg"> |
| <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="pen-tool" class="text-purple-600"></i> |
| </div> |
| <h3 class="font-semibold mb-2">Concept Art</h3> |
| <p class="text-sm text-gray-600">Rapid visualization for games and films</p> |
| </div> |
| |
| <div class="text-center p-6 bg-blue-50 rounded-lg"> |
| <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="shopping-bag" class="text-blue-600"></i> |
| </div> |
| <h3 class="font-semibold mb-2">Advertising</h3> |
| <p class="text-sm text-gray-600">Create compelling visual campaigns</p> |
| </div> |
| |
| <div class="text-center p-6 bg-green-50 rounded-lg"> |
| <div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="home" class="text-green-600"></i> |
| </div> |
| <h3 class="font-semibold mb-2">Architecture</h3> |
| <p class="text-sm text-gray-600">Visualize designs before construction</p> |
| </div> |
| |
| <div class="text-center p-6 bg-yellow-50 rounded-lg"> |
| <div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| <i data-feather="book-open" class="text-yellow-600"></i> |
| </div> |
| <h3 class="font-semibold mb-2">Education</h3> |
| <p class="text-sm text-gray-600">Create engaging learning materials</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="pricing" class="py-20 bg-gray-100"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Simple, Transparent Pricing</h2> |
| <p class="text-gray-600 max-w-2xl mx-auto">Choose the plan that works best for your creative needs.</p> |
| </div> |
| |
| <div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto"> |
| |
| <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-200"> |
| <h3 class="text-2xl font-bold mb-4">Explorer</h3> |
| <div class="mb-6"> |
| <span class="text-4xl font-bold">$0</span> |
| <span class="text-gray-600">/ forever</span> |
| </div> |
| <ul class="space-y-3 mb-8"> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>20 generations per month</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>Standard resolution (1024px)</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>Basic styles</span> |
| </li> |
| <li class="flex items-center text-gray-400"> |
| <i data-feather="x" class="mr-2"></i> |
| <span>Commercial license</span> |
| </li> |
| </ul> |
| <button class="w-full py-3 border border-purple-600 text-purple-600 rounded-lg font-semibold hover:bg-purple-50 transition duration-300">Get Started</button> |
| </div> |
| |
| |
| <div class="bg-white p-8 rounded-xl shadow-lg border-2 border-purple-600 relative"> |
| <div class="absolute top-0 right-0 bg-purple-600 text-white text-xs font-semibold px-3 py-1 rounded-bl-lg">MOST POPULAR</div> |
| <h3 class="text-2xl font-bold mb-4">Creator</h3> |
| <div class="mb-6"> |
| <span class="text-4xl font-bold">$24</span> |
| <span class="text-gray-600">/ month</span> |
| </div> |
| <ul class="space-y-3 mb-8"> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>500 generations per month</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>High resolution (4K)</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>All style options</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>Commercial license</span> |
| </li> |
| </ul> |
| <button class="w-full py-3 bg-purple-600 text-white rounded-lg font-semibold hover:bg-purple-700 transition duration-300">Get Started</button> |
| </div> |
| |
| |
| <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-200"> |
| <h3 class="text-2xl font-bold mb-4">Enterprise</h3> |
| <div class="mb-6"> |
| <span class="text-4xl font-bold">Custom</span> |
| </div> |
| <ul class="space-y-3 mb-8"> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>Unlimited generations</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>Ultra resolution (8K)</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>API access</span> |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="text-green-500 mr-2"></i> |
| <span>Priority support</span> |
| </li> |
| </ul> |
| <button class="w-full py-3 border border-purple-600 text-purple-600 rounded-lg font-semibold hover:bg-purple-50 transition duration-300">Contact Sales</button> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-900 text-white py-12"> |
| <div class="container mx-auto px-6"> |
| <div class="grid md:grid-cols-4 gap-8"> |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Seedream Explorer</h4> |
| <p class="text-gray-400">Transforming imagination into reality with cutting-edge AI technology.</p> |
| </div> |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Product</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Demo</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">API</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Company</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Connect</h4> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="twitter"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="instagram"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="linkedin"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="github"></i></a> |
| </div> |
| </div> |
| </div> |
| <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400"> |
| <p>© 2023 Seedream Explorer. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| VANTA.GLOBE({ |
| el: "#vanta-bg", |
| mouseControls: true, |
| touchControls: true, |
| gyroControls: false, |
| minHeight: 200.00, |
| minWidth: 200.00, |
| scale: 1.00, |
| scaleMobile: 1.00, |
| color: 0x764ba2, |
| color2: 0x667eea, |
| size: 1.10, |
| backgroundColor: 0x0 |
| }); |
| |
| |
| feather.replace(); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| }); |
| }); |
| </script> |
| </body> |
| </html> |
|
|