-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2323 lines (2168 loc) · 144 KB
/
index.html
File metadata and controls
2323 lines (2168 loc) · 144 KB
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C65PL6K5MY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-C65PL6K5MY');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Testron AI</title>
<!-- Update these meta tags for better social sharing -->
<meta name="description" content="Transform natural language into production-ready test code with AI-powered automation">
<!-- Open Graph tags for LinkedIn, Facebook, etc -->
<meta property="og:title" content="Testron AI - Test Automation Platform">
<meta property="og:description" content="Transform natural language into production-ready test code with AI-powered automation">
<meta property="og:image" content="https://testronai.com/assets/social-preview.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:url" content="https://testronai.com">
<meta property="og:type" content="website">
<!-- Twitter Card tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Testron AI - Test Automation Platform">
<meta name="twitter:description" content="Transform natural language into production-ready test code with AI-powered automation">
<meta name="twitter:image" content="https://testronai.com/assets/social-preview.png">
<meta name="theme-color" content="#ffffff">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="robots" content="index, follow">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/apple-touch-icon.png">
<link rel="manifest" href="./assets/site.webmanifest">
<!-- Performance optimization: Preload critical resources -->
<link rel="preload" href="https://cdn.tailwindcss.com" as="script">
<link rel="preload"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap"
as="style">
<!-- {headerScripts} -->
<!-- Core CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#f8f8f8',
100: '#e8e8e8',
200: '#d3d3d3',
300: '#a3a3a3',
400: '#737373',
500: '#525252',
600: '#404040',
700: '#262626',
800: '#171717',
900: '#0a0a0a',
950: '#030303',
},
secondary: {
50: '#f8f8f8',
100: '#e8e8e8',
200: '#d3d3d3',
300: '#a3a3a3',
400: '#737373',
500: '#525252',
600: '#404040',
700: '#262626',
800: '#171717',
900: '#0a0a0a',
950: '#030303',
},
accent: {
50: '#f8f8f8',
100: '#e8e8e8',
200: '#d3d3d3',
300: '#a3a3a3',
400: '#737373',
500: '#525252',
600: '#404040',
700: '#262626',
800: '#171717',
900: '#0a0a0a',
950: '#030303',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'],
heading: ['Montserrat', 'Inter', 'system-ui', 'sans-serif'],
},
spacing: {
'18': '4.5rem',
'22': '5.5rem',
'30': '7.5rem',
},
maxWidth: {
'8xl': '88rem',
'9xl': '96rem',
},
animation: {
'fade-in': 'fadeIn 0.5s ease-in',
'fade-out': 'fadeOut 0.5s ease-out',
'slide-up': 'slideUp 0.5s ease-out',
'slide-down': 'slideDown 0.5s ease-out',
'slide-left': 'slideLeft 0.5s ease-out',
'slide-right': 'slideRight 0.5s ease-out',
'scale-in': 'scaleIn 0.5s ease-out',
'scale-out': 'scaleOut 0.5s ease-out',
'spin-slow': 'spin 3s linear infinite',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'bounce-slow': 'bounce 3s infinite',
'float': 'float 3s ease-in-out infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeOut: {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
slideUp: {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
slideDown: {
'0%': { transform: 'translateY(-20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
slideLeft: {
'0%': { transform: 'translateX(20px)', opacity: '0' },
'100%': { transform: 'translateX(0)', opacity: '1' },
},
slideRight: {
'0%': { transform: 'translateX(-20px)', opacity: '0' },
'100%': { transform: 'translateX(0)', opacity: '1' },
},
scaleIn: {
'0%': { transform: 'scale(0.9)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
scaleOut: {
'0%': { transform: 'scale(1.1)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
},
aspectRatio: {
'portrait': '3/4',
'landscape': '4/3',
'ultrawide': '21/9',
},
},
},
variants: {
extend: {
opacity: ['disabled'],
cursor: ['disabled'],
backgroundColor: ['active', 'disabled'],
textColor: ['active', 'disabled'],
},
},
}
</script>
<!-- Utilities and Components -->
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/alpinejs/3.13.3/cdn.min.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/apexcharts/3.45.1/apexcharts.min.js"></script>
<!-- Optimized Font Loading -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap"
rel="stylesheet">
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Base Styles -->
<style>
* {
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
}
/* Webkit browsers like Chrome, Safari, newer Edge */
*::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 0px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #666;
}
/* Remove tap highlight on mobile */
* {
-webkit-tap-highlight-color: transparent;
}
/* Improve text rendering */
body {
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Focus outline styles */
:focus-visible {
outline: 2px solid currentColor;
outline-offset: 2px;
}
/* Print styles */
@media print {
.no-print {
display: none !important;
}
a[href]:after {
content: " (" attr(href) ")";
}
}
</style>
<!-- Enhanced Image Handler -->
<script>
document.addEventListener('DOMContentLoaded', () => {
const imageObserver = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const img = entry.target;
if (img.dataset.src) {
const tempImage = new Image();
tempImage.onload = () => {
img.src = img.dataset.src;
img.classList.remove('opacity-0');
img.classList.add('opacity-100');
};
tempImage.src = img.dataset.src;
img.removeAttribute('data-src');
observer.unobserve(img);
}
}
});
}, {
rootMargin: '50px 0px',
threshold: 0.01
});
const loadImage = (img) => {
if ('loading' in HTMLImageElement.prototype) {
img.loading = 'lazy';
}
img.classList.add('transition-opacity', 'duration-300', 'opacity-0');
img.onerror = () => {
const width = img.getAttribute('width') || img.clientWidth || 300;
const height = img.getAttribute('height') || img.clientHeight || 200;
img.src = `https://placehold.co/${width}x${height}/DEDEDE/555555?text=Image+Unavailable`;
img.alt = 'Image unavailable';
img.classList.remove('opacity-0');
img.classList.add('opacity-100', 'error-image');
};
if (img.dataset.src) {
imageObserver.observe(img);
} else {
img.classList.remove('opacity-0');
img.classList.add('opacity-100');
}
};
document.querySelectorAll('img[data-src], img:not([data-src])').forEach(loadImage);
// Watch for dynamically added images
new MutationObserver((mutations) => {
mutations.forEach(mutation => {
mutation.addedNodes.forEach(node => {
if (node.nodeType === 1) {
if (node.tagName === 'IMG') {
loadImage(node);
}
node.querySelectorAll('img').forEach(loadImage);
}
});
});
}).observe(document.body, {
childList: true,
subtree: true
});
});
// Performance monitoring
if ('performance' in window && 'PerformanceObserver' in window) {
// Create performance observer
const observer = new PerformanceObserver((list) => {
const entries = list.getEntries();
entries.forEach((entry) => {
if (entry.entryType === 'largest-contentful-paint') {
// console.log(`LCP: ${entry.startTime}ms`);
}
if (entry.entryType === 'first-input') {
// console.log(`FID: ${entry.processingStart - entry.startTime}ms`);
}
if (entry.entryType === 'layout-shift') {
// console.log(`CLS: ${entry.value}`);
}
});
});
// Observe performance metrics
observer.observe({ entryTypes: ['largest-contentful-paint', 'first-input', 'layout-shift'] });
// Log basic performance metrics
window.addEventListener('load', () => {
const timing = performance.getEntriesByType('navigation')[0];
console.log({
'DNS Lookup': timing.domainLookupEnd - timing.domainLookupStart,
'TCP Connection': timing.connectEnd - timing.connectStart,
'DOM Content Loaded': timing.domContentLoadedEventEnd - timing.navigationStart,
'Page Load': timing.loadEventEnd - timing.navigationStart
});
});
}
// Handle offline/online status
window.addEventListener('online', () => {
document.body.classList.remove('offline');
console.log('Connection restored');
});
window.addEventListener('offline', () => {
document.body.classList.add('offline');
console.log('Connection lost');
});
</script>
</head>
<body class="antialiased text-gray-800 min-h-screen flex flex-col">
<!-- Skip to main content link for accessibility -->
<a href="#main-content"
class="sr-only focus:not-sr-only focus:absolute focus:top-0 focus:left-0 focus:z-50 focus:p-4 focus:bg-white focus:text-black">
Skip to main content
</a>
<!-- Header -->
<header class="relative z-50 bg-white dark:bg-gray-900">
<!-- Header content goes here -->
</header>
<!-- Main content area -->
<main id="main-content" class="flex-1 relative ">
<!-- Content will be injected here -->
</main>
<!-- {bodyScripts} -->
</body>
</html>
<element id="c931534c-ab41-432f-9b46-c8b2dc534572" data-section-id="c931534c-ab41-432f-9b46-c8b2dc534572">
<htmlCode>
<div id="root">
<section id="header" class="bg-neutral-900 relative">
<nav class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-4">
<!-- Animated Logo Container -->
<div class="animate__animated animate__pulse animate__infinite animate__slower">
<img src="./assets/logo.png"
alt="Testron AI Logo"
class="h-12 md:h-16 w-auto transform hover:scale-110 transition-transform duration-300 cursor-pointer"
style="filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));">
</div>
<!-- Brand Name (optional) -->
<span class="text-3xl md:text-4xl font-extrabold bg-gradient-to-r from-blue-500 to-purple-600 text-transparent bg-clip-text tracking-tight">
Testron AI
</span>
</div>
<!-- Desktop Navigation -->
<div class="hidden md:flex items-center space-x-8">
<a href="#features" class="text-gray-300 hover:text-white transition">Features</a>
<a href="#products" class="text-gray-300 hover:text-white transition">Products</a>
<a href="#pricing" class="text-gray-300 hover:text-white transition">Pricing</a>
<a href="#testimonials" class="hidden text-gray-300 hover:text-white transition">Testimonials</a>
<a href="#contact" class="text-gray-300 hover:text-white transition">Contact</a>
<a href="https://chromewebstore.google.com/detail/testron-testing-co-pilot/ipbkoaadeihckgcdnbnahnooojmjoffm?authuser=0&hl=en"
class="bg-blue-600 text-white px-6 py-2 rounded-full hover:bg-blue-700 transition animate__animated animate__pulse animate__infinite"
target="_blank" rel="noopener noreferrer">
Download
</a>
</div>
<!-- Mobile Navigation Button -->
<div class="md:hidden">
<button id="menu-btn" class="hamburger focus:outline-none">
<span class="hamburger-top bg-white"></span>
<span class="hamburger-middle bg-white"></span>
<span class="hamburger-bottom bg-white"></span>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu"
class="hidden md:hidden absolute top-16 left-0 right-0 bg-neutral-900 p-6 space-y-4 animate__animated animate__fadeIn">
<a href="#features" class="block text-gray-300 hover:text-white transition">Features</a>
<a href="#products" class="block text-gray-300 hover:text-white transition">Products</a>
<a href="#pricing" class="block text-gray-300 hover:text-white transition">Pricing</a>
<a href="#testimonials" class="block text-gray-300 hover:text-white transition">Testimonials</a>
<a href="#contact" class="block text-gray-300 hover:text-white transition">Contact</a>
<a href="#downloadCTA"
class="block bg-blue-600 text-white px-6 py-2 rounded-full hover:bg-blue-700 transition text-center">
Download
</a>
</div>
</nav>
<style>
.hamburger {
cursor: pointer;
width: 24px;
height: 24px;
position: relative;
}
.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
position: absolute;
width: 24px;
height: 2px;
top: 0;
left: 0;
transition: all 0.5s;
}
.hamburger-middle {
transform: translateY(7px);
}
.hamburger-bottom {
transform: translateY(14px);
}
.open .hamburger-top {
transform: rotate(45deg) translateY(6px) translateX(6px);
}
.open .hamburger-middle {
display: none;
}
.open .hamburger-bottom {
transform: rotate(-45deg) translateY(6px) translateX(-6px);
}
</style>
<script>
const btn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
btn.addEventListener('click', () => {
btn.classList.toggle('open');
mobileMenu.classList.toggle('hidden');
});
// Close mobile menu when clicking outside
document.addEventListener('click', (e) => {
if (!btn.contains(e.target) && !mobileMenu.contains(e.target)) {
btn.classList.remove('open');
mobileMenu.classList.add('hidden');
}
});
// Close mobile menu when window is resized
window.addEventListener('resize', () => {
if (window.innerWidth >= 768) {
btn.classList.remove('open');
mobileMenu.classList.add('hidden');
}
});
</script>
</section>
</div>
</htmlCode>
</element>
<element id="730451d5-6f02-4dbd-80fc-a4daeb01997f" data-section-id="730451d5-6f02-4dbd-80fc-a4daeb01997f"></element>
<htmlCode>
<div id="root">
<section id="hero" class="bg-neutral-900 min-h-[70vh] flex items-center relative overflow-hidden">
<!-- Background gradient effect -->
<div class="absolute inset-0 bg-gradient-to-br from-blue-600/20 to-purple-600/20"></div>
<!-- Animated background particles -->
<div id="particles-js" class="absolute inset-0"></div>
<div class="container mx-auto px-4 sm:px-6 py-8 sm:py-12 relative z-10">
<div class="grid lg:grid-cols-2 gap-8 lg:gap-12 items-center">
<div class="space-y-6 sm:space-y-8 pr-4 sm:pr-6">
<h1 class="text-3xl sm:text-4xl md:text-6xl font-bold text-white animate__animated animate__fadeInUp">
Transform Test Automation with
<span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-500">
AI Power
</span>
</h1>
<p class="text-lg sm:text-xl text-gray-300 animate__animated animate__fadeInUp animate__delay-1s">
Create, maintain, and scale your test automation with unprecedented efficiency.
Transform natural language into production-ready test code across multiple frameworks.
</p>
<div class="flex flex-col sm:flex-row gap-3 sm:gap-4 animate__animated animate__fadeInUp animate__delay-2s">
<a href="https://chromewebstore.google.com/detail/testron-testing-co-pilot/ipbkoaadeihckgcdnbnahnooojmjoffm?authuser=0&hl=en"
class="inline-block bg-blue-600 text-white px-8 py-3 rounded-full hover:bg-blue-700 transition transform hover:scale-105 text-center"
target="_blank" rel="noopener noreferrer">
Download Extension
</a>
<a href="#" onclick="openVideoModal(event)"
class="inline-block bg-neutral-800 text-white px-8 py-3 rounded-full hover:bg-neutral-700 transition transform hover:scale-105 text-center">
Watch Demo
</a>
<!-- Add Modal HTML -->
<div id="videoModal"
class="fixed inset-0 bg-black bg-opacity-75 z-50 hidden flex items-center justify-center p-4">
<div class="relative bg-black rounded-lg w-full max-w-4xl">
<!-- Close button -->
<button onclick="closeVideoModal()"
class="absolute -top-10 right-0 text-white hover:text-gray-300">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
<!-- Video container with 16:9 aspect ratio -->
<div class="relative pt-[56.25%]">
<iframe id="youtubeVideo" class="absolute inset-0 w-full h-full rounded-lg"
src="" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</div>
</div>
</div>
<div class="flex flex-col sm:flex-row sm:items-center gap-4 sm:gap-8 text-gray-400 animate__animated animate__fadeInUp animate__delay-3s">
<div class="flex items-center gap-2">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path
d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<span>Multiple AI Providers</span>
</div>
<div class="flex items-center gap-2">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path
d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<span>Multi-Framework Support</span>
</div>
</div>
</div>
<div class="relative animate__animated animate__fadeInRight mt-8 lg:mt-0 max-w-[calc(100vw-2rem)] sm:max-w-full">
<div class="bg-gradient-to-r from-blue-500 to-purple-500 rounded-lg p-1">
<div class="bg-neutral-900 rounded-lg p-2 sm:p-4">
<pre class="text-xs sm:text-sm text-gray-300 font-mono overflow-x-auto">
<code>// Testron AI Generated Playwright Test Code
describe('Login Flow', () => {
it('should login successfully', async () => {
await page.goto('/login');
await page.fill('#email', 'user@example.com');
await page.fill('#password', '********');
await page.click('button[type="submit"]');
await expect(page).toHaveURL('/dashboard');
});
});</code>
</pre>
</div>
</div>
<div class="absolute -top-4 -right-4 bg-blue-600 text-white px-4 py-2 rounded-full text-sm">
AI-Powered
</div>
</div>
</div>
</div>
</section>
<!-- Particles.js -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
particlesJS('particles-js', {
particles: {
number: { value: 80, density: { enable: true, value_area: 800 } },
color: { value: '#ffffff' },
shape: { type: 'circle' },
opacity: { value: 0.5, random: false },
size: { value: 3, random: true },
line_linked: { enable: true, distance: 150, color: '#ffffff', opacity: 0.4, width: 1 },
move: { enable: true, speed: 6, direction: 'none', random: false, straight: false, out_mode: 'out', bounce: false }
},
interactivity: {
detect_on: 'canvas',
events: {
onhover: { enable: true, mode: 'repulse' },
onclick: { enable: true, mode: 'push' },
resize: true
}
},
retina_detect: true
});
</script>
<script>
function openVideoModal(event) {
event.preventDefault();
const modal = document.getElementById('videoModal');
const iframe = document.getElementById('youtubeVideo');
iframe.src = 'https://www.youtube.com/embed/05fvtjDc-xs?autoplay=1';
modal.classList.remove('hidden');
// Prevent body scrolling when modal is open
document.body.style.overflow = 'hidden';
}
function closeVideoModal() {
const modal = document.getElementById('videoModal');
const iframe = document.getElementById('youtubeVideo');
iframe.src = ''; // Clear the source to stop the video
modal.classList.add('hidden');
// Restore body scrolling
document.body.style.overflow = 'auto';
}
// Close modal when clicking outside the video
document.getElementById('videoModal').addEventListener('click', function (event) {
if (event.target === this) {
closeVideoModal();
}
});
// Close modal on escape key press
document.addEventListener('keydown', function (event) {
if (event.key === 'Escape') {
closeVideoModal();
}
});
</script>
</div>
</htmlCode>
</element>
<element id="aa6ebb10-57ec-4644-813c-b63ead71295f" data-section-id="aa6ebb10-57ec-4644-813c-b63ead71295f">
<htmlCode>
<div id="root">
<section id="features" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16 animate__animated animate__fadeIn">
<h2 class="text-4xl font-bold mb-4">Powerful Features</h2>
<p class="text-gray-600 text-xl">Everything you need for modern test automation</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- AI Provider Support -->
<div
class="bg-white p-6 rounded-xl shadow-lg hover:shadow-xl transition duration-300 animate__animated animate__fadeInUp">
<div class="bg-blue-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-blue-600" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
<h3 class="text-xl font-semibold mb-2">Multiple AI Providers</h3>
<p class="text-gray-600 mb-4">Support for leading AI models including Claude, GPT, Groq, and
Ollama.</p>
<ul class="text-gray-500 space-y-2">
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Anthropic (Claude)
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
OpenAI (GPT models)
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Local LLM Support
</li>
</ul>
</div>
<!-- Framework Support -->
<div
class="bg-white p-6 rounded-xl shadow-lg hover:shadow-xl transition duration-300 animate__animated animate__fadeInUp animate__delay-1s">
<div class="bg-purple-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-purple-600" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4" />
</svg>
</div>
<h3 class="text-xl font-semibold mb-2">Test Framework Support</h3>
<p class="text-gray-600 mb-4">Generate code for popular testing frameworks seamlessly.</p>
<ul class="text-gray-500 space-y-2">
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Playwright with TypeScript
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Cypress with TypeScript
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Selenium with Java
</li>
</ul>
</div>
<!-- Smart Features -->
<div
class="bg-white p-6 rounded-xl shadow-lg hover:shadow-xl transition duration-300 animate__animated animate__fadeInUp animate__delay-2s">
<div class="bg-green-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-green-600" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z" />
</svg>
</div>
<h3 class="text-xl font-semibold mb-2">Smart Features</h3>
<p class="text-gray-600 mb-4">Advanced capabilities for efficient test creation.</p>
<ul class="text-gray-500 space-y-2">
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Visual Element Inspector
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Context-Aware Suggestions
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Syntax Highlighting
</li>
</ul>
</div>
<!-- Cost Management -->
<div
class="bg-white p-6 rounded-xl shadow-lg hover:shadow-xl transition duration-300 animate__animated animate__fadeInUp">
<div class="bg-yellow-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-yellow-600" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<h3 class="text-xl font-semibold mb-2">Cost Management</h3>
<p class="text-gray-600 mb-4">Efficient token usage and cost tracking features.</p>
<ul class="text-gray-500 space-y-2">
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Token Usage Warnings
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Cost Tracking
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Free Model Support
</li>
</ul>
</div>
<!-- Follow-up Conversations -->
<div
class="bg-white p-6 rounded-xl shadow-lg hover:shadow-xl transition duration-300 animate__animated animate__fadeInUp animate__delay-4s">
<div class="bg-indigo-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-indigo-600" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M8 10h.01M12 10h.01M16 10h.01M9 16H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-5l-5 5v-5z" />
</svg>
</div>
<h3 class="text-xl font-semibold mb-2">Follow-up Conversations</h3>
<p class="text-gray-600 mb-4">Maintain context and history for smarter test automation
assistance.</p>
<ul class="text-gray-500 space-y-2">
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Context-Aware Responses
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Code History Retention
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Interactive Refinements
</li>
</ul>
</div>
<!-- Browser Automation - Coming Soon -->
<div
class="bg-white p-6 rounded-xl shadow-lg hover:shadow-xl transition duration-300 animate__animated animate__fadeInUp animate__delay-5s relative">
<!-- Coming Soon Tag -->
<div
class="absolute -top-3 -right-3 bg-gradient-to-r from-blue-500 to-purple-500 text-white px-4 py-1 rounded-full text-sm font-semibold shadow-lg">
Coming Soon
</div>
<div class="bg-blue-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
<svg class="w-6 h-6 text-blue-600" fill="none" stroke="currentColor"
viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9" />
</svg>
</div>
<h3 class="text-xl font-semibold mb-2">Browser Automation</h3>
<p class="text-gray-600 mb-4">Intelligent browser control for seamless testing and
automation workflows.</p>
<ul class="text-gray-500 space-y-2">
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Smart Form Filling with Regional Data
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Hybrid Manual-Automated Control
</li>
<li class="flex items-center">
<svg class="w-4 h-4 mr-2 text-green-500" fill="currentColor" viewBox="0 0 20 20">
<path
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" />
</svg>
Context-Aware Data Generation
</li>
</ul>
</div>
</div>
</div>
</section>
</div>
</htmlCode>
</element>
<element id="8c17da57-794f-460e-b293-f98c832a3cf5" data-section-id="8c17da57-794f-460e-b293-f98c832a3cf5">
<htmlCode>
<div id="root">
<section id="demoShowcase" class="py-20 bg-neutral-900">
<div class="container mx-auto px-6">
<div class="text-center mb-16 animate__animated animate__fadeIn">
<h2 class="text-4xl font-bold text-white mb-4">See Testron in Action</h2>
<p class="text-gray-400 text-xl">Watch how easily you can create test automation code</p>
</div>
<div class="grid lg:grid-cols-2 gap-12">
<!-- Demo Video Section -->
<div class="rounded-xl overflow-hidden shadow-2xl animate__animated animate__fadeInLeft">
<div class="relative pt-[56.25%]"> <!-- 16:9 Aspect Ratio -->
<iframe class="absolute inset-0 w-full h-full"
src="https://www.youtube.com/embed/L_eRfs1XEH0?rel=0&ontrols=0"
title="Testron AI Demo Video" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</div>
<!-- Screenshots Carousel -->
<div class="space-y-8 animate__animated animate__fadeInRight">
<div class="rounded-xl overflow-hidden shadow-2xl bg-neutral-800 p-4">
<div id="screenshots-carousel" class="relative">
<div class="carousel-container overflow-hidden">
<!-- Screenshot 1 -->
<div class="carousel-slide rounded-lg h-64 flex items-center justify-center">
<img src="./assets/Screenshot1.png" alt="Testron Screenshot 1"
class="w-full h-full object-cover rounded-lg" loading="lazy">
</div>
<!-- Screenshot 2 -->
<div
class="carousel-slide rounded-lg h-64 flex items-center justify-center hidden">
<img src="./assets/Screenshot2.png" alt="Testron Screenshot 2"
class="w-full h-full object-cover rounded-lg" loading="lazy">
</div>
<!-- Screenshot 3 -->
<div
class="carousel-slide rounded-lg h-64 flex items-center justify-center hidden">
<img src="./assets/Screenshot3.png" alt="Testron Screenshot 3"
class="w-full h-full object-cover rounded-lg" loading="lazy">
</div>
</div>
<!-- Carousel Navigation -->
<div class="flex justify-center mt-4 space-x-2">
<button class="w-3 h-3 rounded-full bg-blue-600"
onclick="showSlide(0)"></button>
<button class="w-3 h-3 rounded-full bg-neutral-600"
onclick="showSlide(1)"></button>
<button class="w-3 h-3 rounded-full bg-neutral-600"
onclick="showSlide(2)"></button>
</div>
</div>