furabut commited on
Commit
bfcd034
·
verified ·
1 Parent(s): 765f74e

Great work

Browse files

now on top add two button AI and Vibe Coding
Ai will be default and show that landing page ,when user click on vibe coding,it should show landing pahge with different cointent related to vibe coding funnel like with vibe coding we will code you software,and decrease deleuvery time from 25 days to 5 days,and same popup will be on each button

Files changed (1) hide show
  1. index.html +192 -15
index.html CHANGED
@@ -6,9 +6,13 @@
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
  <title>DigitalMoves | AI Automation Services</title>
8
  <script src="https://cdn.tailwindcss.com"></script>
9
- <script src="https://unpkg.com/feather-icons"></script>
 
10
  <style>
11
- .gradient-text {
 
 
 
12
  background: linear-gradient(90deg, #6366F1, #EC4899);
13
  -webkit-background-clip: text;
14
  background-clip: text;
@@ -20,9 +24,23 @@
20
  </style>
21
  </head>
22
  <body class="bg-gray-900 text-white">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  <!-- Hero Section -->
24
- <section class="py-24 md:py-32">
25
- <div class="container mx-auto px-6 text-center">
26
  <div class="max-w-4xl mx-auto">
27
  <h1 class="text-4xl md:text-6xl font-bold mb-6">
28
  <span class="gradient-text">AI Automation</span> That <br>
@@ -234,7 +252,138 @@
234
  </section>
235
  <!-- Final CTA -->
236
  <section class="py-20">
 
 
 
 
 
 
237
  <div class="container mx-auto px-6 text-center">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  <h2 class="text-3xl md:text-4xl font-bold mb-6">
239
  Ready to <span class="gradient-text">10X</span> Your Productivity?
240
  </h2>
@@ -274,11 +423,11 @@
274
  </footer>
275
  <div id="contactModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
276
  <div class="bg-gray-800 p-8 rounded-xl max-w-md w-full">
277
- <h3 class="text-2xl font-bold mb-6 text-center">Get Your Free AI Audit</h3>
278
- <div class="flex flex-col space-y-4 mb-6">
279
- <button onclick="window.open('https://wa.me/447435962456', '_blank')" class="bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-lg flex items-center justify-center">
280
  <i data-feather="message-circle" class="mr-2"></i> Contact via WhatsApp
281
- </button>
282
  <div class="text-center text-gray-400">OR</div>
283
  </div>
284
  <form id="contactForm" class="space-y-4">
@@ -293,24 +442,52 @@
293
  </button>
294
  </div>
295
  </div>
296
-
297
  <script>
298
  // Initialize feather icons
299
  feather.replace();
300
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  function openContactModal() {
302
- document.getElementById('contactModal').classList.remove('hidden');
 
 
 
 
 
 
 
 
 
303
  }
304
-
305
- function closeContactModal() {
306
  document.getElementById('contactModal').classList.add('hidden');
307
  }
308
 
309
  document.getElementById('contactForm').addEventListener('submit', function(e) {
310
  e.preventDefault();
311
  // Here you would normally send the form data
312
- window.location.href = 'mailto:info@thedigitalmoves.com?subject=Free AI Audit Request';
313
- closeContactModal();
 
 
 
314
  });
315
  </script>
316
  <style>
 
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
  <title>DigitalMoves | AI Automation Services</title>
8
  <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons">
10
+ </script>
11
  <style>
12
+ #contactModal .modal-title {
13
+ display: none;
14
+ }
15
+ .gradient-text {
16
  background: linear-gradient(90deg, #6366F1, #EC4899);
17
  -webkit-background-clip: text;
18
  background-clip: text;
 
24
  </style>
25
  </head>
26
  <body class="bg-gray-900 text-white">
27
+ <!-- Toggle Section -->
28
+ <div class="container mx-auto px-6 pt-12 text-center">
29
+ <div class="inline-flex rounded-full bg-gray-800 p-1 max-w-md mx-auto">
30
+ <button id="aiToggle" class="px-6 py-2 rounded-full font-bold text-white bg-purple-600">
31
+ AI Automation
32
+ </button>
33
+ <button id="vibeToggle" class="px-6 py-2 rounded-full font-bold text-gray-300 hover:text-white transition">
34
+ Vibe Coding
35
+ </button>
36
+ </div>
37
+ </div>
38
+
39
+ <!-- AI Content (default visible) -->
40
+ <div id="aiContent">
41
  <!-- Hero Section -->
42
+ <section class="py-12 md:py-20">
43
+ <div class="container mx-auto px-6 text-center">
44
  <div class="max-w-4xl mx-auto">
45
  <h1 class="text-4xl md:text-6xl font-bold mb-6">
46
  <span class="gradient-text">AI Automation</span> That <br>
 
252
  </section>
253
  <!-- Final CTA -->
254
  <section class="py-20">
255
+ </div>
256
+
257
+ <!-- Vibe Coding Content (hidden by default) -->
258
+ <div id="vibeContent" class="hidden">
259
+ <!-- Hero Section -->
260
+ <section class="py-12 md:py-20">
261
  <div class="container mx-auto px-6 text-center">
262
+ <div class="max-w-4xl mx-auto">
263
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">
264
+ <span class="gradient-text">Vibe Coding</span> That <br>
265
+ <span class="gradient-text">5X</span> Your Development Speed
266
+ </h1>
267
+ <p class="text-xl md:text-2xl text-gray-300 mb-10">
268
+ Stop waiting weeks for development. We deliver high-quality software in 5 days instead of 25.
269
+ </p>
270
+ <div class="flex flex-col md:flex-row justify-center gap-4">
271
+ <button onclick="openContactModal()" class="bg-gradient-to-r from-purple-600 to-pink-500 px-8 py-4 rounded-full font-bold text-lg cta-button hover:opacity-90 transition">
272
+ Get Your Free Consultation
273
+ </button>
274
+ </div>
275
+ <div class="mt-12">
276
+ <div class="relative inline-block">
277
+ <img src="http://static.photos/technology/1024x576/10" alt="Vibe Coding" class="rounded-xl w-full max-w-4xl border-2 border-purple-500/30">
278
+ <div class="absolute -bottom-4 -right-4 bg-purple-600 px-4 py-1 rounded-full font-bold text-sm">
279
+ 🚀 5-Day Delivery
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+ </div>
285
+ </section>
286
+
287
+ <!-- Problem Section -->
288
+ <section class="py-16 bg-gray-800">
289
+ <div class="container mx-auto px-6">
290
+ <div class="text-center mb-12">
291
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">
292
+ The Problem We <span class="gradient-text">Solve</span>
293
+ </h2>
294
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
295
+ Businesses waste weeks waiting for software development that could be done in days
296
+ </p>
297
+ </div>
298
+
299
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
300
+ <div class="text-center p-6">
301
+ <div class="bg-purple-600/10 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-4 mx-auto">
302
+ <i data-feather="clock" class="text-purple-400"></i>
303
+ </div>
304
+ <h3 class="text-xl font-bold mb-3">Slow Delivery</h3>
305
+ <p class="text-gray-400">
306
+ Traditional development takes 25+ days for simple projects
307
+ </p>
308
+ </div>
309
+
310
+ <div class="text-center p-6">
311
+ <div class="bg-pink-600/10 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-4 mx-auto">
312
+ <i data-feather="dollar-sign" class="text-pink-400"></i>
313
+ </div>
314
+ <h3 class="text-xl font-bold mb-3">High Costs</h3>
315
+ <p class="text-gray-400">
316
+ Paying for extended development timelines and revisions
317
+ </p>
318
+ </div>
319
+
320
+ <div class="text-center p-6">
321
+ <div class="bg-blue-600/10 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-4 mx-auto">
322
+ <i data-feather="alert-triangle" class="text-blue-400"></i>
323
+ </div>
324
+ <h3 class="text-xl font-bold mb-3">Quality Issues</h3>
325
+ <p class="text-gray-400">
326
+ Rushed projects with bugs and missing features
327
+ </p>
328
+ </div>
329
+ </div>
330
+
331
+ <div class="text-center mt-12">
332
+ <button onclick="openContactModal()" class="bg-gradient-to-r from-purple-600 to-pink-500 px-8 py-4 rounded-full font-bold text-lg cta-button hover:opacity-90 transition">
333
+ Get Your Free Consultation
334
+ </button>
335
+ </div>
336
+ </div>
337
+ </section>
338
+
339
+ <!-- Solution Section -->
340
+ <section class="py-20">
341
+ <div class="container mx-auto px-6">
342
+ <div class="text-center mb-16">
343
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">
344
+ Our <span class="gradient-text">Vibe Coding</span> Solution
345
+ </h2>
346
+ </div>
347
+
348
+ <div class="flex flex-col md:flex-row items-center gap-12">
349
+ <div class="md:w-1/2">
350
+ <img src="http://static.photos/technology/640x360/20" alt="Vibe Coding" class="rounded-xl w-full">
351
+ </div>
352
+ <div class="md:w-1/2">
353
+ <h3 class="text-2xl font-bold mb-6">
354
+ We deliver high-quality software in 5 days instead of 25
355
+ </h3>
356
+ <ul class="space-y-4 mb-8">
357
+ <li class="flex items-start">
358
+ <div class="bg-purple-600/10 p-2 rounded-full mr-4">
359
+ <i data-feather="check" class="text-purple-400"></i>
360
+ </div>
361
+ <span class="text-gray-300">80% faster delivery than traditional dev</span>
362
+ </li>
363
+ <li class="flex items-start">
364
+ <div class="bg-pink-600/10 p-2 rounded-full mr-4">
365
+ <i data-feather="check" class="text-pink-400"></i>
366
+ </div>
367
+ <span class="text-gray-300">Bug-free code with lifetime support</span>
368
+ </li>
369
+ <li class="flex items-start">
370
+ <div class="bg-blue-600/10 p-2 rounded-full mr-4">
371
+ <i data-feather="check" class="text-blue-400"></i>
372
+ </div>
373
+ <span class="text-gray-300">Fixed pricing with no hidden costs</span>
374
+ </li>
375
+ </ul>
376
+ <button onclick="openContactModal()" class="bg-gradient-to-r from-purple-600 to-pink-500 px-8 py-4 rounded-full font-bold text-lg cta-button hover:opacity-90 transition">
377
+ Get Started Now
378
+ </button>
379
+ </div>
380
+ </div>
381
+ </div>
382
+ </section>
383
+
384
+ <!-- Final CTA -->
385
+ <section class="py-20">
386
+ <div class="container mx-auto px-6 text-center">
387
  <h2 class="text-3xl md:text-4xl font-bold mb-6">
388
  Ready to <span class="gradient-text">10X</span> Your Productivity?
389
  </h2>
 
423
  </footer>
424
  <div id="contactModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
425
  <div class="bg-gray-800 p-8 rounded-xl max-w-md w-full">
426
+ <h3 id="modalTitle" class="text-2xl font-bold mb-6 text-center">Get Your Free AI Audit</h3>
427
+ <div class="flex flex-col space-y-4 mb-6">
428
+ <button onclick="window.open('https://wa.me/447435962456', '_blank')" class="bg-green-600 hover:bg-green-700 text-white px-6 py-3 rounded-lg flex items-center justify-center">
429
  <i data-feather="message-circle" class="mr-2"></i> Contact via WhatsApp
430
+ </button>
431
  <div class="text-center text-gray-400">OR</div>
432
  </div>
433
  <form id="contactForm" class="space-y-4">
 
442
  </button>
443
  </div>
444
  </div>
 
445
  <script>
446
  // Initialize feather icons
447
  feather.replace();
448
+
449
+ // Toggle between AI and Vibe Coding sections
450
+ document.getElementById('aiToggle').addEventListener('click', function() {
451
+ document.getElementById('aiContent').classList.remove('hidden');
452
+ document.getElementById('vibeContent').classList.add('hidden');
453
+ document.getElementById('aiToggle').classList.add('bg-purple-600', 'text-white');
454
+ document.getElementById('aiToggle').classList.remove('text-gray-300');
455
+ document.getElementById('vibeToggle').classList.remove('bg-purple-600', 'text-white');
456
+ document.getElementById('vibeToggle').classList.add('text-gray-300');
457
+ });
458
+
459
+ document.getElementById('vibeToggle').addEventListener('click', function() {
460
+ document.getElementById('vibeContent').classList.remove('hidden');
461
+ document.getElementById('aiContent').classList.add('hidden');
462
+ document.getElementById('vibeToggle').classList.add('bg-purple-600', 'text-white');
463
+ document.getElementById('vibeToggle').classList.remove('text-gray-300');
464
+ document.getElementById('aiToggle').classList.remove('bg-purple-600', 'text-white');
465
+ document.getElementById('aiToggle').classList.add('text-gray-300');
466
+ });
467
  function openContactModal() {
468
+ const modal = document.getElementById('contactModal');
469
+ const title = document.getElementById('modalTitle');
470
+
471
+ if (document.getElementById('vibeContent').classList.contains('hidden')) {
472
+ title.textContent = 'Get Your Free AI Audit';
473
+ } else {
474
+ title.textContent = 'Get Your Free Consultation';
475
+ }
476
+
477
+ modal.classList.remove('hidden');
478
  }
479
+ function closeContactModal() {
 
480
  document.getElementById('contactModal').classList.add('hidden');
481
  }
482
 
483
  document.getElementById('contactForm').addEventListener('submit', function(e) {
484
  e.preventDefault();
485
  // Here you would normally send the form data
486
+ const subject = document.getElementById('vibeContent').classList.contains('hidden')
487
+ ? 'Free AI Audit Request'
488
+ : 'Vibe Coding Consultation';
489
+ window.location.href = `mailto:info@thedigitalmoves.com?subject=${subject}`;
490
+ closeContactModal();
491
  });
492
  </script>
493
  <style>