This repository was archived by the owner on Mar 10, 2025. It is now read-only.
generated from TheMagicWorlds/AIBot-Fitness-Helper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
931 lines (905 loc) · 46.2 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome To Your Coding Partner</title>
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- fav icon -->
<link rel="icon" href="assets/images/fav-icon/fav-icon.png">
<!-- bootstarp -->
<link rel="stylesheet" href="css/vendors/bootstrap.min.css">
<!-- animate.css file -->
<link rel="stylesheet" href="css/vendors/animate.css">
<!-- Swiper -->
<link rel="stylesheet" href="css/vendors/swiper-bundle.min.css">
<!-- flaticon -->
<link rel="stylesheet" href="css/vendors/flaticon/flaticon.css">
<!-- fontAwesome -->
<link rel="stylesheet" href="css/vendors/all.min.css">
<!-- bootstrap icons -->
<link rel="stylesheet" href="css/vendors/bootstrap-icons-1.9.1/bootstrap-icons.css">
<!-- Fancybox -->
<link rel="stylesheet" href="css/vendors/jquery.fancybox.min.css">
<!-- fonts site preconnect -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<!-- fonts site preconnect -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Font Family -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&display=swap">
<!-- main-LTR -->
<link rel="stylesheet" href="css/main-LTR.css">
<!-- chatbot -->
<link rel="stylesheet" href="css/chatbot.css">
<!-- Clarity Analytics Tracker -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "is4yddswnw");
</script>
</head>
<body class=" dark-theme landing-page-demo">
<!--Start Page Header-->
<header class=" header-basic" id="page-header">
<div class="container">
<!--Start navbar-->
<nav class="menu-navbar" id="main-nav">
<div class="header-logo"><a class="logo-link" href="#"><img class="logo-img light-logo" loading="lazy" src="assets/images/logo/logo-no-bg-dark.png" alt="logo"/><img class="logo-img dark-logo" loading="lazy" src="assets/images/logo/logo-no-bg-light.png" alt="logo"/></a></div>
<div class="links menu-wrapper ">
<ul class="list-js links-list">
<li class="nav-item menu-item has-sub-menu"><a class="nav-link menu-link active" href="#page-hero">home</a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#services">services </a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#about">about </a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#pricing">pricing </a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#testimonials">testimonials </a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#faq">FAQ </a></li>
<li class="nav-item menu-item"><a class="nav-link menu-link " href="#contact-us">contact us </a></li>
</ul>
</div>
<div class="controls-box">
<!--Menu Toggler button-->
<div class="control menu-toggler"><span></span><span></span><span></span></div>
<!--Dark/Light mode button-->
<div class="mode-switcher ">
<div class="switch-inner go-light " title="Switch To Light Mode "><i class="bi bi-sun icon "></i></div>
<div class="switch-inner go-dark" title="Switch To Dark Mode "><i class="bi bi-moon icon "></i></div>
</div>
<!--mini shoping cart-->
</div>
</nav>
</div>
<!--End navbar-->
</header>
<!--End Page Header-->
<!-- Start Page hero-->
<section class="page-hero d-flex align-items-center" id="page-hero">
<div class="overlay-photo-image-bg" data-bg-img="assets/images/sections-bg-images/pattern-bg-1.jpg" data-bg-opacity=".2"></div>
<div class="particles-js dots" id="particles-js"></div>
<div class="container">
<div class="row align-items-center">
<div class="col-12 col-lg-6 ">
<!--Start of .hero-text-area-->
<div class="hero-text-area ">
<div class="row">
<div class="col-12 ">
<div class="pre-title ">Welcome To Your Coding Partner</div>
<h1 class="hero-title ">Unleash the power of AI + <span class="featured-text">Coding
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none">
<path d="M7.7,145.6C109,125,299.9,116.2,401,121.3c42.1,2.2,87.6,11.8,87.3,25.7"></path>
</svg> </span><span class="design-element rounded-shape stripes"></span></h1>
</div>
<div class="col-12 ">
<div class="hero-social-icons mb-3 ">
<div class="sc-wrapper dir-row sc-flat">
<p>Tell your friends</p>
<ul class="sc-list">
<li class="sc-item " title="Facebook"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-facebook-f sc-icon"></i></a></li>
<li class="sc-item " title="youtube"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-youtube sc-icon"></i></a></li>
<li class="sc-item " title="instagram"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-instagram sc-icon"></i></a></li>
<li class="sc-item " title="twitter"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-twitter sc-icon"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-12 ">
<div class="cta-links-area "><a class=" btn-outline cta-link cta-link-primary " href="#0">Join Us</a>
<div class="play-btn-row-dir ">
<!-- <a class="video-link" href="#" role="button" title="play" data-fancybox="data-fancybox"> -->
<div class="play-video-btn">
<div class="play-btn"> <i class="fas fa-play icon"></i></div>
</div></a></div>
</div>
</div>
</div>
</div>
</div>
<!--start of image-area -->
<div class="col-12 mx-md-auto col-lg-6 text-center " data-tilt>
<div class="hero-image-area mb-5 mb-lg-0">
<div class="hero-img-wraper"><img class="img-fluid " src="assets/images/hero/coder-hero.png" alt="" draggable="false"></div>
</div>
<br>
<div class="mx-auto ">
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".1s">
<div class="service-content">
<h3>How Can I Help You?</h3>
<p class="service-text">
Ask Me Any Coding Related Question
</p>
</div><a class="read-more" href="#0">Get Started<i class="bi bi-arrow-right icon "> </i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End of .hero-text-area-->
<!-- End Page hero-->
<section class="chat-section">
<div class="chat-container">
<div class="chat-box" id="chatBox">
<div class="chat-message bot">Hello! What you want to code today?</div>
<div id="response" style="display:none;"></div>
</div>
<div class="input-container">
<input type="text" id="question" placeholder="Type your message..." />
<button id="ask">Send</button>
</div>
</div>
</section>
<!-- Start services Section-->
<section class="services services-boxed mega-section " id="services">
<div class="container">
<div class="sec-heading ">
<div class="content-area"><!-- <span class=" pre-title wow fadeInUp " data-wow-delay=".2s">services</span> -->
<h2 class="title wow fadeInUp" data-wow-delay=".2s">services we offer</h2>
<p class="subtitle wow fadeInUp " data-wow-delay=".4s">
We provide a suite of AI-powered coding tools, including code autocompletion, error detection, code generation, and more, to streamline your development workflow and elevate code quality.
</p>
</div>
<div class=" cta-area wow fadeInUp" data-wow-delay=".6s"><a class="cta-btn btn-solid ">see all services <i class="bi bi-arrow-right icon "></i></a></div>
</div>
<div class="row gx-4 gy-4 services-row ">
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<!--Start First service box-->
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".1s">
<div class="service-icon"><i class="flaticon-web-development font-icon"></i></div><span class="service-num hollow-text">1 </span>
<div class="service-content">
<h3 class="service-title">Code Autocompletion</h3>
<p class="service-text">
Our service can suggest code completions and provide context-aware code recommendations as developers type.
</p>
</div><a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "> </i></a>
</div>
<!-- End First service box -->
</div>
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<!--Start Second service box-->
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".2s">
<div class="service-icon"><i class="flaticon-nanotechnology font-icon"></i></div><span class="service-num hollow-text">2 </span>
<div class="service-content">
<h3 class="service-title">Code Generation</h3>
<p class="service-text">
Generate code snippets or even entire functions based on natural language descriptions or requirements provided by the developer.
</p>
</div><a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "> </i></a>
</div>
<!-- End Second service box-->
</div>
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<!--Start Third service box-->
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".3s">
<div class="service-icon"><i class="flaticon-web-domain font-icon"></i></div><span class="service-num hollow-text">3 </span>
<div class="service-content">
<h3 class="service-title">Integration with IDEs</h3>
<p class="service-text">
Integrated into popular integrated development environments (IDEs) like Visual Studio Code, PyCharm, or IntelliJ IDEA.
</p>
</div><a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "> </i></a>
</div>
<!-- End Third service box-->
</div>
<!-- Fourth service box-->
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".4s">
<div class="service-icon"><i class="flaticon-profile font-icon"></i></div>
<span class="service-num hollow-text">4</span>
<div class="service-content">
<h3 class="service-title">Code Refactoring</h3>
<p class="service-text">
Our Service can suggest code refactoring options to improve code readability, maintainability, and performance.
</p>
</div>
<a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "></i></a>
</div>
</div>
<!-- End Fourth service box-->
<!-- Fifth service box-->
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".5s">
<div class="service-icon"><i class="flaticon-search font-icon"></i></div>
<span class="service-num hollow-text">5</span>
<div class="service-content">
<h3 class="service-title">Code Documentation</h3>
<p class="service-text">
Assists in generating code comments and documentation, making it easier for developers to maintain and collaborate on projects.
</p>
</div>
<a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "></i></a>
</div>
</div>
<!-- End Fifth service box-->
<!-- Sixth service box-->
<div class="col-12 col-md-6 col-lg-4 mx-auto ">
<div class="box service-box wow fadeInUp reveal-start" data-wow-offset="0" data-wow-delay=".6s">
<div class="service-icon"><i class="flaticon-strategy font-icon"></i></div>
<span class="service-num hollow-text">6</span>
<div class="service-content">
<h3 class="service-title">Error Correction</h3>
<p class="service-text">
Identifies syntax errors and logical bugs in the code as it is being written and offer suggestions to fix these issues, reducing the debugging effort.
</p>
</div>
<a class="read-more" href="#0">read more<i class="bi bi-arrow-right icon "></i></a>
</div>
</div>
<!-- End Sixth service box-->
</div>
</div>
</div>
</section>
<!-- End services Section-->
<!-- Start about Section-->
<section class="about mega-section" id="about">
<div class="container">
<!-- Start first about div-->
<div class="content-block ">
<div class="row">
<div class="col-12 col-lg-6 d-flex align-items-center order-1 order-lg-0 about-col pad-end wow fadeInUp " data-wow-delay="0.6s">
<div class="text-area ">
<div class="sec-heading light-title ">
<div class="content-area"><span class=" pre-title wow fadeInUp " data-wow-delay=".2s">about Us</span>
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">
<span class='hollow-text'>trusted</span> by worldwide clients since<span class='featured-text'> EVER.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none">
<path d="M7.7,145.6C109,125,299.9,116.2,401,121.3c42.1,2.2,87.6,11.8,87.3,25.7"></path>
</svg>
</span>
</h2>
</div>
</div>
<p class="about-text">
We harness the cutting-edge capabilities of artificial intelligence to offer developers an array of powerful coding tools. From seamless code autocompletion to intelligent error detection and code generation, our services are designed to boost productivity, improve code quality, and simplify the development process.
</p>
<p class="about-text">
Our commitment to excellence extends to our integration with popular development environments, ensuring that our AI-powered coding assistance seamlessly fits into your workflow. At AI Coder, we're passionate about making coding more efficient, accessible, and enjoyable. Join us in shaping the future of coding with AI-driven innovation.
</p>
<div class="cta-area"><a class=" btn-solid reveal-start" href="#0">Get in touch</a>
<!-- <div class="signature ">
<div class="signature-img"></div>
<div class="signature-name">CEO & Founder </div>
</div> -->
</div>
</div>
</div>
<div class="col-12 col-lg-6 d-flex align-items-center order-0 order-lg-1 about-col wow fadeInUp" data-wow-delay="0.2s">
<div class="img-area" data-tilt>
<div class="image"><img class="about-img img-fluid " loading="lazy" src="assets/images/about/3.png" alt="Our vision"></div>
</div>
</div>
</div>
</div>
<!-- Start first about div-->
<div class="content-block ">
<div class="row">
<div class="col-12 col-lg-6 d-flex align-items-center about-col wow fadeInUp" data-wow-delay="0.2s">
<div class="img-area ">
<div class="image " data-tilt><img class="about-img img-fluid " loading="lazy" src="assets/images/about/1.png" alt="about"></div>
</div>
</div>
<div class="col-12 col-lg-6 d-flex align-items-center about-col pad-start wow fadeInUp " data-wow-delay="0.6s">
<div class="text-area ">
<div class="sec-heading light-title ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">
Why our <span class='hollow-text'> customers</span> choose <span class='featured-text'>working
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none">
<path d="M7.7,145.6C109,125,299.9,116.2,401,121.3c42.1,2.2,87.6,11.8,87.3,25.7"></path></svg>
</span> with us
</h2>
</div>
</div>
<div class="info-items-list">
<div class="row ">
<div class="col-12 ">
<div class="info-item"><span class="info-number ">01.</span>
<div class="info-content">
<h5 class="info-title">Enhanced Productivity </h5>
<p class="info-text">
Our AI-powered coding tools significantly expedite the development process by providing code autocompletion, error detection, and code generation. Customers can achieve more in less time, increasing overall project efficiency.
</p>
</div>
</div>
</div>
<div class="col-12 ">
<div class="info-item"><span class="info-number ">02.</span>
<div class="info-content">
<h5 class="info-title">Improved Code Quality</h5>
<p class="info-text">
Our services not only accelerate coding but also enhance code quality by identifying errors and suggesting optimizations. Customers benefit from cleaner, more reliable code that is easier to maintain.
</p>
</div>
</div>
</div>
<div class="col-12 ">
<div class="info-item"><span class="info-number ">03.</span>
<div class="info-content">
<h5 class="info-title">Seamless Integration</h5>
<p class="info-text">We seamlessly integrate with popular development environments, ensuring a smooth transition for developers. This compatibility allows customers to leverage our AI-driven coding assistance within their preferred coding workflow.</p>
</div>
</div>
</div>
<div class="col-12 ">
<div class="info-item"><span class="info-number ">04.</span>
<div class="info-content">
<h5 class="info-title">Innovation and Future-Readiness</h5>
<p class="info-text"> Customers choose Us for our commitment to staying at the forefront of AI-driven coding technology. We continually innovate and adapt our services, ensuring that our customers have access to the latest advancements in the field of AI-assisted coding.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End first about div-->
</div>
</section>
<!-- End about Section-->
<!-- Start stats Section-->
<section class="stats js-stats-counter mega-section">
<div class="overlay-photo-image-bg" data-bg-img="assets/images/sections-bg-images/pattern-bg-3.jpg" data-bg-opacity=".2"></div>
<div class="container">
<div class="stats-inner">
<div class="row ">
<!--Info One-->
<div class="col-12 col-md-6 col-lg-3 stat-box ">
<div class="stat-box-inner " data-tilt="data-tilt"><i class="flaticon-project-management stat-icon"></i>
<p class="stat-num "><span class="counter" data-from="0" data-to="3" data-speed="3000" data-refresh-interval="50"></span><span class="sign">+</span></p><span class="stat-desc">Testimonials</span>
</div>
</div>
<!--Info Two-->
<div class="col-12 col-md-6 col-lg-3 stat-box ">
<div class="stat-box-inner " data-tilt="data-tilt"><i class="flaticon-content-management stat-icon"></i>
<p class="stat-num "><span class="counter" data-from="0" data-to="6" data-speed="3000" data-refresh-interval="50"></span><span class="sign">+</span></p><span class="stat-desc">services</span>
</div>
</div>
<!--Info Three-->
<div class="col-12 col-md-6 col-lg-3 stat-box ">
<div class="stat-box-inner " data-tilt="data-tilt"><i class="flaticon-user stat-icon"></i>
<p class="stat-num "><span class="counter" data-from="0" data-to="20" data-speed="3000" data-refresh-interval="50"></span><span class="sign">+</span></p><span class="stat-desc">visitors</span>
</div>
</div>
<!--Info Four-->
<div class="col-12 col-md-6 col-lg-3 stat-box ">
<div class="stat-box-inner " data-tilt="data-tilt"><i class="flaticon-aim stat-icon"></i>
<p class="stat-num "><span class="counter" data-from="0" data-to="1" data-speed="3000" data-refresh-interval="50"></span><span class="sign">+</span></p><span class="stat-desc">years of experience</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End stats Section-->
<!-- Start our-clients Section-->
<section class="our-clients mega-section wow fadeInUp" id="our-clients" data-wow-delay="0.2s">
<div class="container">
<div class="sec-heading centered ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">trusted by over 500 clients around the world</h2>
</div>
</div>
<div class=" clients-logos d-flex align-items-center justify-content-around flex-wrap">
<!--Swiper-->
<div class="swiper-container">
<div class="swiper-wrapper clients-logo-wrapper wow fadeIn " data-wow-delay=".02s">
<!-- every client logo is located inside div with clss name "swiper-slide ".
if you want to add more logos please keep the strcture of the swiper-slide as showen below
-->
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/mosler.jpg" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/bard.jpg" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/lego.jpg" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/info.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/5-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/6-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/7-white.png" alt=" "></a></div>
</div>
<!-- <div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/1-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/2-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/3-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/4-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/5-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/6-white.png" alt=" "></a></div>
</div>
<div class="swiper-slide">
<div class="client-logo "><a href="#0"><img class="img-fluid logo " loading="lazy" src="assets/images/clients-logos/7-white.png" alt=" "></a></div>
</div> -->
</div>
</div>
</div>
</div>
</section>
<!-- End our-clients Section-->
<!-- Start pricing Section-->
<section class="pricing mega-section " id="pricing">
<div class="container">
<div class="sec-heading ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".2s"><span class='hollow-text'>affordable</span> pricing plans</h2>
<p class="subtitle wow fadeInUp " data-wow-delay=".4s">The best deals in the market:</p>
</div>
<div class=" cta-area wow fadeInUp" data-wow-delay=".6s"><a class="cta-btn btn-solid " href="#0">see all plans<i class="bi bi-arrow-right icon "></i></a></div>
</div>
<div class="row">
<!--First Plan-->
<div class="col-12 col-md-6 col-xl-3 mx-auto price-plan ">
<div class="plan wow fadeInUp " data-wow-delay=".1s ">
<div class="plan-head"><i class="flaticon-nft-1 plan-icon"></i>
<h4 class="plane-name">Free Plan</h4>
<div class="plan-price">
<h3 class="price">0<sup class="currency-symbol">$</sup></h3><span class="per">Monthly</span>
</div>
</div>
<div class="plan-details">
<ul class="plan-list">
<li class="plan-feat "> <span class="feat-text">Ideal for individual developers and small projects, this plan includes code autocompletion, error detection, basic code generation, integration with one development environment, and email support.</span></li>
</ul>
</div>
<div class="plan-cta"><a class="cta-btn btn-outline " href="#0">select plan </a></div>
</div>
</div>
<!--Second-plan-->
<div class="col-12 col-md-6 col-xl-3 mx-auto price-plan ">
<div class="plan wow fadeInUp " data-wow-delay=".3s ">
<div class="plan-head"><i class="flaticon-virtual-reality plan-icon"></i>
<h4 class="plane-name">Tailored Plan</h4>
<div class="plan-price">
<h3 class="price">25<sup class="currency-symbol">$</sup></h3><span class="per">Monthly</span>
</div>
</div>
<div class="plan-details">
<ul class="plan-list">
<li class="plan-feat "> <span class="feat-text">Designed for professional developers and medium-sized projects, this plan offers advanced code generation, code refactoring assistance, integration with multiple development environments, and priority email support.</span></li>
</ul>
</div>
<div class="plan-cta"><a class="cta-btn btn-outline " href="#0">select plan </a></div>
</div>
</div>
<!--Third-plan-->
<div class="col-12 col-md-6 col-xl-3 mx-auto price-plan ">
<div class="plan featured wow fadeInUp " data-wow-delay=".5s ">
<div class="plan-head"><i class="flaticon-box plan-icon"></i>
<h4 class="plane-name">Enterprise plan</h4>
<div class="plan-price">
<h3 class="price">Custom<sup class="currency-symbol"></sup></h3><span class="per">Monthly</span>
</div>
</div>
<div class="plan-details">
<ul class="plan-list">
<li class="plan-feat "> <span class="feat-text">Tailored for large teams and enterprise projects, this plan includes all Pro Plan features, customized AI training, enhanced scalability, 24/7 dedicated support, and on-site training and integration consultation.</span></li>
</ul>
</div>
<div class="plan-cta"><a class="cta-btn btn-outline " href="#0">select plan </a></div>
</div>
</div>
</div>
</div>
</section>
<!-- End pricing Section-->
<!-- Start testimonials Section-->
<section class="testimonials testimonials-1-col has-dark-bg mega-section " id="testimonials">
<div class="overlay-photo-image-bg parallax " data-bg-img="assets/images/sections-bg-images/1.jpg" data-bg-opacity=".25"> </div>
<div class="container">
<div class="sec-heading centered ">
<div class="content-area"><span class=" pre-title wow fadeInUp " data-wow-delay=".2s">testimonials</span>
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">customers <span class='hollow-text'>testimonials</span></h2>
</div>
</div>
<div class="row d-flex align-items-center">
<div class="col-12 col-md-10 mx-auto">
<div class="swiper-container wow fadeInUp " data-wow-delay="0.2s">
<div class="swiper-wrapper">
<!--First Slide-->
<div class="swiper-slide">
<div class="testmonial-card d-flex align-items-center justify-content-center">
<div class="testimonial-content">
<div class="customer-img "><img class="img-fluid " loading="lazy" src="assets/images/testimonials/customer1.png" alt="First Slide "></div>
<div class="customer-testimonial">
<div class="content">
<p class="testimonial-text ">
Our enterprise-level projects demand top-notch coding tools. AI Coder's Enterprise Plan has exceeded our expectations. The customized AI training, 24/7 support, and on-site consultation have elevated our development processes. It's a game-changer for our team's productivity and code quality.
</p>
</div>
</div>
<div class="customer-info ">
<div class="customer-details">
<p class="customer-name">Dainel Kristan</p>
</div>
</div>
</div>
</div>
</div>
<!--Second Slide-->
<div class="swiper-slide">
<div class="testmonial-card d-flex align-items-center justify-content-center">
<div class="testimonial-content">
<div class="customer-img "><img class="img-fluid " loading="lazy" src="assets/images/testimonials/customer2.png" alt="First Slide "></div>
<div class="customer-testimonial">
<div class="content">
<p class="testimonial-text ">
I've been using AI Coder for several months now, and it has become an indispensable tool in my daily workflow. The Pro Plan's advanced code generation and refactoring assistance have saved me countless hours. It's like having a coding partner that never sleeps!
</p>
</div>
</div>
<div class="customer-info ">
<div class="customer-details">
<p class="customer-name">Kathy Henry</p>
</div>
</div>
</div>
</div>
</div>
<!--third Slide-->
<div class="swiper-slide">
<div class="testmonial-card d-flex align-items-center justify-content-center">
<div class="testimonial-content">
<div class="customer-img "><img class="img-fluid " loading="lazy" src="assets/images/testimonials/customer3.png" alt="First Slide "></div>
<div class="customer-testimonial">
<div class="content">
<p class="testimonial-text ">
As a startup founder, time is precious, and quality code is essential. AI Coder's Starter Plan offers fantastic value. It helped me quickly prototype our MVP and provided valuable suggestions to improve code quality. I highly recommend it to fellow entrepreneurs.
</p>
</div>
</div>
<div class="customer-info ">
<div class="customer-details">
<p class="customer-name">Marshal Hofman</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--navigation buttons-->
<div class="swiper-button-prev">
<div class="left-arrow"><i class="bi bi-chevron-left icon "></i>
</div>
</div>
<div class="swiper-button-next">
<div class="right-arrow"><i class="bi bi-chevron-right icon "></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End testimonials Section-->
<!-- Start faq Section-->
<section class="faq mega-section " id="faq">
<div class="shape-top-left"></div>
<div class="shape-bottom-right"></div>
<div class="pattern-top-end-dir"></div>
<div class="pattern-bottom-start-dir"></div>
<div class="container">
<div class="row">
<div class="col-12 col-lg-5 align-self-center">
<div class="faq-img start-dir-img-frame wow fadeIn" data-wow-delay="0.2s"><img class="img-fluid " loading="lazy" src="assets/images/faq/faq-illustration.png" alt=""></div>
</div>
<div class="col-12 col-lg-7 ">
<div class="sec-heading ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".2s"><span class='hollow-text'>frequently </span> asked questions </h2>
</div>
</div>
<!--Start Accordion List For FAQ-->
<div class="faq-accordion " id="accordion">
<div class="card mb-2">
<div class="card-header " id="heading-1">
<h5 class="mb-0 faq-title">
<button class="btn btn-link faq-btn collapsed" data-bs-toggle="collapse"
data-bs-target="#collapse-1" aria-expanded="true" aria-controls="collapse-1">What development environments does AI Coder support?</button>
</h5>
</div>
<div class="collapse " id="collapse-1" aria-labelledby="collapse-1" data-bs-parent="#accordion">
<div class="card-body">
<p class="faq-answer">AI Coder seamlessly integrates with popular development environments, including Visual Studio Code, PyCharm, IntelliJ IDEA, and more. Our goal is to make our AI-powered coding assistance available where you work.</p>
</div>
</div>
</div>
<div class="card mb-2">
<div class="card-header " id="heading-2">
<h5 class="mb-0 faq-title">
<button class="btn btn-link faq-btn collapsed "
data-bs-toggle="collapse" data-bs-target="#collapse-2" aria-expanded="true" aria-controls="collapse-2">Can I switch between pricing plans?</button>
</h5>
</div>
<div class="collapse " id="collapse-2" aria-labelledby="collapse-2" data-bs-parent="#accordion">
<div class="card-body">
<p class="faq-answer">Yes, you can switch between pricing plans at any time. Whether you're starting with the Starter Plan and want to upgrade to the Pro Plan or you're considering a transition to our Enterprise Plan, our flexible billing allows you to adapt to your evolving needs.</p>
</div>
</div>
</div>
<div class="card mb-2">
<div class="card-header " id="heading-3">
<h5 class="mb-0 faq-title">
<button class="btn btn-link faq-btn collapsed " data-bs-toggle="collapse"
data-bs-target="#collapse-3" aria-expanded="true" aria-controls="collapse-3">Is my code and data secure with AI Coder?</button>
</h5>
</div>
<div class="collapse " id="collapse-3" aria-labelledby="collapse-3" data-bs-parent="#accordion">
<div class="card-body">
<p class="faq-answer">We take data security seriously. Your code and data are kept confidential and secure. We employ encryption and industry-standard security practices to protect your information. You can learn more about our security measures in our documentation.</p>
</div>
</div>
</div>
<div class="card mb-2">
<div class="card-header " id="heading-4">
<h5 class="mb-0 faq-title">
<button class="btn btn-link faq-btn collapsed " data-bs-toggle="collapse"
data-bs-target="#collapse-4" aria-expanded="true" aria-controls="collapse-4">What kind of support is included with the Enterprise Plan?</button>
</h5>
</div>
<div class="collapse " id="collapse-4" aria-labelledby="collapse-4" data-bs-parent="#accordion">
<div class="card-body">
<p class="faq-answer">The Enterprise Plan includes 24/7 dedicated support to address any issues or questions your team may have. Our support team is highly responsive and can provide assistance via email, phone, or live chat. We're committed to ensuring your enterprise has the assistance it needs to maximize the benefits of AI Coder.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End faq Section-->
<!-- Start Form Section-->
<section class="contact-us mega-section pb-0" id="contact-us">
<div class="container">
<section class="contact-us-form-section mega-section ">
<div class="row">
<div class="col-12 ">
<div class="contact-form-panel">
<div class="sec-heading centered ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">Have any questions? Let's answer them</h2>
</div>
</div>
<div class="contact-form-inputs wow fadeInUp" data-wow-delay=".6s">
<div class="custom-form-area input-boxed">
<!--Form To have user messages-->
<form class="main-form" id="contact-us-form" action="php/send-mail.php" method="post"><span class="done-msg"></span>
<div class="row ">
<div class="col-12 col-lg-6">
<div class=" input-wrapper">
<input class="text-input" id="user-name" name="UserName" type="text"/>
<label class="input-label" for="user-name"> Name <span class="req">*</span></label><span class="b-border"></span><span class="error-msg"></span>
</div>
</div>
<div class="col-12 col-lg-6">
<div class=" input-wrapper">
<input class="text-input" id="user-email" name="UserEmail" type="email"/>
<label class="input-label" for="user-email"> E-mail <span class="req">*</span></label><span class="b-border"></span><span class="error-msg"></span>
</div>
</div>
<div class="col-12 ">
<div class=" input-wrapper">
<input class="text-input" id="msg-subject" name="subject" type="text"/>
<label class="input-label" for="msg-subject"> Subject <span class="req">*</span></label><span class="b-border"></span><span class="error-msg"></span>
</div>
</div>
<div class="col-12 ">
<div class=" input-wrapper">
<textarea class=" text-input" id="msg-text" name="message"></textarea>
<label class="input-label" for="msg-text"> your message <span class="req">*</span></label><span class="b-border"></span><i></i><span class="error-msg"></span>
</div>
</div>
<div class="col-12 submit-wrapper">
<button class=" btn-solid" id="submit-btn" type="submit" name="UserSubmit">Send your message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="locations-section mega-section ">
<div class="sec-heading centered ">
<div class="content-area">
<h2 class=" title wow fadeInUp" data-wow-delay=".4s">Our Contacts</h2>
</div>
</div>
<div class=" contact-info-panel ">
<div class="info-section ">
<div class="row">
<div class="col-12 col-lg-4">
<div class="info-panel wow fadeInUp" data-wow-delay=".4s ">
<h4 class="location-title">Let's have a meeting:</h4>
<div class="line-on-side "> </div>
<div class="location-card "><i class="flaticon-email icon"></i>
<div class="card-content">
<h6 class="content-title">email:</h6><a class="email link" href="mailto:yourname@example.com">info@example.com</a>
</div>
</div>
<div class="location-card "><i class="flaticon-phone-call icon"></i>
<div class="card-content">
<h6 class="content-title">phone:</h6><a class="tel link" href="tel:0123456789">+29876543210</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</section>
<!-- End blog Section-->
<!-- Start page-footer Section-->
<footer class="page-footer dark-color-footer" id="page-footer">
<div class="overlay-photo-image-bg" data-bg-img="assets/images/sections-bg-images/footer-bg-1.jpg" data-bg-opacity=".25"></div>
<div class="container">
<div class="row footer-cols">
<div class="col-12 col-md-8 col-lg-4 footer-col ">
<div class="footer-col-content-wrapper">
<p class="footer-text-about-us">
Welcome to AI Coder, our cutting-edge service that harnesses the power of artificial intelligence to empower developers with intelligent coding tools. From code autocompletion to error detection and code generation, we enhance your coding experience and seamlessly integrate with your preferred development environments.
</p>
</div>
<div class="form-area ">
<div class="mailchimp-form ">
<form class="one-field-form" method="post" action="#0">
<div class="field-group ">
<label class="email-label" for="email-input"> Subscribe to our newsletter</label>
<input class="email-input " type="email" value="" name="EMAIL" id="email-input" placeholder="Email Address" autocomplete="off"/>
<div class="cta-area">
<input class="btn-solid subscribe-btn" type="submit" value="Subscribe" name="subscribe"/>
</div>
</div><span class="email-notice">*we will not share your personal info</span>
</form>
</div>
</div>
</div>
<div class="col-6 col-lg-2 footer-col ">
<h2 class=" footer-col-title ">useful links</h2>
<div class="footer-col-content-wrapper">
<ul class="footer-menu ">
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">Google</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">Dribbble</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">linkedIn</a>
</li>
</ul>
</div>
</div>
<div class="col-6 col-lg-2 footer-col ">
<h2 class=" footer-col-title ">Resources</h2>
<div class="footer-col-content-wrapper">
<ul class="footer-menu">
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">support</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">dashboard</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">drivers</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">projects</a>
</li>
<li class="footer-menu-item"><i class="bi bi-arrow-right icon "></i><a class="footer-menu-link" href="#0">blog</a>
</li>
</ul>
</div>
</div>
<div class="col-12 col-lg-4 footer-col ">
<h2 class=" footer-col-title">contact information</h2>
<div class="footer-col-content-wrapper">
<div class="contact-info-card"><i class="bi bi-envelope icon"></i><a class="text-lowercase info" href="mailto:example@support.com">example@support.com</a></div>
<div class="contact-info-card"><i class="bi bi-geo-alt icon"></i><span class="info">AI2BC Organization</span></div>
<div class="contact-info-card"><i class="bi bi-phone icon"></i><a class="info" href="tel:+20123456789">+20123456789 </a></div>
<div class="contact-info-card">
<div class="social-icons">
<div class="sc-wrapper dir-row sc-size-32">
<ul class="sc-list">
<li class="sc-item " title="Facebook"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-facebook-f sc-icon"></i></a></li>
<li class="sc-item " title="youtube"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-youtube sc-icon"></i></a></li>
<li class="sc-item " title="instagram"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-instagram sc-icon"></i></a></li>
<li class="sc-item " title="twitter"><a class="sc-link" href="#0" title="social media icon"><i class="fab fa-twitter sc-icon"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="copyrights ">
<div class="container">
<div class="row">
<div class="col-12 col-md-6 d-flex justify-content-start">
<p class="credits">
© 2023
All rights reserved to
<a class="link" href="#0">AI2BC</a>
</p>
</div>
<div class="col-12 col-md-6 d-flex justify-content-end">
<div class="terms-links"><a href="#0">Terms of Use </a>
| <a href="#0">Privacy Policy</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- End page-footer Section-->
<!-- Start loading-screen Component-->
<div class="loading-screen" id="loading-screen"><span class="bar top-bar"></span><span class="bar down-bar"></span><span class="progress-line"></span><span class="loading-counter"> </span></div>
<!-- End loading-screen Component-->
<!-- Start back-to-top Component-->
<div class="back-to-top" id="back-to-top"><i class="bi bi-arrow-up icon "></i>
</div>
<!-- End back-to-top Component-->
<!-- JQuery -->
<script src="js/vendors/jquery-3.6.1.min.js"></script>
<!-- appear -->
<script src="js/vendors/appear.min.js"></script>
<!-- bootstrap -->
<script src="js/vendors/bootstrap.bundle.min.js"></script>
<!-- countTo -->
<script src="js/vendors/jquery.countTo.js"></script>
<!-- wow -->
<script src="js/vendors/wow.min.js"></script>
<!-- swiper -->
<script src="js/vendors/swiper-bundle.min.js"></script>
<!-- particles -->
<script src="js/vendors/particles.min.js"></script>
<!-- Vanilla-tilt -->
<script src="js/vendors/vanilla-tilt.min.js"></script>
<!-- isotope -->
<script src="js/vendors/isotope-min.js"></script>
<!-- fancybox -->
<script src="js/vendors/jquery.fancybox.min.js"></script>
<!-- main -->
<script src="js/main.js"></script>
<!-- chatbot -->
<script src="js/chatbot.js"></script>
</body>
</html>