Attonos commited on
Commit
f65cca9
·
verified ·
1 Parent(s): d482bcf

udelej tomu super hexa neon green pin neob technobuhist style od multiagent multi device multi all supoer a uni modular modularizer

Browse files
Files changed (4) hide show
  1. hexa.html +202 -0
  2. index.html +1 -0
  3. quantum.html +1 -0
  4. visual.html +2 -1
hexa.html ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>HEXA MODULARIZER | CodeWizard</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
13
+ <style>
14
+ @import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Share+Tech+Mono&display=swap');
15
+ body {
16
+ font-family: 'Share Tech Mono', monospace;
17
+ background-color: #0f0f23;
18
+ color: #00ff41;
19
+ overflow-x: hidden;
20
+ }
21
+ .matrix-text {
22
+ font-family: 'Major Mono Display', monospace;
23
+ text-shadow: 0 0 5px #00ff41, 0 0 10px #00ff41;
24
+ }
25
+ .hexa-card {
26
+ background: rgba(0, 0, 0, 0.7);
27
+ border: 1px solid #00ff41;
28
+ box-shadow: 0 0 15px #00ff41;
29
+ transition: all 0.3s ease;
30
+ }
31
+ .hexa-card:hover {
32
+ transform: scale(1.03);
33
+ box-shadow: 0 0 30px #00ff41;
34
+ }
35
+ .neon-btn {
36
+ background: transparent;
37
+ border: 2px solid #00ff41;
38
+ color: #00ff41;
39
+ text-shadow: 0 0 5px #00ff41;
40
+ box-shadow: 0 0 10px #00ff41;
41
+ transition: all 0.3s ease;
42
+ }
43
+ .neon-btn:hover {
44
+ background: #00ff41;
45
+ color: black;
46
+ box-shadow: 0 0 20px #00ff41;
47
+ }
48
+ @keyframes flicker {
49
+ 0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
50
+ opacity: 1;
51
+ }
52
+ 20%, 22%, 24%, 55% {
53
+ opacity: 0.5;
54
+ }
55
+ }
56
+ .flicker {
57
+ animation: flicker 3s infinite;
58
+ }
59
+ </style>
60
+ </head>
61
+ <body>
62
+ <!-- Navigation -->
63
+ <nav class="py-6 px-6 md:px-12 flex justify-between items-center border-b border-green-500/20">
64
+ <div class="flex items-center space-x-2">
65
+ <i data-feather="hexagon" class="text-green-500"></i>
66
+ <span class="text-xl font-bold matrix-text">HEXA/MODULARIZER</span>
67
+ </div>
68
+ <div class="hidden md:flex space-x-8">
69
+ <a href="index.html" class="hover:text-green-400 transition matrix-text">MAINFRAME</a>
70
+ <a href="quantum.html" class="hover:text-green-400 transition matrix-text">QUANTUM</a>
71
+ <a href="visual.html" class="hover:text-green-400 transition matrix-text">VISUAL</a>
72
+ </div>
73
+ </nav>
74
+
75
+ <!-- Hero Section -->
76
+ <div class="container mx-auto px-6 md:px-12 py-20 text-center">
77
+ <h1 class="text-5xl md:text-7xl font-bold mb-6 matrix-text flicker">
78
+ <span class="text-green-500">HEXA</span><span class="text-white">:</span><span class="text-green-500">MODULARIZER</span>
79
+ </h1>
80
+ <p class="text-xl text-green-300 mb-10 max-w-3xl mx-auto matrix-text">
81
+ MULTI-AGENT INTERFACE FOR CROSS-DEVICE MODULAR DEPLOYMENT
82
+ </p>
83
+ <div class="flex flex-col sm:flex-row justify-center gap-6">
84
+ <button class="px-8 py-4 rounded-none neon-btn matrix-text">
85
+ INITIALIZE AGENTS
86
+ </button>
87
+ <button class="px-8 py-4 rounded-none neon-btn matrix-text">
88
+ SCAN DEVICES
89
+ </button>
90
+ </div>
91
+ </div>
92
+
93
+ <!-- Hexa Grid -->
94
+ <div class="container mx-auto px-6 md:px-12 py-12">
95
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
96
+ <!-- Module 1 -->
97
+ <div class="hexa-card p-8">
98
+ <div class="flex justify-center mb-6">
99
+ <div class="w-20 h-20 border-2 border-green-500 rotate-45 flex items-center justify-center">
100
+ <i data-feather="cpu" class="text-green-500 w-10 h-10 -rotate-45"></i>
101
+ </div>
102
+ </div>
103
+ <h3 class="text-2xl font-bold text-center mb-4 text-green-500 matrix-text">AGENT.CORE</h3>
104
+ <p class="text-green-300 mb-6 text-center matrix-text">
105
+ CENTRAL PROCESSING MODULE FOR ALL AGENT OPERATIONS
106
+ </p>
107
+ <button class="w-full py-3 rounded-none neon-btn matrix-text">
108
+ ACTIVATE
109
+ </button>
110
+ </div>
111
+
112
+ <!-- Module 2 -->
113
+ <div class="hexa-card p-8">
114
+ <div class="flex justify-center mb-6">
115
+ <div class="w-20 h-20 border-2 border-green-500 rotate-45 flex items-center justify-center">
116
+ <i data-feather="wifi" class="text-green-500 w-10 h-10 -rotate-45"></i>
117
+ </div>
118
+ </div>
119
+ <h3 class="text-2xl font-bold text-center mb-4 text-green-500 matrix-text">NET.SYNC</h3>
120
+ <p class="text-green-300 mb-6 text-center matrix-text">
121
+ MULTI-DEVICE SYNCHRONIZATION MODULE
122
+ </p>
123
+ <button class="w-full py-3 rounded-none neon-btn matrix-text">
124
+ SCAN NETWORK
125
+ </button>
126
+ </div>
127
+
128
+ <!-- Module 3 -->
129
+ <div class="hexa-card p-8">
130
+ <div class="flex justify-center mb-6">
131
+ <div class="w-20 h-20 border-2 border-green-500 rotate-45 flex items-center justify-center">
132
+ <i data-feather="package" class="text-green-500 w-10 h-10 -rotate-45"></i>
133
+ </div>
134
+ </div>
135
+ <h3 class="text-2xl font-bold text-center mb-4 text-green-500 matrix-text">MODULARIZER</h3>
136
+ <p class="text-green-300 mb-6 text-center matrix-text">
137
+ DYNAMIC CODE COMPONENTIZATION ENGINE
138
+ </p>
139
+ <button class="w-full py-3 rounded-none neon-btn matrix-text">
140
+ ANALYZE
141
+ </button>
142
+ </div>
143
+ </div>
144
+ </div>
145
+
146
+ <!-- Hexa Terminal -->
147
+ <div class="container mx-auto px-6 md:px-12 py-12 max-w-5xl">
148
+ <div class="hexa-card p-8">
149
+ <div class="flex mb-6">
150
+ <div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
151
+ <div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
152
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
153
+ </div>
154
+ <div class="font-mono text-green-400">
155
+ <div class="mb-4">
156
+ <span class="text-green-500">HEXA></span>
157
+ <span class="text-white ml-2">init --all --protocol=multi-device</span>
158
+ </div>
159
+ <div class="mb-2 text-green-300">> SCANNING FOR COMPATIBLE DEVICES...</div>
160
+ <div class="mb-2 text-green-300">> FOUND 12 DEVICES IN LOCAL NETWORK</div>
161
+ <div class="mb-2 text-green-500">> INITIALIZING MODULAR AGENT SYSTEM</div>
162
+ <div class="mb-4 text-green-300">> READY FOR DISTRIBUTED DEPLOYMENT</div>
163
+ <div>
164
+ <span class="text-green-500">HEXA></span>
165
+ <span class="text-white ml-2 border-b border-green-500 inline-block min-w-[50%]">_</span>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </div>
170
+
171
+ <footer class="py-12 px-6 md:px-12 border-t border-green-500/20 mt-20">
172
+ <div class="container mx-auto text-center">
173
+ <p class="text-green-500/80 matrix-text">© 2023 HEXA/MODULARIZER SYSTEM - ALL AGENTS OPERATIONAL</p>
174
+ </div>
175
+ </footer>
176
+
177
+ <script>
178
+ // Initialize feather icons
179
+ document.addEventListener('DOMContentLoaded', () => {
180
+ feather.replace();
181
+ });
182
+
183
+ // Terminal typing effect
184
+ const hexaCommands = [
185
+ "deploy --target=all --mode=parallel",
186
+ "analyze --modules --optimize",
187
+ "sync --network=local --protocol=hexa",
188
+ "visualize --agents --3d"
189
+ ];
190
+
191
+ let currentCommand = 0;
192
+ function rotateCommand() {
193
+ const terminal = document.querySelector('.hexa-card .font-mono div:last-child span:last-child');
194
+ terminal.textContent = hexaCommands[currentCommand];
195
+ currentCommand = (currentCommand + 1) % hexaCommands.length;
196
+ setTimeout(rotateCommand, 3000);
197
+ }
198
+
199
+ setTimeout(rotateCommand, 3000);
200
+ </script>
201
+ </body>
202
+ </html>
index.html CHANGED
@@ -53,6 +53,7 @@
53
  <a href="#" class="hover:text-purple-300 transition">Contact</a>
