Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>CharacterVerse Nexus Studio</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.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; | |
| } | |
| .vanta-bg { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| z-index: -1; | |
| } | |
| .glass-card { | |
| backdrop-filter: blur(16px) saturate(180%); | |
| -webkit-backdrop-filter: blur(16px) saturate(180%); | |
| background-color: rgba(255, 255, 255, 0.75); | |
| border-radius: 12px; | |
| border: 1px solid rgba(209, 213, 219, 0.3); | |
| } | |
| .gradient-text { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .feature-card { | |
| transition: all 0.3s ease; | |
| border: 1px solid rgba(209, 213, 219, 0.3); | |
| } | |
| .feature-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); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 min-h-screen"> | |
| <div id="vanta-bg" class="vanta-bg"></div> | |
| <!-- Navigation --> | |
| <nav class="bg-white/80 backdrop-blur-sm border-b border-gray-200 sticky top-0 z-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <i data-feather="users" class="h-8 w-8 text-purple-600"></i> | |
| <span class="ml-2 text-xl font-bold gradient-text">CharacterVerse Nexus</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#features" class="text-gray-700 hover:text-purple-600 transition-colors">Features</a> | |
| <a href="#how-it-works" class="text-gray-700 hover:text-purple-600 transition-colors">How it Works</a> | |
| <a href="#pricing" class="text-gray-700 hover:text-purple-600 transition-colors">Pricing</a> | |
| <a href="dashboard.html" class="bg-purple-600 text-white px-6 py-2 rounded-lg hover:bg-purple-700 transition-colors"> | |
| Get Started | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="relative py-20 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto text-center"> | |
| <h1 class="text-5xl md:text-6xl font-bold text-gray-900 mb-6"> | |
| Build Your <span class="gradient-text">Character Universe</span> | |
| </h1> | |
| <p class="text-xl text-gray-600 mb-8 max-w-3xl mx-auto"> | |
| The ultimate platform for writers and worldbuilders to create, connect, and maintain consistent character relationships with AI-powered generation and visualization. | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4 justify-center"> | |
| <a href="dashboard.html" class="bg-purple-600 text-white px-8 py-4 rounded-lg hover:bg-purple-700 transition-colors font-semibold text-lg"> | |
| Start Your Story | |
| </a> | |
| <button class="border-2 border-purple-600 text-purple-600 px-8 py-4 rounded-lg hover:bg-purple-50 transition-colors font-semibold text-lg"> | |
| Watch Demo | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Grid --> | |
| <section id="features" class="py-20 px-4 sm:px-6 lg:px-8 bg-white/50"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold text-gray-900 mb-4">Powerful Features for Creators</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto"> | |
| Everything you need to build and manage complex character relationships and storylines | |
| </p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Feature 1 --> | |
| <div class="glass-card p-6 feature-card"> | |
| <div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="git-branch" class="h-6 w-6 text-purple-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-2">Relationship Tree</h3> | |
| <p class="text-gray-600">Visualize complex character relationships with our interactive graph interface that updates in real-time.</p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="glass-card p-6 feature-card"> | |
| <div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="calendar" class="h-6 w-6 text-purple-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-2">Development Timeline</h3> | |
| <p class="text-gray-600">Track character arcs and story beats with our intuitive timeline tool and scene management.</p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="glass-card p-6 feature-card"> | |
| <div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="zap" class="h-6 w-6 text-purple-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-2">AI Generation</h3> | |
| <p class="text-gray-600">Generate consistent text and images using deterministic context packs that maintain your story's canon.</p> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="glass-card p-6 feature-card"> | |
| <div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="search" class="h-6 w-6 text-purple-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-2">Semantic Search</h3> | |
| <p class="text-gray-600">Quickly find characters, relationships, and story elements across your entire project universe.</p> | |
| </div> | |
| <!-- Feature 5 --> | |
| <div class="glass-card p-6 feature-card"> | |
| <div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="shield" class="h-6 w-6 text-purple-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-2">Secure Collaboration</h3> | |
| <p class="text-gray-600">Work together with team members using robust access controls and real-time updates.</p> | |
| </div> | |
| <!-- Feature 6 --> | |
| <div class="glass-card p-6 feature-card"> | |
| <div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="bar-chart-2" class="h-6 w-6 text-purple-600"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-2">Consistency Analytics</h3> | |
| <p class="text-gray-600">Spot contradictions and maintain narrative integrity with built-in canon checking.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- How It Works --> | |
| <section id="how-it-works" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-900 text-white"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold mb-4">How CharacterVerse Nexus Works</h2> | |
| <p class="text-xl text-gray-300 max-w-2xl mx-auto"> | |
| A streamlined workflow designed for creative professionals | |
| </p> | |
| </div> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <span class="text-white font-bold text-xl">1</span> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Define Characters</h3> | |
| <p class="text-gray-300">Create detailed character profiles with traits, voice specs, and relationships.</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <span class="text-white font-bold text-xl">2</span> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Map Relationships</h3> | |
| <p class="text-gray-300">Establish directed or bidirectional relationships with confidence levels and sources.</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <span class="text-white font-bold text-xl">3</span> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Build Timeline</h3> | |
| <p class="text-gray-300">Organize story beats and scenes in your development timeline.</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4"> | |
| <span class="text-white font-bold text-xl">4</span> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Generate & Refine</h3> | |
| <p class="text-gray-300">Create consistent content using AI with full control over context and canon.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-r from-purple-600 to-indigo-600 text-white"> | |
| <div class="max-w-4xl mx-auto text-center"> | |
| <h2 class="text-4xl font-bold mb-6">Ready to Build Your Character Universe?</h2> | |
| <p class="text-xl mb-8 opacity-90"> | |
| Join thousands of writers and worldbuilders creating amazing stories with CharacterVerse Nexus | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4 justify-center"> | |
| <a href="dashboard.html" class="bg-white text-purple-600 px-8 py-4 rounded-lg hover:bg-gray-100 transition-colors font-semibold text-lg"> | |
| Start Free Trial | |
| </a> | |
| <button class="border-2 border-white text-white px-8 py-4 rounded-lg hover:bg-white/10 transition-colors font-semibold text-lg"> | |
| Schedule Demo | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center mb-4"> | |
| <i data-feather="users" class="h-6 w-6 text-purple-400"></i> | |
| <span class="ml-2 text-lg font-bold">CharacterVerse Nexus</span> | |
| </div> | |
| <p class="text-gray-400">Building better stories through character relationships.</p> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Product</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Features</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Pricing</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">API</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Resources</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Documentation</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Blog</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Support</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Company</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">About</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Careers</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Contact</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400"> | |
| <p>© 2024 CharacterVerse Nexus Studio. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Initialize Vanta.js globe background | |
| 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, | |
| backgroundColor: 0xf8fafc, | |
| size: 1.10 | |
| }); | |
| // Initialize Feather Icons | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |