File size: 13,520 Bytes
d44c728
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dcdefe2
d482bcf
f65cca9
59c2b00
d482bcf
d44c728
 
 
 
dcdefe2
 
 
 
 
 
d44c728
 
 
dcdefe2
d44c728
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5a41454
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CodeWizard Orchestra</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=Fira+Code:wght@300;400;500;600;700&display=swap');
        body {
            font-family: 'Fira Code', monospace;
        }
        .code-gradient {
            background: linear-gradient(135deg, #6e8efb, #a777e3);
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .terminal {
            background: #1e1e2e;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .typing-cursor {
            animation: blink 1s infinite;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
    </style>
</head>
<body class="min-h-screen text-white overflow-x-hidden" id="vanta-bg">
    <div class="absolute inset-0 z-0"></div>
    <!-- Navigation -->
    <nav class="relative z-10 py-6 px-6 md:px-12 flex justify-between items-center">
        <div class="flex items-center space-x-2">
            <i data-feather="cpu" class="text-purple-400"></i>
            <span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-blue-500">CodeWizard</span>
        </div>
        <div class="hidden md:flex space-x-8">
            <a href="#" class="hover:text-purple-300 transition">Home</a>
            <a href="#" class="hover:text-purple-300 transition">Features</a>
            <a href="#" class="hover:text-purple-300 transition">Agents</a>
            <a href="#" class="hover:text-purple-300 transition">Deploy</a>
            <a href="#" class="hover:text-purple-300 transition">Contact</a>
            <a href="quantum.html" class="hover:text-purple-300 transition">Quantum Lab</a>
            <a href="visual.html" class="hover:text-purple-300 transition">Visual Orchestrator</a>
            <a href="hexa.html" class="hover:text-purple-300 transition">HEXA Modularizer</a>
            <a href="game.html" class="hover:text-purple-300 transition">Game Lab</a>
</div>
        <button class="md:hidden">
            <i data-feather="menu"></i>
        </button>
    </nav>
    <!-- Quantum Portal Button -->
    <div class="fixed bottom-8 right-8 z-50">
        <a href="quantum.html" class="flex items-center justify-center w-16 h-16 rounded-full bg-gradient-to-br from-purple-600 to-blue-500 shadow-xl hover:shadow-2xl transition-all duration-300 animate-pulse">
            <i data-feather="atom" class="w-6 h-6 text-white"></i>
        </a>
    </div>

    <!-- Hero Section -->
    <main class="relative z-10 container mx-auto px-6 md:px-12 py-24">
<div class="max-w-4xl mx-auto text-center">
            <h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
                <span class="bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-blue-500">Multi-Agent</span> Code Orchestration
            </h1>
            <p class="text-lg md:text-xl text-gray-300 mb-10 max-w-2xl mx-auto">
                The ultimate symphony of coding agents working in perfect harmony to deliver flawless deployment.
            </p>
            <div class="flex flex-col sm:flex-row justify-center gap-4">
                <button class="px-8 py-3 rounded-full bg-gradient-to-r from-purple-500 to-blue-500 hover:from-purple-600 hover:to-blue-600 transition shadow-lg font-medium">
                    Start Orchestrating
                </button>
                <button class="px-8 py-3 rounded-full glass-card hover:bg-white/10 transition border border-white/20 font-medium">
                    Meet the Agents
                </button>
            </div>
        </div>

        <!-- Terminal Demo -->
        <div class="terminal mt-20 mx-auto max-w-4xl p-6">
            <div class="flex mb-4">
                <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
                <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
                <div class="w-3 h-3 rounded-full bg-green-500"></div>
            </div>
            <div class="font-mono text-sm md:text-base">
                <p class="text-green-400">$ <span class="typing-text"></span><span class="typing-cursor">|</span></p>
                <div class="mt-4 opacity-0" id="response-text">
                    <p class="text-blue-300">> Initializing CodeWizard Orchestra v3.1.4</p>
                    <p class="text-blue-300">> Loading 7 specialized agents...</p>
                    <p class="text-purple-300">> Orchestrator: All systems nominal</p>
                    <p class="text-green-300">> Deployment Agent: Ready for action</p>
                    <p class="text-yellow-300">> Visualizer: Rendering UI components</p>
                    <p class="text-pink-300">> Error Hunter: Scanning for vulnerabilities</p>
                    <p class="text-blue-300">> System: All agents synchronized</p>
                    <p class="text-white font-medium mt-2">> Welcome to the future of collaborative coding</p>
                </div>
            </div>
        </div>
    </main>

    <!-- Feature Grid -->
    <section class="relative z-10 py-20 px-6 md:px-12">
        <div class="container mx-auto">
            <h2 class="text-3xl md:text-4xl font-bold text-center mb-16">Agent Superpowers</h2>
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Feature 1 -->
                <div class="glass-card p-8 rounded-xl hover:bg-white/5 transition">
                    <div class="w-14 h-14 rounded-lg bg-purple-500/20 flex items-center justify-center mb-6">
                        <i data-feather="code" class="text-purple-400 w-6 h-6"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Multi-Agent Coding</h3>
                    <p class="text-gray-300">Specialized agents collaborate in real-time to produce perfect code across all layers of your stack.</p>
                </div>
                
                <!-- Feature 2 -->
                <div class="glass-card p-8 rounded-xl hover:bg-white/5 transition">
                    <div class="w-14 h-14 rounded-lg bg-blue-500/20 flex items-center justify-center mb-6">
                        <i data-feather="git-merge" class="text-blue-400 w-6 h-6"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Flawless Orchestration</h3>
                    <p class="text-gray-300">Our conductor agent ensures perfect synchronization between all components and deployment pipelines.</p>
                </div>
                
                <!-- Feature 3 -->
                <div class="glass-card p-8 rounded-xl hover:bg-white/5 transition">
                    <div class="w-14 h-14 rounded-lg bg-pink-500/20 flex items-center justify-center mb-6">
                        <i data-feather="eye" class="text-pink-400 w-6 h-6"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Visual Superpowers</h3>
                    <p class="text-gray-300">Real-time visualization of your entire architecture with interactive debugging capabilities.</p>
                </div>
                
                <!-- Feature 4 -->
                <div class="glass-card p-8 rounded-xl hover:bg-white/5 transition">
                    <div class="w-14 h-14 rounded-lg bg-green-500/20 flex items-center justify-center mb-6">
                        <i data-feather="zap" class="text-green-400 w-6 h-6"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Instant Deployment</h3>
                    <p class="text-gray-300">One-click deployment to any environment with automated optimization for performance.</p>
                </div>
                
                <!-- Feature 5 -->
                <div class="glass-card p-8 rounded-xl hover:bg-white/5 transition">
                    <div class="w-14 h-14 rounded-lg bg-yellow-500/20 flex items-center justify-center mb-6">
                        <i data-feather="shield" class="text-yellow-400 w-6 h-6"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Error Proofing</h3>
                    <p class="text-gray-300">Built-in agents that proactively prevent, detect, and fix errors before they reach production.</p>
                </div>
                
                <!-- Feature 6 -->
                <div class="glass-card p-8 rounded-xl hover:bg-white/5 transition">
                    <div class="w-14 h-14 rounded-lg bg-red-500/20 flex items-center justify-center mb-6">
                        <i data-feather="refresh-cw" class="text-red-400 w-6 h-6"></i>
                    </div>
                    <h3 class="text-xl font-bold mb-3">Self-Learning</h3>
                    <p class="text-gray-300">Agents continuously improve by learning from every deployment and code iteration.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="relative z-10 py-20 px-6 md:px-12 code-gradient">
        <div class="container mx-auto text-center">
            <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Conduct Your Code Symphony?</h2>
            <p class="text-xl text-white/90 mb-10 max-w-2xl mx-auto">Join thousands of developers who've automated their workflow with CodeWizard Orchestra.</p>
            <div class="flex flex-col sm:flex-row justify-center gap-4">
                <button class="px-8 py-4 rounded-full bg-white text-purple-600 hover:bg-gray-100 transition shadow-xl font-bold">
                    Get Started - It's Free
                </button>
                <button class="px-8 py-4 rounded-full bg-transparent border-2 border-white hover:bg-white/10 transition font-bold">
                    Watch Demo
                </button>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="relative z-10 py-12 px-6 md:px-12 bg-gray-900/50">
        <div class="container mx-auto">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="flex items-center space-x-2 mb-6 md:mb-0">
                    <i data-feather="cpu" class="text-purple-400"></i>
                    <span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-blue-500">CodeWizard</span>
                </div>
                <div class="flex space-x-6">
                    <a href="#"><i data-feather="github"></i></a>
                    <a href="#"><i data-feather="twitter"></i></a>
                    <a href="#"><i data-feather="linkedin"></i></a>
                    <a href="#"><i data-feather="discord"></i></a>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-8 pt-8 flex flex-col md:flex-row justify-between">
                <p class="text-gray-400 mb-4 md:mb-0">© 2023 CodeWizard Orchestra. All spells reserved.</p>
                <div class="flex flex-col sm:flex-row space-y-2 sm:space-y-0 sm:space-x-8">
                    <a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
                    <a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
                    <a href="#" class="text-gray-400 hover:text-white transition">Documentation</a>
                </div>
            </div>
        </div>
    </footer>

    <script>
        // Initialize Vanta.js 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: 0x7b5bfb,
            backgroundColor: 0x0,
            size: 0.8
        });

        // Terminal typing animation
        const text = "init codewizard --agents=all --visual-superpowers";
        const typingText = document.querySelector('.typing-text');
        const responseText = document.getElementById('response-text');
        
        let i = 0;
        function typeWriter() {
            if (i < text.length) {
                typingText.innerHTML += text.charAt(i);
                i++;
                setTimeout(typeWriter, Math.random() * 50 + 50);
            } else {
                setTimeout(() => {
                    responseText.classList.remove('opacity-0');
                    responseText.classList.add('opacity-100');
                }, 500);
            }
        }
        
        // Start animation after page loads
        document.addEventListener('DOMContentLoaded', () => {
            setTimeout(typeWriter, 1000);
            feather.replace();
        });
    </script>
</body>
</html>