54
  <a href="quantum.html" class="hover:text-purple-300 transition">Quantum Lab</a>
55
  <a href="visual.html" class="hover:text-purple-300 transition">Visual Orchestrator</a>
 
56
  </div>
57
  <button class="md:hidden">
58
  <i data-feather="menu"></i>
 
53
  <a href="#" class="hover:text-purple-300 transition">Contact</a>
54
  <a href="quantum.html" class="hover:text-purple-300 transition">Quantum Lab</a>
55
  <a href="visual.html" class="hover:text-purple-300 transition">Visual Orchestrator</a>
56
+ <a href="hexa.html" class="hover:text-purple-300 transition">HEXA Modularizer</a>
57
  </div>
58
  <button class="md:hidden">
59
  <i data-feather="menu"></i>
quantum.html CHANGED
@@ -53,6 +53,7 @@
53
  <div class="hidden md:flex space-x-8">
54
  <a href="index.html" class="hover:text-purple-300 transition">Back to Main</a>
55
  <a href="visual.html" class="hover:text-purple-300 transition">Visual Orchestrator</a>
 
56
  </div>
57
  </nav>
58
 
 
53
  <div class="hidden md:flex space-x-8">
54
  <a href="index.html" class="hover:text-purple-300 transition">Back to Main</a>
