forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesign-proposals-v2.html
423 lines (401 loc) · 26.6 KB
/
design-proposals-v2.html
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nayari AI - New Design Proposals</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#8B5CF6',
}
}
}
}
</script>
<link href="https://unpkg.com/lucide-static@0.321.0/font/lucide.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
<div class="p-8">
<h1 class="text-3xl font-bold mb-8 text-center">Nayari AI - New Design Proposals</h1>
<!-- Proposal 1: Command Center -->
<div class="mb-16">
<h2 class="text-2xl font-semibold mb-4">1. Command Center Interface</h2>
<div class="min-h-[600px] bg-gradient-to-br from-gray-900 via-black to-purple-900 rounded-xl overflow-hidden p-8">
<!-- Top Bar -->
<div class="flex items-center justify-between mb-8">
<div class="flex items-center space-x-4">
<div class="w-3 h-3 rounded-full bg-purple-500 animate-pulse"></div>
<span class="text-purple-300 text-sm">AI Core Active</span>
</div>
<div class="flex items-center space-x-4">
<span class="text-gray-400 text-sm">System Status: Optimal</span>
<div class="h-6 w-px bg-gray-700"></div>
<i class="lucide-settings text-gray-400"></i>
</div>
</div>
<!-- Main Interface -->
<div class="grid grid-cols-12 gap-6 h-[500px]">
<!-- Left Sidebar -->
<div class="col-span-3 bg-black/40 rounded-xl p-4 border border-purple-500/20">
<div class="flex flex-col h-full">
<div class="text-purple-400 text-sm font-medium mb-4">QUICK ACCESS</div>
<div class="space-y-3">
<div class="p-3 bg-purple-500/10 rounded-lg cursor-pointer hover:bg-purple-500/20 transition-all">
<div class="flex items-center space-x-3">
<i class="lucide-zap text-purple-400"></i>
<span class="text-white">Recent Chats</span>
</div>
</div>
<div class="p-3 rounded-lg cursor-pointer hover:bg-purple-500/20 transition-all">
<div class="flex items-center space-x-3">
<i class="lucide-book text-gray-400"></i>
<span class="text-gray-300">Documentation</span>
</div>
</div>
<div class="p-3 rounded-lg cursor-pointer hover:bg-purple-500/20 transition-all">
<div class="flex items-center space-x-3">
<i class="lucide-code-2 text-gray-400"></i>
<span class="text-gray-300">API Access</span>
</div>
</div>
</div>
<div class="mt-auto">
<div class="text-purple-400 text-sm font-medium mb-2">SYSTEM METRICS</div>
<div class="space-y-2">
<div class="flex items-center justify-between text-sm">
<span class="text-gray-400">Memory Usage</span>
<span class="text-purple-400">64%</span>
</div>
<div class="h-1 bg-purple-900 rounded-full">
<div class="h-1 bg-purple-500 rounded-full" style="width: 64%"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="col-span-6 flex flex-col">
<div class="bg-black/40 rounded-xl p-6 border border-purple-500/20 mb-6 flex-grow">
<div class="text-center mb-8">
<h1 class="text-4xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-pink-400">Nayari AI Assistant</h1>
<p class="text-gray-400 mt-2">Advanced AI Interaction Hub</p>
</div>
<!-- Command Input -->
<div class="relative mt-8">
<div class="absolute inset-0 bg-gradient-to-r from-purple-500 to-pink-500 rounded-lg blur opacity-20"></div>
<div class="relative bg-black/60 rounded-lg p-4 border border-purple-500/30">
<div class="flex items-center space-x-3 mb-3">
<i class="lucide-terminal text-purple-400"></i>
<span class="text-gray-300">Command Center</span>
</div>
<input type="text" placeholder="Enter a command or start typing..." class="w-full bg-transparent border-none text-white placeholder-gray-500 focus:outline-none focus:ring-0">
</div>
</div>
<!-- Quick Actions -->
<div class="grid grid-cols-2 gap-4 mt-8">
<div class="bg-purple-500/10 rounded-lg p-4 cursor-pointer hover:bg-purple-500/20 transition-all">
<div class="flex items-center justify-between">
<span class="text-white">Start Chat</span>
<i class="lucide-message-square text-purple-400"></i>
</div>
</div>
<div class="bg-purple-500/10 rounded-lg p-4 cursor-pointer hover:bg-purple-500/20 transition-all">
<div class="flex items-center justify-between">
<span class="text-white">Open Terminal</span>
<i class="lucide-terminal text-purple-400"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Right Sidebar -->
<div class="col-span-3 space-y-6">
<!-- Activity Feed -->
<div class="bg-black/40 rounded-xl p-4 border border-purple-500/20">
<div class="text-purple-400 text-sm font-medium mb-4">RECENT ACTIVITY</div>
<div class="space-y-4">
<div class="flex items-start space-x-3">
<div class="w-2 h-2 rounded-full bg-purple-500 mt-1.5"></div>
<div>
<div class="text-white text-sm">Chat Session #127</div>
<div class="text-gray-400 text-xs">2 minutes ago</div>
</div>
</div>
<div class="flex items-start space-x-3">
<div class="w-2 h-2 rounded-full bg-green-500 mt-1.5"></div>
<div>
<div class="text-white text-sm">API Key Generated</div>
<div class="text-gray-400 text-xs">15 minutes ago</div>
</div>
</div>
</div>
</div>
<!-- Resources -->
<div class="bg-black/40 rounded-xl p-4 border border-purple-500/20">
<div class="text-purple-400 text-sm font-medium mb-4">RESOURCES</div>
<div class="space-y-3">
<div class="flex items-center justify-between text-sm">
<span class="text-gray-300">API Documentation</span>
<i class="lucide-external-link text-purple-400"></i>
</div>
<div class="flex items-center justify-between text-sm">
<span class="text-gray-300">Getting Started</span>
<i class="lucide-external-link text-purple-400"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Proposal 2: AI Hub -->
<div class="mb-16">
<h2 class="text-2xl font-semibold mb-4">2. AI Hub Interface</h2>
<div class="min-h-[600px] bg-[radial-gradient(circle_at_top,_var(--tw-gradient-stops))] from-blue-900 via-black to-purple-900 rounded-xl overflow-hidden">
<!-- Floating Navigation -->
<div class="absolute top-4 left-1/2 transform -translate-x-1/2 bg-white/5 backdrop-blur-xl rounded-full px-6 py-3 border border-white/10">
<div class="flex items-center space-x-8">
<div class="text-white/80 hover:text-white cursor-pointer transition-colors">Overview</div>
<div class="text-white/60 hover:text-white cursor-pointer transition-colors">Chat</div>
<div class="text-white/60 hover:text-white cursor-pointer transition-colors">Terminal</div>
<div class="text-white/60 hover:text-white cursor-pointer transition-colors">Docs</div>
</div>
</div>
<div class="container mx-auto px-8 py-20">
<!-- Hero Section -->
<div class="relative">
<!-- Decorative Elements -->
<div class="absolute -top-20 -left-20 w-64 h-64 bg-blue-500/20 rounded-full blur-3xl"></div>
<div class="absolute -top-10 right-20 w-48 h-48 bg-purple-500/20 rounded-full blur-3xl"></div>
<div class="relative text-center mb-16">
<h1 class="text-6xl font-bold text-white mb-6">Nayari AI Hub</h1>
<p class="text-blue-200 text-xl max-w-2xl mx-auto">Your gateway to advanced AI interactions and development tools</p>
</div>
</div>
<!-- AI Capabilities Grid -->
<div class="grid grid-cols-3 gap-8 mb-16">
<!-- Natural Language -->
<div class="group relative">
<div class="absolute inset-0 bg-gradient-to-r from-blue-500 to-purple-500 rounded-2xl blur opacity-0 group-hover:opacity-20 transition-opacity"></div>
<div class="relative bg-white/5 backdrop-blur-sm rounded-2xl p-6 border border-white/10">
<div class="flex items-center justify-between mb-4">
<div class="p-2 bg-blue-500/10 rounded-lg">
<i class="lucide-message-square text-blue-400"></i>
</div>
<div class="text-white/40">01</div>
</div>
<h3 class="text-white text-lg font-medium mb-2">Natural Language</h3>
<p class="text-white/60 text-sm">Advanced conversation capabilities with context awareness</p>
</div>
</div>
<!-- Code Generation -->
<div class="group relative">
<div class="absolute inset-0 bg-gradient-to-r from-blue-500 to-purple-500 rounded-2xl blur opacity-0 group-hover:opacity-20 transition-opacity"></div>
<div class="relative bg-white/5 backdrop-blur-sm rounded-2xl p-6 border border-white/10">
<div class="flex items-center justify-between mb-4">
<div class="p-2 bg-purple-500/10 rounded-lg">
<i class="lucide-code text-purple-400"></i>
</div>
<div class="text-white/40">02</div>
</div>
<h3 class="text-white text-lg font-medium mb-2">Code Generation</h3>
<p class="text-white/60 text-sm">Intelligent code synthesis and optimization tools</p>
</div>
</div>
<!-- API Integration -->
<div class="group relative">
<div class="absolute inset-0 bg-gradient-to-r from-blue-500 to-purple-500 rounded-2xl blur opacity-0 group-hover:opacity-20 transition-opacity"></div>
<div class="relative bg-white/5 backdrop-blur-sm rounded-2xl p-6 border border-white/10">
<div class="flex items-center justify-between mb-4">
<div class="p-2 bg-pink-500/10 rounded-lg">
<i class="lucide-plug text-pink-400"></i>
</div>
<div class="text-white/40">03</div>
</div>
<h3 class="text-white text-lg font-medium mb-2">API Integration</h3>
<p class="text-white/60 text-sm">Seamless integration with external services and APIs</p>
</div>
</div>
</div>
<!-- Interactive Console -->
<div class="relative">
<div class="absolute inset-0 bg-gradient-to-r from-blue-500 to-purple-500 rounded-2xl blur opacity-10"></div>
<div class="relative bg-black/40 backdrop-blur-xl rounded-2xl p-8 border border-white/10">
<div class="flex items-center justify-between mb-6">
<div class="flex items-center space-x-4">
<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>
<div class="text-white/40 text-sm">AI Console</div>
</div>
<div class="font-mono">
<div class="text-green-400 mb-2">$ Starting Nayari AI session...</div>
<div class="text-blue-400 mb-2">→ AI core initialized</div>
<div class="text-white flex items-center">
<span class="text-purple-400 mr-2">$</span>
<span class="animate-pulse">|</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Proposal 3: Neural Network -->
<div class="mb-16">
<h2 class="text-2xl font-semibold mb-4">3. Neural Network Interface</h2>
<div class="min-h-[600px] bg-gradient-to-br from-gray-900 to-black rounded-xl overflow-hidden relative">
<!-- Animated Background -->
<div class="absolute inset-0 opacity-20">
<div class="absolute top-0 left-0 w-full h-full bg-[radial-gradient(circle_at_center,_var(--tw-gradient-stops))] from-purple-500/20 via-transparent to-transparent animate-pulse"></div>
</div>
<!-- Main Content -->
<div class="relative p-8">
<!-- Top Navigation -->
<nav class="flex items-center justify-between mb-12">
<div class="flex items-center space-x-8">
<div class="text-2xl font-bold text-white">Nayari</div>
<div class="flex items-center space-x-6 text-sm">
<a href="#" class="text-white/80 hover:text-white transition-colors">Network</a>
<a href="#" class="text-white/60 hover:text-white transition-colors">Models</a>
<a href="#" class="text-white/60 hover:text-white transition-colors">Training</a>
<a href="#" class="text-white/60 hover:text-white transition-colors">Analytics</a>
</div>
</div>
<div class="flex items-center space-x-4">
<div class="w-8 h-8 rounded-full bg-purple-500/20 flex items-center justify-center">
<i class="lucide-bell text-purple-400"></i>
</div>
<div class="w-8 h-8 rounded-full bg-purple-500/20 flex items-center justify-center">
<i class="lucide-user text-purple-400"></i>
</div>
</div>
</nav>
<!-- Neural Network Visualization -->
<div class="grid grid-cols-12 gap-8">
<!-- Left Panel -->
<div class="col-span-3">
<div class="space-y-6">
<!-- Network Status -->
<div class="bg-white/5 rounded-xl p-6 backdrop-blur-sm border border-white/10">
<h3 class="text-white font-medium mb-4">Network Status</h3>
<div class="space-y-4">
<div>
<div class="flex items-center justify-between text-sm mb-2">
<span class="text-white/60">Neural Load</span>
<span class="text-white">87%</span>
</div>
<div class="h-1 bg-white/10 rounded-full">
<div class="h-1 bg-purple-500 rounded-full" style="width: 87%"></div>
</div>
</div>
<div>
<div class="flex items-center justify-between text-sm mb-2">
<span class="text-white/60">Response Time</span>
<span class="text-white">24ms</span>
</div>
<div class="h-1 bg-white/10 rounded-full">
<div class="h-1 bg-blue-500 rounded-full" style="width: 65%"></div>
</div>
</div>
</div>
</div>
<!-- Quick Actions -->
<div class="bg-white/5 rounded-xl p-6 backdrop-blur-sm border border-white/10">
<h3 class="text-white font-medium mb-4">Quick Actions</h3>
<div class="space-y-3">
<button class="w-full bg-purple-500/20 text-purple-400 py-2 px-4 rounded-lg hover:bg-purple-500/30 transition-colors text-sm text-left">
Initialize New Node
</button>
<button class="w-full bg-blue-500/20 text-blue-400 py-2 px-4 rounded-lg hover:bg-blue-500/30 transition-colors text-sm text-left">
Run Diagnostics
</button>
<button class="w-full bg-pink-500/20 text-pink-400 py-2 px-4 rounded-lg hover:bg-pink-500/30 transition-colors text-sm text-left">
View Analytics
</button>
</div>
</div>
</div>
</div>
<!-- Center Network Visualization -->
<div class="col-span-6 bg-white/5 rounded-xl p-6 backdrop-blur-sm border border-white/10">
<div class="flex items-center justify-between mb-6">
<h2 class="text-white font-medium">Neural Network Visualization</h2>
<div class="flex items-center space-x-2">
<button class="p-2 bg-white/10 rounded-lg hover:bg-white/20 transition-colors">
<i class="lucide-zoom-in text-white/60"></i>
</button>
<button class="p-2 bg-white/10 rounded-lg hover:bg-white/20 transition-colors">
<i class="lucide-maximize-2 text-white/60"></i>
</button>
</div>
</div>
<!-- Network Graph Placeholder -->
<div class="h-[400px] flex items-center justify-center">
<div class="text-white/40">Interactive Neural Network Visualization</div>
</div>
</div>
<!-- Right Panel -->
<div class="col-span-3">
<div class="space-y-6">
<!-- Active Nodes -->
<div class="bg-white/5 rounded-xl p-6 backdrop-blur-sm border border-white/10">
<h3 class="text-white font-medium mb-4">Active Nodes</h3>
<div class="space-y-4">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-3">
<div class="w-2 h-2 rounded-full bg-green-500"></div>
<span class="text-white/80 text-sm">Primary Node</span>
</div>
<span class="text-white/60 text-sm">Active</span>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center space-x-3">
<div class="w-2 h-2 rounded-full bg-blue-500"></div>
<span class="text-white/80 text-sm">Processing Node</span>
</div>
<span class="text-white/60 text-sm">87%</span>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center space-x-3">
<div class="w-2 h-2 rounded-full bg-purple-500"></div>
<span class="text-white/80 text-sm">Memory Node</span>
</div>
<span class="text-white/60 text-sm">64%</span>
</div>
</div>
</div>
<!-- Recent Activities -->
<div class="bg-white/5 rounded-xl p-6 backdrop-blur-sm border border-white/10">
<h3 class="text-white font-medium mb-4">Recent Activities</h3>
<div class="space-y-4">
<div class="flex items-start space-x-3">
<div class="w-2 h-2 rounded-full bg-purple-500 mt-1.5"></div>
<div>
<div class="text-white/80 text-sm">New Node Connected</div>
<div class="text-white/40 text-xs">2 minutes ago</div>
</div>
</div>
<div class="flex items-start space-x-3">
<div class="w-2 h-2 rounded-full bg-blue-500 mt-1.5"></div>
<div>
<div class="text-white/80 text-sm">Processing Complete</div>
<div class="text-white/40 text-xs">15 minutes ago</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>