yourgui commited on
Commit
ffe653b
·
verified ·
1 Parent(s): 8f1ce1a

create the user flow now - get started, it's free. - and then have VAI ask "what do you want to automate?" and below a script to paste in chatgpt to ask "make a recap of all my tasks" - ideally if you have a project folder with all your relevant chats.

Browse files
Files changed (3) hide show
  1. dashboard.html +411 -0
  2. index.html +12 -12
  3. onboarding.html +174 -0
dashboard.html ADDED
@@ -0,0 +1,411 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Your VAI Dashboard</title>
7
+ <link rel="icon" type="image/x-icon" href="https://static.photos/technology/200x200/42">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
11
+ <style>
12
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
13
+
14
+ .glass-panel {
15
+ backdrop-filter: blur(16px);
16
+ background: rgba(16, 21, 27, 0.7);
17
+ border: 1px solid rgba(255, 255, 255, 0.08);
18
+ }
19
+
20
+ .agent-card {
21
+ transition: all 0.3s ease;
22
+ }
23
+
24
+ .agent-card:hover {
25
+ transform: translateY(-2px);
26
+ box-shadow: 0 10px 25px -5px rgba(63, 242, 140, 0.1);
27
+ }
28
+
29
+ .pulse-active {
30
+ animation: pulse 2s infinite;
31
+ }
32
+
33
+ @keyframes pulse {
34
+ 0% { box-shadow: 0 0 0 0 rgba(63, 242, 140, 0.4); }
35
+ 70% { box-shadow: 0 0 0 10px rgba(63, 242, 140, 0); }
36
+ 100% { box-shadow: 0 0 0 0 rgba(63, 242, 140, 0); }
37
+ }
38
+
39
+ .progress-bar {
40
+ background: #0ea5e9;
41
+ }
42
+
43
+ .timeline-item:not(:last-child)::after {
44
+ content: '';
45
+ position: absolute;
46
+ left: 8px;
47
+ top: 24px;
48
+ height: calc(100% - 24px);
49
+ width: 2px;
50
+ background: rgba(255, 255, 255, 0.1);
51
+ }
52
+ </style>
53
+ </head>
54
+ <body class="bg-dark-900 text-gray-200 font-sans min-h-screen overflow-x-hidden" id="vanta-bg">
55
+ <!-- Vanta.js Background -->
56
+ <script>
57
+ VANTA.GLOBE({
58
+ el: "#vanta-bg",
59
+ mouseControls: true,
60
+ touchControls: true,
61
+ gyroControls: false,
62
+ minHeight: 200.00,
63
+ minWidth: 200.00,
64
+ scale: 1.00,
65
+ scaleMobile: 1.00,
66
+ color: "#3FF28C",
67
+ backgroundColor: "#10151B",
68
+ size: 0.8
69
+ })
70
+ </script>
71
+
72
+ <!-- Main Container -->
73
+ <div class="container mx-auto px-4 py-8 max-w-7xl">
74
+ <!-- Header -->
75
+ <header class="flex justify-between items-center mb-12">
76
+ <div class="flex items-center space-x-2">
77
+ <img src="https://static.photos/technology/200x200/42" alt="VAI Logo" class="w-10 h-10 rounded-lg">
78
+ <h1 class="text-2xl font-bold text-primary-500">VAI</h1>
79
+ </div>
80
+
81
+ <nav class="hidden md:flex space-x-6">
82
+ <a href="#" class="hover:text-primary-500 transition">Dashboard</a>
83
+ <a href="#" class="hover:text-primary-500 transition">Agents</a>
84
+ <a href="#" class="hover:text-primary-500 transition">Integrations</a>
85
+ <a href="#" class="hover:text-primary-500 transition">Community</a>
86
+ </nav>
87
+
88
+ <div class="flex items-center space-x-4">
89
+ <button class="p-2 rounded-full bg-dark-800 hover:bg-dark-700 transition">
90
+ <i data-feather="settings"></i>
91
+ </button>
92
+ <button class="px-4 py-2 bg-primary-500 hover:bg-primary-600 text-dark-900 rounded-lg font-medium transition flex items-center space-x-2">
93
+ <i data-feather="plus"></i>
94
+ <span>New Agent</span>
95
+ </button>
96
+ </div>
97
+ </header>
98
+
99
+ <!-- Welcome Banner -->
100
+ <section class="glass-panel rounded-2xl p-6 mb-8 flex items-center justify-between">
101
+ <div>
102
+ <h2 class="text-xl font-bold mb-1">Welcome to your VAI Dashboard</h2>
103
+ <p class="text-gray-400">Your virtual team is ready to work. Here's what we've automated for you so far.</p>
104
+ </div>
105
+ <button class="px-4 py-2 bg-dark-800 hover:bg-dark-700 rounded-lg transition flex items-center">
106
+ <i data-feather="help-circle" class="mr-2"></i>
107
+ <span>Quick Tour</span>
108
+ </button>
109
+ </section>
110
+
111
+ <!-- Stats Overview -->
112
+ <section class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-8">
113
+ <div class="glass-panel rounded-xl p-4">
114
+ <div class="flex justify-between items-start">
115
+ <div>
116
+ <p class="text-sm text-gray-400 mb-1">Time Saved</p>
117
+ <h3 class="text-2xl font-bold">5.2 hours</h3>
118
+ </div>
119
+ <div class="bg-primary-500/20 p-2 rounded-lg">
120
+ <i data-feather="clock" class="text-primary-500"></i>
121
+ </div>
122
+ </div>
123
+ <div class="h-1 bg-gray-800 rounded-full mt-2 overflow-hidden">
124
+ <div class="bg-primary-500 h-full rounded-full w-3/4"></div>
125
+ </div>
126
+ </div>
127
+
128
+ <div class="glass-panel rounded-xl p-4">
129
+ <div class="flex justify-between items-start">
130
+ <div>
131
+ <p class="text-sm text-gray-400 mb-1">Tasks Completed</p>
132
+ <h3 class="text-2xl font-bold">14/18</h3>
133
+ </div>
134
+ <div class="bg-green-400/20 p-2 rounded-lg">
135
+ <i data-feather="check-circle" class="text-green-400"></i>
136
+ </div>
137
+ </div>
138
+ <div class="h-1 bg-gray-800 rounded-full mt-2 overflow-hidden">
139
+ <div class="bg-green-400 h-full rounded-full w-3/4"></div>
140
+ </div>
141
+ </div>
142
+
143
+ <div class="glass-panel rounded-xl p-4">
144
+ <div class="flex justify-between items-start">
145
+ <div>
146
+ <p class="text-sm text-gray-400 mb-1">Active Agents</p>
147
+ <h3 class="text-2xl font-bold">5</h3>
148
+ </div>
149
+ <div class="bg-blue-400/20 p-2 rounded-lg">
150
+ <i data-feather="cpu" class="text-blue-400"></i>
151
+ </div>
152
+ </div>
153
+ <div class="h-1 bg-gray-800 rounded-full mt-2 overflow-hidden">
154
+ <div class="bg-blue-400 h-full rounded-full w-full"></div>
155
+ </div>
156
+ </div>
157
+
158
+ <div class="glass-panel rounded-xl p-4">
159
+ <div class="flex justify-between items-start">
160
+ <div>
161
+ <p class="text-sm text-gray-400 mb-1">Weekly Efficiency</p>
162
+ <h3 class="text-2xl font-bold">84%</h3>
163
+ </div>
164
+ <div class="bg-purple-500/20 p-2 rounded-lg">
165
+ <i data-feather="activity" class="text-purple-500"></i>
166
+ </div>
167
+ </div>
168
+ <div class="h-1 bg-gray-800 rounded-full mt-2 overflow-hidden">
169
+ <div class="bg-purple-500 h-full rounded-full w-4/5"></div>
170
+ </div>
171
+ </div>
172
+ </section>
173
+
174
+ <!-- Agent Grid -->
175
+ <section class="mb-8">
176
+ <div class="flex justify-between items-center mb-6">
177
+ <h3 class="text-xl font-bold">Your Agent Team</h3>
178
+ <button class="px-4 py-2 bg-dark-800 hover:bg-dark-700 rounded-lg transition flex items-center">
179
+ <i data-feather="plus" class="mr-2"></i>
180
+ <span>Add Agent</span>
181
+ </button>
182
+ </div>
183
+
184
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
185
+ <!-- Agent Card 1 -->
186
+ <div class="agent-card glass-panel rounded-xl p-4 border border-gray-800 hover:border-primary-500/50 transition">
187
+ <div class="flex justify-between items-start mb-3">
188
+ <div class="flex items-center space-x-3">
189
+ <div class="w-10 h-10 rounded-full bg-gradient-to-br from-primary-500 to-secondary-500 flex items-center justify-center">
190
+ <i data-feather="cpu" class="text-dark-900"></i>
191
+ </div>
192
+ <div>
193
+ <h4 class="font-medium">VAI Orchestrator</h4>
194
+ <span class="text-xs text-primary-500 flex items-center">
195
+ <span class="w-2 h-2 rounded-full bg-primary-500 mr-1"></span>
196
+ Operational
197
+ </span>
198
+ </div>
199
+ </div>
200
+ <button class="text-gray-400 hover:text-primary-500 transition">
201
+ <i data-feather="more-vertical"></i>
202
+ </button>
203
+ </div>
204
+ <p class="text-sm text-gray-300 mb-3">Coordinating 5 agents for your workflow</p>
205
+ <div class="h-1.5 bg-gray-800 rounded-full mb-3 overflow-hidden">
206
+ <div class="progress-bar h-full rounded-full w-3/4"></div>
207
+ </div>
208
+ <div class="flex justify-between text-xs text-gray-400">
209
+ <span>ETA: 2m</span>
210
+ <span>75% complete</span>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- Agent Card 2 -->
215
+ <div class="agent-card glass-panel rounded-xl p-4 border border-gray-800 hover:border-secondary-500/50 transition pulse-active">
216
+ <div class="flex justify-between items-start mb-3">
217
+ <div class="flex items-center space-x-3">
218
+ <div class="w-10 h-10 rounded-full bg-gradient-to-br from-secondary-500 to-yellow-500 flex items-center justify-center">
219
+ <i data-feather="alert-circle" class="text-dark-900"></i>
220
+ </div>
221
+ <div>
222
+ <h4 class="font-medium">Investor Bot</h4>
223
+ <span class="text-xs text-secondary-500 flex items-center">
224
+ <span class="w-2 h-2 rounded-full bg-secondary-500 mr-1"></span>
225
+ Priority
226
+ </span>
227
+ </div>
228
+ </div>
229
+ <button class="text-gray-400 hover:text-secondary-500 transition">
230
+ <i data-feather="more-vertical"></i>
231
+ </button>
232
+ </div>
233
+ <p class="text-sm text-gray-300 mb-3">New investment opportunity requires your attention</p>
234
+ <div class="h-1.5 bg-gray-800 rounded-full mb-3 overflow-hidden">
235
+ <div class="bg-secondary-500 h-full rounded-full w-1/2"></div>
236
+ </div>
237
+ <div class="flex justify-between text-xs text-gray-400">
238
+ <span>Waiting for input</span>
239
+ <span>50% complete</span>
240
+ </div>
241
+ </div>
242
+
243
+ <!-- Agent Card 3 -->
244
+ <div class="agent-card glass-panel rounded-xl p-4 border border-gray-800 hover:border-green-400/50 transition">
245
+ <div class="flex justify-between items-start mb-3">
246
+ <div class="flex items-center space-x-3">
247
+ <div class="w-10 h-10 rounded-full bg-gradient-to-br from-green-400 to-teal-400 flex items-center justify-center">
248
+ <i data-feather="mail" class="text-dark-900"></i>
249
+ </div>
250
+ <div>
251
+ <h4 class="font-medium">Email Assistant</h4>
252
+ <span class="text-xs text-success-500 flex items-center">
253
+ <span class="w-2 h-2 rounded-full bg-success-500 mr-1"></span>
254
+ Completed
255
+ </span>
256
+ </div>
257
+ </div>
258
+ <button class="text-gray-400 hover:text-green-400 transition">
259
+ <i data-feather="more-vertical"></i>
260
+ </button>
261
+ </div>
262
+ <p class="text-sm text-gray-300 mb-3">Processed 12 important emails this morning</p>
263
+ <div class="h-1.5 bg-gray-800 rounded-full mb-3 overflow-hidden">
264
+ <div class="bg-green-400 h-full rounded-full w-full"></div>
265
+ </div>
266
+ <div class="flex justify-between text-xs text-gray-400">
267
+ <span>Task complete</span>
268
+ <span>100% complete</span>
269
+ </div>
270
+ </div>
271
+ </div>
272
+ </section>
273
+
274
+ <!-- Recent Activity -->
275
+ <section class="mb-8 glass-panel rounded-2xl p-6">
276
+ <div class="flex justify-between items-center mb-6">
277
+ <h3 class="text-xl font-bold">Recent Activity</h3>
278
+ <button class="px-4 py-2 bg-dark-800 hover:bg-dark-700 rounded-lg transition">
279
+ <i data-feather="filter" class="mr-2"></i>
280
+ <span>Filter</span>
281
+ </button>
282
+ </div>
283
+
284
+ <div class="space-y-4">
285
+ <!-- Activity Item 1 -->
286
+ <div class="timeline-item relative pl-6">
287
+ <div class="absolute left-0 top-1 w-4 h-4 rounded-full bg-primary-500 border-2 border-dark-900"></div>
288
+ <div class="flex justify-between items-start">
289
+ <div>
290
+ <h4 class="font-medium">Email Assistant completed task</h4>
291
+ <p class="text-sm text-gray-300">Processed and categorized 12 new emails</p>
292
+ <div class="flex text-xs mt-1 space-x-4">
293
+ <span class="text-primary-500">⏱️ 1.5h saved</span>
294
+ <span>🔄 5min interaction</span>
295
+ </div>
296
+ </div>
297
+ <span class="text-xs text-gray-500">15 min ago</span>
298
+ </div>
299
+ </div>
300
+
301
+ <!-- Activity Item 2 -->
302
+ <div class="timeline-item relative pl-6">
303
+ <div class="absolute left-0 top-1 w-4 h-4 rounded-full bg-blue-400 border-2 border-dark-900"></div>
304
+ <div class="flex justify-between items-start">
305
+ <div>
306
+ <h4 class="font-medium">Calendar Sync added event</h4>
307
+ <p class="text-sm text-gray-300">Scheduled "Quarterly Review" for Friday 2pm</p>
308
+ <div class="flex text-xs mt-1 space-x-4">
309
+ <span class="text-blue-400">⏱️ 30min saved</span>
310
+ <span>🔄 2min interaction</span>
311
+ </div>
312
+ </div>
313
+ <span class="text-xs text-gray-500">1 hour ago</span>
314
+ </div>
315
+ </div>
316
+
317
+ <!-- Activity Item 3 -->
318
+ <div class="timeline-item relative pl-6">
319
+ <div class="absolute left-0 top-1 w-4 h-4 rounded-full bg-secondary-500 border-2 border-dark-900"></div>
320
+ <div class="flex justify-between items-start">
321
+ <div>
322
+ <h4 class="font-medium">Investor Bot found opportunity</h4>
323
+ <p class="text-sm text-gray-300">Potential investment in AI healthcare startup</p>
324
+ <div class="flex text-xs mt-1 space-x-4">
325
+ <span class="text-secondary-500">⏱️ 3h saved</span>
326
+ <span>🔄 15min interaction</span>
327
+ </div>
328
+ </div>
329
+ <span class="text-xs text-gray-500">3 hours ago</span>
330
+ </div>
331
+ </div>
332
+ </div>
333
+ </section>
334
+
335
+ <!-- Quick Actions -->
336
+ <section class="glass-panel rounded-2xl p-6">
337
+ <h3 class="text-xl font-bold mb-6">Quick Actions</h3>
338
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-4">
339
+ <button class="p-4 border border-gray-700 hover:border-primary-500 rounded-lg transition text-left">
340
+ <div class="flex items-center mb-2">
341
+ <div class="w-8 h-8 rounded-full bg-primary-500/10 flex items-center justify-center mr-3">
342
+ <i data-feather="zap" class="text-primary-500"></i>
343
+ </div>
344
+ <h4 class="font-medium">Create New Agent</h4>
345
+ </div>
346
+ <p class="text-sm text-gray-400">Add a specialized AI to your team</p>
347
+ </button>
348
+
349
+ <button class="p-4 border border-gray-700 hover:border-blue-400 rounded-lg transition text-left">
350
+ <div class="flex items-center mb-2">
351
+ <div class="w-8 h-8 rounded-full bg-blue-400/10 flex items-center justify-center mr-3">
352
+ <i data-feather="link" class="text-blue-400"></i>
353
+ </div>
354
+ <h4 class="font-medium">Connect Tool</h4>
355
+ </div>
356
+ <p class="text-sm text-gray-400">Add a new integration to your workflow</p>
357
+ </button>
358
+
359
+ <button class="p-4 border border-gray-700 hover:border-purple-500 rounded-lg transition text-left">
360
+ <div class="flex items-center mb-2">
361
+ <div class="w-8 h-8 rounded-full bg-purple-500/10 flex items-center justify-center mr-3">
362
+ <i data-feather="bar-chart-2" class="text-purple-500"></i>
363
+ </div>
364
+ <h4 class="font-medium">View Analytics</h4>
365
+ </div>
366
+ <p class="text-sm text-gray-400">See detailed performance metrics</p>
367
+ </button>
368
+ </div>
369
+ </section>
370
+ </div>
371
+
372
+ <script>
373
+ feather.replace();
374
+
375
+ // Simulate agent activity
376
+ function simulateAgentActivity() {
377
+ const agents = document.querySelectorAll('.agent-card');
378
+ agents.forEach(agent => {
379
+ const progressBar = agent.querySelector('.h-1.5 > div');
380
+ const progressText = agent.querySelector('.text-xs:last-child span:last-child');
381
+ const status = agent.querySelector('.text-xs:first-child span:first-child');
382
+
383
+ if (!progressBar || !progressText || !status) return;
384
+
385
+ const currentWidth = parseInt(progressBar.style.width || '0');
386
+ const newWidth = Math.min(100, currentWidth + Math.floor(Math.random() * 15) + 5);
387
+
388
+ progressBar.style.width = `${newWidth}%`;
389
+ progressText.textContent = `${newWidth}% complete`;
390
+
391
+ if (newWidth >= 100) {
392
+ status.className = 'w-2 h-2 rounded-full bg-green-400 mr-1';
393
+ status.parentElement.className = 'text-xs text-green-400 flex items-center';
394
+ status.parentElement.querySelector('span:last-child').textContent = 'Complete';
395
+ } else if (newWidth >= 75) {
396
+ status.className = 'w-2 h-2 rounded-full bg-primary-500 mr-1';
397
+ status.parentElement.className = 'text-xs text-primary-500 flex items-center';
398
+ status.parentElement.querySelector('span:last-child').textContent = 'Active';
399
+ }
400
+ });
401
+
402
+ setTimeout(simulateAgentActivity, 3000);
403
+ }
404
+
405
+ // Start simulation after page load
406
+ window.addEventListener('load', () => {
407
+ setTimeout(simulateAgentActivity, 1000);
408
+ });
409
+ </script>
410
+ </body>
411
+ </html>
index.html CHANGED
@@ -120,11 +120,11 @@ secondary: {
120
  <button class="p-2 rounded-full bg-dark-800 hover:bg-dark-700 transition">
121
  <i data-feather="settings"></i>
122
  </button>
123
- <button class="px-4 py-2 bg-primary-500 hover:bg-primary-600 text-dark-900 rounded-lg font-medium transition flex items-center space-x-2">
124
- <i data-feather="plus"></i>
125
- <span>New Agent</span>
126
  </button>
127
- </div>
128
  </header>
129
 
130
  <!-- Hero Section -->
@@ -138,10 +138,10 @@ secondary: {
138
  Manage multiple AI agents simultaneously with VAI as your personal orchestrator. Stay in your genius zone while your virtual team works in perfect sync.
139
  </p>
140
  <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
141
- <button class="px-6 py-3 bg-primary-500 hover:bg-primary-600 text-dark-900 rounded-lg font-medium transition">
142
  Get Started - It's Free
143
  </button>
144
- <button class="px-6 py-3 border border-primary-500 text-primary-500 hover:bg-primary-500/10 rounded-lg font-medium transition flex items-center space-x-2">
145
  <i data-feather="play-circle"></i>
146
  <span>Watch Demo</span>
147
  </button>
@@ -594,10 +594,10 @@ secondary: {
594
  <section class="glass-panel rounded-2xl p-8 mb-16 text-center">
595
  <h3 class="text-2xl font-bold mb-4">Ready to Transform Your Workflow?</h3>
596
  <p class="text-gray-300 mb-6 max-w-2xl mx-auto">Join thousands of professionals who are already managing their AI teams with VAgents. Start your free trial today.</p>
597
- <button class="px-8 py-3 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 text-dark-900 rounded-lg font-bold transition">
598
- Get Started - Free Forever
599
- </button>
600
- </section>
601
 
602
  <!-- Footer -->
603
  <footer class="border-t border-gray-800 pt-8 pb-12">
@@ -609,8 +609,8 @@ secondary: {
609
  <div>
610
  <h4 class="text-lg font-bold mb-4">Product</h4>
611
  <ul class="space-y-2">
612
- <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Features</a></li>
613
- <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Pricing</a></li>
614
  <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Integrations</a></li>
615
  <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Roadmap</a></li>
616
  </ul>
 
120
  <button class="p-2 rounded-full bg-dark-800 hover:bg-dark-700 transition">
121
  <i data-feather="settings"></i>
122
  </button>
123
+ <button onclick="window.location.href='onboarding.html'" class="px-4 py-2 bg-primary-500 hover:bg-primary-600 text-dark-900 rounded-lg font-medium transition flex items-center space-x-2">
124
+ <i data-feather="user"></i>
125
+ <span>Get Started</span>
126
  </button>
127
+ </div>
128
  </header>
129
 
130
  <!-- Hero Section -->
 
138
  Manage multiple AI agents simultaneously with VAI as your personal orchestrator. Stay in your genius zone while your virtual team works in perfect sync.
139
  </p>
140
  <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
141
+ <button onclick="window.location.href='onboarding.html'" class="px-6 py-3 bg-primary-500 hover:bg-primary-600 text-dark-900 rounded-lg font-medium transition">
142
  Get Started - It's Free
143
  </button>
144
+ <button class="px-6 py-3 border border-primary-500 text-primary-500 hover:bg-primary-500/10 rounded-lg font-medium transition flex items-center space-x-2">
145
  <i data-feather="play-circle"></i>
146
  <span>Watch Demo</span>
147
  </button>
 
594
  <section class="glass-panel rounded-2xl p-8 mb-16 text-center">
595
  <h3 class="text-2xl font-bold mb-4">Ready to Transform Your Workflow?</h3>
596
  <p class="text-gray-300 mb-6 max-w-2xl mx-auto">Join thousands of professionals who are already managing their AI teams with VAgents. Start your free trial today.</p>
597
+ <button onclick="window.location.href='onboarding.html'" class="px-8 py-3 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 text-dark-900 rounded-lg font-bold transition">
598
+ Get Started - Free Forever
599
+ </button>
600
+ </section>
601
 
602
  <!-- Footer -->
603
  <footer class="border-t border-gray-800 pt-8 pb-12">
 
609
  <div>
610
  <h4 class="text-lg font-bold mb-4">Product</h4>
611
  <ul class="space-y-2">
612
+ <li><a href="onboarding.html" class="text-gray-400 hover:text-primary-500 transition text-sm">Get Started</a></li>
613
+ <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Pricing</a></li>
614
  <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Integrations</a></li>
615
  <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Roadmap</a></li>
616
  </ul>
onboarding.html ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Get Started with VAI</title>
7
+ <link rel="icon" type="image/x-icon" href="https://static.photos/technology/200x200/42">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <style>
11
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
12
+
13
+ .glass-panel {
14
+ backdrop-filter: blur(16px);
15
+ background: rgba(16, 21, 27, 0.7);
16
+ border: 1px solid rgba(255, 255, 255, 0.08);
17
+ }
18
+
19
+ .progress-step {
20
+ width: 2rem;
21
+ height: 2rem;
22
+ border: 2px solid #3FF28C;
23
+ border-radius: 50%;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: center;
27
+ color: #3FF28C;
28
+ font-weight: bold;
29
+ }
30
+
31
+ .progress-step.completed {
32
+ background-color: #3FF28C;
33
+ color: #10151B;
34
+ }
35
+
36
+ .progress-step.active {
37
+ background-color: rgba(63, 242, 140, 0.2);
38
+ }
39
+
40
+ .progress-connector {
41
+ height: 2px;
42
+ background-color: rgba(255, 255, 255, 0.1);
43
+ flex-grow: 1;
44
+ margin: 0 0.5rem;
45
+ }
46
+
47
+ .progress-connector.completed {
48
+ background-color: #3FF28C;
49
+ }
50
+ </style>
51
+ </head>
52
+ <body class="bg-dark-900 text-gray-200 font-sans min-h-screen flex items-center justify-center">
53
+ <div class="container mx-auto px-4 max-w-3xl">
54
+ <!-- Progress Steps -->
55
+ <div class="flex items-center justify-between mb-12">
56
+ <div class="flex items-center">
57
+ <div class="progress-step completed">1</div>
58
+ <div class="progress-connector completed"></div>
59
+ <div class="progress-step active">2</div>
60
+ <div class="progress-connector"></div>
61
+ <div class="progress-step">3</div>
62
+ </div>
63
+ </div>
64
+
65
+ <!-- Main Card -->
66
+ <div class="glass-panel rounded-2xl p-8">
67
+ <h2 class="text-3xl font-bold mb-6 text-center">What would you like to automate?</h2>
68
+ <p class="text-gray-400 mb-8 text-center">VAI can handle repetitive tasks, manage communications, analyze data, and more. Let's start with something simple.</p>
69
+
70
+ <!-- Automation Options -->
71
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-8">
72
+ <div class="p-4 border border-gray-700 hover:border-primary-500 rounded-lg cursor-pointer transition">
73
+ <div class="flex items-center mb-2">
74
+ <div class="w-8 h-8 rounded-full bg-primary-500/20 flex items-center justify-center mr-3">
75
+ <i data-feather="mail" class="text-primary-500"></i>
76
+ </div>
77
+ <h3 class="font-medium">Email Management</h3>
78
+ </div>
79
+ <p class="text-sm text-gray-400">Sort, prioritize, and respond to emails automatically</p>
80
+ </div>
81
+ <div class="p-4 border border-gray-700 hover:border-primary-500 rounded-lg cursor-pointer transition">
82
+ <div class="flex items-center mb-2">
83
+ <div class="w-8 h-8 rounded-full bg-purple-500/20 flex items-center justify-center mr-3">
84
+ <i data-feather="calendar" class="text-purple-500"></i>
85
+ </div>
86
+ <h3 class="font-medium">Meeting Scheduling</h3>
87
+ </div>
88
+ <p class="text-sm text-gray-400">Coordinate calendars and schedule meetings</p>
89
+ </div>
90
+ <div class="p-4 border border-gray-700 hover:border-primary-500 rounded-lg cursor-pointer transition">
91
+ <div class="flex items-center mb-2">
92
+ <div class="w-8 h-8 rounded-full bg-blue-400/20 flex items-center justify-center mr-3">
93
+ <i data-feather="trending-up" class="text-blue-400"></i>
94
+ </div>
95
+ <h3 class="font-medium">Data Analysis</h3>
96
+ </div>
97
+ <p class="text-sm text-gray-400">Process and visualize your data automatically</p>
98
+ </div>
99
+ <div class="p-4 border border-gray-700 hover:border-primary-500 rounded-lg cursor-pointer transition">
100
+ <div class="flex items-center mb-2">
101
+ <div class="w-8 h-8 rounded-full bg-yellow-500/20 flex items-center justify-center mr-3">
102
+ <i data-feather="clipboard" class="text-yellow-500"></i>
103
+ </div>
104
+ <h3 class="font-medium">Task Management</h3>
105
+ </div>
106
+ <p class="text-sm text-gray-400">Organize and prioritize your to-do list</p>
107
+ </div>
108
+ </div>
109
+
110
+ <!-- Custom Prompt -->
111
+ <div class="mb-6">
112
+ <label class="block text-sm font-medium mb-2">Or describe what you'd like to automate:</label>
113
+ <textarea class="w-full bg-dark-800 border border-gray-700 rounded-lg px-4 py-3 focus:outline-none focus:ring-1 focus:ring-primary-500" rows="3" placeholder="e.g. Summarize all my meeting notes and extract action items"></textarea>
114
+ </div>
115
+
116
+ <!-- ChatGPT Script -->
117
+ <div class="mb-8">
118
+ <div class="flex justify-between items-center mb-2">
119
+ <label class="block text-sm font-medium">Quick Start: Try this in ChatGPT</label>
120
+ <button class="text-xs bg-primary-500/10 text-primary-500 px-2 py-1 rounded" onclick="copyScript()">
121
+ <i data-feather="copy" class="w-3 h-3 mr-1 inline"></i> Copy
122
+ </button>
123
+ </div>
124
+ <div class="bg-dark-800 p-4 rounded-lg border border-gray-700">
125
+ <code class="text-sm text-gray-300">
126
+ "I have a project folder with multiple chat transcripts. Please analyze all conversations and provide:
127
+ <br>1. Key discussion points summarized
128
+ <br>2. Action items with owners
129
+ <br>3. Important decisions made
130
+ <br>4. Next steps with deadlines"
131
+ </code>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Navigation Buttons -->
136
+ <div class="flex justify-between">
137
+ <button class="px-6 py-2 border border-gray-600 text-gray-300 hover:bg-gray-800 rounded-lg transition" onclick="window.location.href='index.html'">
138
+ Skip for now
139
+ </button>
140
+ <button class="px-6 py-2 bg-primary-500 hover:bg-primary-600 text-dark-900 font-medium rounded-lg transition flex items-center" onclick="window.location.href='dashboard.html'">
141
+ Continue to Dashboard
142
+ <i data-feather="arrow-right" class="ml-2"></i>
143
+ </button>
144
+ </div>
145
+ </div>
146
+ </div>
147
+
148
+ <script>
149
+ feather.replace();
150
+
151
+ function copyScript() {
152
+ const script = `"I have a project folder with multiple chat transcripts. Please analyze all conversations and provide:
153
+ 1. Key discussion points summarized
154
+ 2. Action items with owners
155
+ 3. Important decisions made
156
+ 4. Next steps with deadlines"`;
157
+
158
+ navigator.clipboard.writeText(script);
159
+
160
+ // Show copied notification
161
+ const btn = event.target.closest('button');
162
+ if (btn) {
163
+ const originalHtml = btn.innerHTML;
164
+ btn.innerHTML = '<i data-feather="check" class="w-3 h-3 mr-1 inline"></i> Copied';
165
+ feather.replace();
166
+ setTimeout(() => {
167
+ btn.innerHTML = originalHtml;
168
+ feather.replace();
169
+ }, 2000);
170
+ }
171
+ }
172
+ </script>
173
+ </body>
174
+ </html>