55
  <a href="visual.html" class="hover:text-purple-300 transition">Visual Orchestrator</a>
56
+ <a href="hexa.html" class="hover:text-purple-300 transition">HEXA Modularizer</a>
57
  </div>
58
  </nav>
59
 
visual.html CHANGED
@@ -56,8 +56,9 @@
56
  <div class="hidden md:flex space-x-8">
57
  <a href="index.html" class="hover:text-purple-300 transition">Home</a>
58
  <a href="quantum.html" class="hover:text-purple-300 transition">Quantum Lab</a>
 
59
  <a href="#" class="hover:text-purple-300 transition text-purple-300">Visual Orchestrator</a>
60
- </div>
61
  <button class="md:hidden">
62
  <i data-feather="menu"></i>
63
  </button>
 
56
  <div class="hidden md:flex space-x-8">
57
  <a href="index.html" class="hover:text-purple-300 transition">Home</a>
58
  <a href="quantum.html" class="hover:text-purple-300 transition">Quantum Lab</a>
59
+ <a href="hexa.html" class="hover:text-purple-300 transition">HEXA Modularizer</a>
60
  <a href="#" class="hover:text-purple-300 transition text-purple-300">Visual Orchestrator</a>
61
+ </div>
62
  <button class="md:hidden">
63
  <i data-feather="menu"></i>
64
  </button>