-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.php
1099 lines (909 loc) · 47 KB
/
index.php
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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Gigabyte Developers - Homepage</title>
<meta name="google-site-verification" content="RjAgqUgYfT94lQ7oGZqqRI87NeSdR_6fecSUipiGBmg" />
<meta name="msvalidate.01" content="F39E6D2A441B34A5BCA816D83B967BDF" />
<meta property="og:image:secure_url" content="https://raw.githubusercontent.com/gigabytedevelopers/Assets/master/website/thumbnail.png" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Gigabyte Developers Incorporated">
<meta property="og:title" content="Gigabyte Developers - Homepage" />
<meta property="og:description" content="Official Homepage of Gigabyte Developers Incorporated" />
<meta property="og:image" itemprop="image" content="https://raw.githubusercontent.com/gigabytedevelopers/Assets/master/website/thumbnail.png" />
<meta property="og:image:url" itemprop="image" content="https://raw.githubusercontent.com/gigabytedevelopers/Assets/master/website/thumbnail.png" />
<meta property="og:image:type" content="image/png" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Official Homepage of Gigabyte Developers Incorporated">
<meta name="author" content="Gigabyte Developers Incorporated">
<meta name="theme-color" content="#028fcc">
<link rel="shortcut icon" href="img/gigaicon.png">
<link rel="stylesheet" type="text/css" href="css/theme-styles.css">
<link rel="stylesheet" type="text/css" href="css/blocks.css">
<link rel="stylesheet" type="text/css" href="css/widgets.css">
<!--External fonts-->
<link href="https://fonts.googleapis.com/css?family=Nunito:300,400,700,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Baloo+Paaji" rel="stylesheet">
<!-- Styles for Plugins -->
<link rel="stylesheet" type="text/css" href="css/swiper.min.css">
<!--Styles for RTL-->
<!--<link rel="stylesheet" type="text/css" href="css/rtl.css">-->
</head>
<body class="crumina-grid">
<?php include_once("includes/overall/googleanalyticstracking.php") ?>
<!-- Preloader -->
<div id="hellopreloader" style="display: block; position: fixed;z-index: 99999;top: 0;left: 0;width: 100%;height: 100%;min-width: 100%;background: #66b5ff url(svg/preload.svg) center center no-repeat;background-size: 41px;opacity: 1;"></div>
<!-- ... end Preloader -->
<!-- Header -->
<?php include 'includes/overall/header/white/header.php'; ?>
<!-- ... End Header -->
<div class="content-wrapper">
<!-- Main Slider -->
<div class="crumina-module crumina-module-slider container-full-width">
<div class="swiper-container main-slider navigation-center-both-sides" data-effect="fade">
<!-- Additional required wrapper -->
<div class="swiper-wrapper">
<!-- Slides -->
<div class="swiper-slide bg-1 main-slider-bg-light">
<div class="container">
<div class="row table-cell">
<div class="col-lg-8 col-lg-offset-2 col-md-8 col-md-offset-2 col-sm-12 col-sm-offset-0 col-xs-12">
<div class="slider-content align-center">
<h1 class="slider-content-title with-decoration" data-swiper-parallax="-100">
Welcome to <br> Gigabyte Developers
<svg class="first-decoration utouch-icon utouch-icon-arrow-left"><use xlink:href="#utouch-icon-arrow-left"></use></svg>
<svg class="second-decoration utouch-icon utouch-icon-arrow-left"><use xlink:href="#utouch-icon-arrow-left"></use></svg>
</h1>
<h6 class="slider-content-text" data-swiper-parallax="-200">Highly rated<br>Very efficient and reliable<br>Your option for software development
</h6>
<div class="main-slider-btn-wrap" data-swiper-parallax="-300">
<a href="products" class="btn btn--yellow btn--with-shadow">
Learn More
</a>
<a href="about" class="btn btn-border btn--with-shadow c-primary">
Get Started Now
</a>
</div>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="slider-thumb" data-swiper-parallax="-400" data-swiper-parallax-duration="600">
<img src="img/slides1.png" alt="slider">
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide bg-2 main-slider-bg-light">
<div class="container table">
<div class="row table-cell">
<div class="col-lg-5 col-md-12 col-sm-12 col-xs-12">
<div class="slider-content align-both">
<h2 class="slider-content-title" data-swiper-parallax="-100">
<span class="c-primary">Gigabyte Developers</span>
is one of the best Tech Company in Africa.
</h2>
<h6 class="slider-content-text" data-swiper-parallax="-200">We offer development services for a wide range of platforms for both Mobile and Web. <br>We deliver unique software solutions
</h6>
<div class="main-slider-btn-wrap" data-swiper-parallax="-300">
<!--<a href="#" class="btn btn-market btn--with-shadow">
<svg class="utouch-icon utouch-icon-apple-logotype-1"><use xlink:href="#utouch-icon-apple-logotype-1"></use></svg>
<div class="text">
<span class="sup-title">Download on the</span>
<span class="title">App Store</span>
</div>
</a>-->
<a href="#" class="btn btn-market btn--with-shadow">
<img class="utouch-icon" src="svg-icons/google-play.svg" alt="google">
<div class="text">
<span class="sup-title">See our Android apps on</span>
<span class="title">Google Play Store</span>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide thumb-left bg-3 main-slider-bg-light">
<div class="container table full-height">
<div class="row table-cell">
<div class="col-lg-6 col-sm-12 table-cell">
<div class="slider-content align-both">
<h2 class="slider-content-title" data-swiper-parallax="-100">Rise up with the most interesting services we offer our clients.</h2>
<h6 class="slider-content-text" data-swiper-parallax="-200">Achieve greater potential in your business by allowing us develop your websites, mobile or desktop applications or even your graphic design needs. <br>We would definitely deliver our best.
</h6>
<div class="main-slider-btn-wrap" data-swiper-parallax="-300">
<a href="about" class="btn btn--lime btn--with-shadow">
Contact us now
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-sm-12 table-cell">
<div class="slider-thumb" data-swiper-parallax="-300" data-swiper-parallax-duration="500">
<img src="img/slides2.png" alt="slider">
</div>
</div>
</div>
</div>
</div>
</div>
<!--Prev next buttons-->
<div class="btn-prev with-bg">
<svg class="utouch-icon icon-hover utouch-icon-arrow-left-1"><use xlink:href="#utouch-icon-arrow-left-1"></use></svg>
<svg class="utouch-icon utouch-icon-arrow-left1"><use xlink:href="#utouch-icon-arrow-left1"></use></svg>
</div>
<div class="btn-next with-bg">
<svg class="utouch-icon icon-hover utouch-icon-arrow-right-1"><use xlink:href="#utouch-icon-arrow-right-1"></use></svg>
<svg class="utouch-icon utouch-icon-arrow-right1"><use xlink:href="#utouch-icon-arrow-right1"></use></svg>
</div>
</div>
</div>
<!-- ... end Main Slider -->
<!-- Info Boxes -->
<section class="medium-padding100">
<div class="container">
<div class="crumina-module crumina-heading">
<h2 class="heading-title" style="text-align: center">Some of our successful <span class="c-primary">mobile applications</span></h2>
<p class="heading-text" style="text-align: center">Here's our top 3 best performing applications we developed for mobile, available for download on the App Store.
</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="crumina-module crumina-info-box info-box--standard-hover">
<div class="info-box-image">
<img class="utouch-icon" src="svg-icons/firefiles.svg" alt="smartphone">
<img class="cloud" src="img/clouds9.png" alt="cloud">
</div>
<div class="info-box-content">
<a href="#" class="h5 info-box-title">FireFiles</a>
<p class="info-box-text">The All-in-One, Powerful Android File Manager for everything that runs on the Android OS. Over the past months, the installation and usage rate of firefiles across the world has experienced an accelerated increase. People love FireFiles.
</p>
</div>
<a href="https://play.google.com/store/apps/details?id=com.gigabytedevelopersinc.app.explorer" target="_blank" class="btn-next">
<svg class="utouch-icon icon-hover utouch-icon-arrow-right-1"><use xlink:href="#utouch-icon-arrow-right-1"></use></svg>
<svg class="utouch-icon utouch-icon-arrow-right1"><use xlink:href="#utouch-icon-arrow-right1"></use></svg>
</a>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="crumina-module crumina-info-box info-box--standard-hover">
<div class="info-box-image">
<img class="utouch-icon" src="svg-icons/cometotp.svg" alt="smartphone">
<img class="cloud" src="img/clouds10.png" alt="cloud">
</div>
<div class="info-box-content">
<a href="#" class="h5 info-box-title">CometOTP</a>
<p class="info-box-text">One of the best, 2-Factor OTP Authentication (2FA) application for Android. With CometOTP, you need not worry about who has the passwords to your online accounts. Simply install CometOTP, and setup 2FA for swift authentication.
</p>
</div>
<a href="https://play.google.com/store/apps/details?id=com.gigabytedevelopersinc.app.CometOTP" target="_blank" class="btn-next">
<svg class="utouch-icon icon-hover utouch-icon-arrow-right-1"><use xlink:href="#utouch-icon-arrow-right-1"></use></svg>
<svg class="utouch-icon utouch-icon-arrow-right1"><use xlink:href="#utouch-icon-arrow-right1"></use></svg>
</a>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="crumina-module crumina-info-box info-box--standard-hover">
<div class="info-box-image">
<img class="utouch-icon" src="svg-icons/sonshub.svg" alt="smartphone">
<img class="cloud" src="img/clouds8.png" alt="cloud">
</div>
<div class="info-box-content">
<a href="#" class="h5 info-box-title">SonsHub Mobile</a>
<p class="info-box-text">A platform to stream or download gospel content like sermons, devotionals, videos, songs, etc from gospel artists and religious leaders around the world. Download and Install SonsHub Mobile today to start enjoying unlimited gospel content.
</p>
</div>
<a href="https://play.google.com/store/apps/details?id=com.cuid.gigabytedevelopersinc.splanner" target="_blank" class="btn-next">
<svg class="utouch-icon icon-hover utouch-icon-arrow-right-1"><use xlink:href="#utouch-icon-arrow-right-1"></use></svg>
<svg class="utouch-icon utouch-icon-arrow-right1"><use xlink:href="#utouch-icon-arrow-right1"></use></svg>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- ... end Info Boxes -->
<!-- Slider with vertical tabs -->
<section class="crumina-module crumina-module-slider slider-tabs-vertical-line">
<div class="swiper-container" data-show-items="1">
<div class="swiper-wrapper">
<div class="swiper-slide bg-primary-color bg-5" data-mh="slide">
<div class="container">
<div class="row">
<div class="col-lg-4 col-lg-offset-1 col-md-5 col-md-offset-0 col-sm-12 col-xs-12">
<div class="slider-tabs-vertical-thumb">
<img src="img/app-1.png" alt="iphone">
</div>
</div>
<div class="col-lg-6 col-lg-offset-1 col-md-7 col-md-offset-0 col-sm-12 col-xs-12">
<div class="crumina-module crumina-heading custom-color c-white">
<h6 class="heading-sup-title">User Interface (UI)</h6>
<h2 class="heading-title">Discover new horisons</h2>
<div class="heading-text">If we want our users to like our software, we should design it to behave like a likeable person: Respectful, Generous and Helpful. <br>As far as our customers are concerned, the interface is the product and we try as much as possible to give you (our client) the perfect User Interface for your mobile, desktop or web applications.
</div>
</div>
<a href="#" class="btn btn-market btn--with-shadow">
<svg class="utouch-icon utouch-icon-apple-logotype-1"><use xlink:href="#utouch-icon-apple-logotype-1"></use></svg>
<div class="text">
<span class="sup-title">Download on the</span>
<span class="title">App Store</span>
<span class="title">Coming Soon</span>
</div>
</a>
<a href="https://play.google.com/store/apps/dev?id=4617962611760843834" class="btn btn-market btn--with-shadow">
<img class="utouch-icon" src="svg-icons/google-play.svg" alt="google">
<div class="text">
<span class="sup-title">Download on the</span>
<span class="title">Google Play</span>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="swiper-slide bg-orange-light bg-6" data-mh="slide">
<div class="container">
<div class="row">
<div class="col-lg-4 col-lg-offset-1 col-md-5 col-md-offset-0 col-sm-12 col-xs-12">
<div class="slider-tabs-vertical-thumb">
<img src="img/app-2.png" alt="iphone">
</div>
</div>
<div class="col-lg-6 col-lg-offset-1 col-md-7 col-md-offset-0 col-sm-12 col-xs-12">
<div class="crumina-module crumina-heading custom-color c-white">
<h6 class="heading-sup-title">User Experience (UX)</h6>
<h2 class="heading-title">Products that stand out</h2>
<div class="heading-text">Any product that needs a manual to work is broken, that's why we pay so much detailed attention to User Experience regarding our software. <br>We don't make product designs to make our own lives easier, we make product designs to make our customers lives easier. A good software architecture is a neccessity.
</div>
</div>
<a href="#" class="btn btn-market btn--with-shadow">
<svg class="utouch-icon utouch-icon-apple-logotype-1"><use xlink:href="#utouch-icon-apple-logotype-1"></use></svg>
<div class="text">
<span class="sup-title">Download on the</span>
<span class="title">App Store</span>
</div>
</a>
<a href="#" class="btn btn-market btn--with-shadow">
<img class="utouch-icon" src="svg-icons/google-play.svg" alt="google">
<div class="text">
<span class="sup-title">Download on the</span>
<span class="title">Google Play</span>
</div>
</a>
</div>
</div>
</div>
</div>
<!--<div class="swiper-slide bg-red bg-7" data-mh="slide">
<div class="container">
<div class="row">
<div class="col-lg-4 col-lg-offset-1 col-md-5 col-md-offset-0 col-sm-12 col-xs-12">
<div class="slider-tabs-vertical-thumb">
<img src="img/app-3.png" alt="iphone">
</div>
</div>
<div class="col-lg-6 col-lg-offset-1 col-md-7 col-md-offset-0 col-sm-12 col-xs-12">
<div class="crumina-module crumina-heading custom-color c-white">
<h6 class="heading-sup-title">User Interface</h6>
<h2 class="heading-title">Discover new horisons</h2>
<div class="heading-text">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed
diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum.
Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit
litterarum formas humanitatis per.
</div>
</div>
<a href="#" class="btn btn-market btn--with-shadow">
<svg class="utouch-icon utouch-icon-apple-logotype-1"><use xlink:href="#utouch-icon-apple-logotype-1"></use></svg>
<div class="text">
<span class="sup-title">Download on the</span>
<span class="title">App Store</span>
</div>
</a>
<a href="#" class="btn btn-market btn--with-shadow">
<img class="utouch-icon" src="svg-icons/google-play.svg" alt="google">
<div class="text">
<span class="sup-title">Download on the</span>
<span class="title">Google Play</span>
</div>
</a>
</div>
</div>
</div>
</div>-->
</div>
<div class="slider-slides slider-slides--vertical-line">
<a href="#" class="slides-item">
<span class="round primary"></span>01.
</a>
<a href="#" class="slides-item">
<span class="round orange"></span>02.
</a>
<!--<a href="#" class="slides-item">
<span class="round red"></span>03.
</a>-->
</div>
</div>
</section>
<!-- ... Slider with vertical tabs -->
<!-- Video -->
<section class="bg-8 background-contain pt100">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="crumina-module crumina-heading">
<h6 class="heading-sup-title">Watch the video</h6>
<h2 class="heading-title">Life at <span class="c-primary">Gigabyte Developers</span></h2>
<p class="heading-text">Our team at Gigabyte Developers work ceaselessly to offer you a wide range of professional services in and outside the world of technology. You can also Contact Us if you want to know more about the services we render to our customers.
</p>
</div>
<a href="contact" class="btn btn-small btn--icon-right btn-border btn--with-shadow c-primary">
<svg class="utouch-icon utouch-icon-arrow-right1"><use xlink:href="#utouch-icon-arrow-right1"></use></svg>
<div class="text">
<span class="title">Contact Us Now</span>
</div>
</a>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="crumina-module crumina-our-video">
<div class="video-thumb">
<img src="img/video-thumb.png" alt="video">
<a href="https://www.youtube.com/user/Enwokoma" class="video-control js-popup-iframe">
<img src="img/play.png" alt="play">
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ... end Video -->
<!-- Clients Block -->
<section class="crumina-module crumina-clients background-contain bg-yellow">
<div class="container">
<div class="row">
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
<a class="clients-item" href="#">
<span class="clients-images">
<img src="img/partner1.jpg" class="" alt="logo">
<img src="img/partner1-1.png" class="hover" alt="logo">
</span>
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
<a class="clients-item" href="#">
<span class="clients-images">
<img src="img/partner2.jpg" class="" alt="logo">
<img src="img/partner2-1.png" class="hover" alt="logo">
</span>
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
<a class="clients-item" href="#">
<span class="clients-images">
<img src="img/partner3.jpg" class="" alt="logo">
<img src="img/partner3-1.png" class="hover" alt="logo">
</span>
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
<a class="clients-item" href="#">
<span class="clients-images">
<img src="img/partner4.jpg" class="" alt="logo">
<img src="img/partner4-1.png" class="hover" alt="logo">
</span>
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
<a class="clients-item" href="#">
<span class="clients-images">
<img src="img/partner5.jpg" class="" alt="logo">
<img src="img/partner5-1.png" class="hover" alt="logo">
</span>
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
<a class="clients-item" href="#">
<span class="clients-images">
<img src="img/partner6.jpg" class="" alt="logo">
<img src="img/partner6-1.png" class="hover" alt="logo">
</span>
</a>
</div>
</div>
</div>
</section>
<!-- ... end Clients Block -->
<!-- Info Boxes -->
<section class="bg-9 background-contain medium-padding120">
<div class="container">
<div class="row">
<div class="display-flex info-boxes">
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12">
<div class="crumina-module crumina-info-box info-box--standard-round icon-right negative-margin-right150">
<div class="info-box-image">
<img src="svg-icons/rocket.svg" alt="chat" class="utouch-icon">
</div>
<div class="info-box-content">
<h5 class="info-box-title">Professional Designs</h5>
<p class="info-box-text">Design and Develop your websites with Us. <br>Unique, Professional Graphic and Web Designs are right here at Gigabyte Developers because Creativity is our first choice for Success.
</p>
</div>
</div>
<div class="crumina-module crumina-info-box info-box--standard-round icon-right negative-margin-right150">
<div class="info-box-image">
<img src="svg-icons/devices.svg" alt="chat" class="utouch-icon">
</div>
<div class="info-box-content">
<h5 class="info-box-title">Software Development</h5>
<p class="info-box-text">Do you have that awesome app idea and would want to make it a reality?<br>We offer Software Development for a wide range of platforms such as Android, iOS, etc.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12 align-center">
<img class="particular-image" src="img/image.png" alt="image">
<!-- <a href="products" class="btn btn--red btn--with-shadow">-->
<!-- Learn More-->
<!-- </a>-->
</div>
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12">
<div class="crumina-module crumina-info-box info-box--standard-round negative-margin-left150">
<div class="info-box-image">
<img src="svg-icons/clock.svg" alt="chat" class="utouch-icon">
</div>
<div class="info-box-content">
<h5 class="info-box-title">Codebase Updates</h5>
<p class="info-box-text"><!--You started your website with PHP 5.x or your mobile application with JAVA and you wake up to hear about PHP 7.x and Kotlin and you feel the need-->Want to update your code to the latest technologies?<br>Over here, we utilize mordern technologies and follow the clock of change. Trend with Us.
</p>
</div>
</div>
<div class="crumina-module crumina-info-box info-box--standard-round negative-margin-left150">
<div class="info-box-image">
<img src="svg-icons/library.svg" alt="chat" class="utouch-icon">
</div>
<div class="info-box-content">
<h5 class="info-box-title">Learn with Us</h5>
<p class="info-box-text">Ever wanted to learn how to code but don't know where to start? <br>Well, we offer lots of tutorial classes for a wide range of programming languages.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ... Info Boxes -->
<!-- Counters -->
<section class="bg-secondary-color background-contain bg-10">
<div class="container">
<div class="row">
<div class="counters">
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
<div class="crumina-module crumina-counter-item">
<div class="counter-numbers counter c-yellow">
<span data-speed="2000" data-refresh-interval="3" data-to="17" data-from="2">17</span>
<div class="units">M+</div>
</div>
<h5 class="counter-title">Code Lines</h5>
</div>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
<div class="crumina-module crumina-counter-item">
<div class="counter-numbers counter c-yellow">
<span data-speed="2000" data-refresh-interval="3" data-to="500" data-from="2">500</span>
<div class="units">+</div>
</div>
<h5 class="counter-title">Solutions</h5>
</div>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
<div class="crumina-module crumina-counter-item">
<div class="counter-numbers counter c-yellow">
<span data-speed="2000" data-refresh-interval="3" data-to="300" data-from="2">300</span>
<div class="units">+</div>
<!--<div class="units">M+</div>-->
</div>
<h5 class="counter-title">Customers</h5>
</div>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 col-xs-12">
<div class="crumina-module crumina-counter-item">
<div class="counter-numbers counter c-yellow">
<span data-speed="2000" data-refresh-interval="3" data-to="10" data-from="2">10</span>
<div class="units">M+</div>
</div>
<h5 class="counter-title">Downloads</h5>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12">
<h5 class="c-white">We have a global reach</h5>
<p class="c-semitransparent-white">Gigabyte Developers has gotten a worldwide coverage with our applications actively used on 130+ countries around the globe.</p>
</div>
</div>
</div>
</div>
</section>
<!-- ... end Counters -->
<!-- FAQS Slider -->
<section class="crumina-module crumina-module-slider pt100">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 mb30">
<div class="crumina-module crumina-heading">
<h6 class="heading-sup-title">FAQ</h6>
<h2 class="heading-title">6 common Tech questions</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="swiper-container navigation-bottom" data-effect="fade">
<div class="slider-slides">
<a href="#" class="slides-item">
1
</a>
<a href="#" class="slides-item">
2
</a>
<a href="#" class="slides-item">
3
</a>
<a href="#" class="slides-item">
4
</a>
<a href="#" class="slides-item">
5
</a>
<a href="#" class="slides-item">
6
</a>
</div>
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="col-lg-4 col-md-12 col-sm-12" data-swiper-parallax="-100">
<div class="slider-faqs-thumb">
<img class="utouch-icon" src="svg-icons/dial.svg" alt="image">
</div>
</div>
<div class="col-lg-8 col-md-12 col-sm-12" data-swiper-parallax="-300">
<h5 class="slider-faqs-title">What’s wrong with using a Public Wi-Fi?</h5>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<p>Most of us put a lot of effort into finding free Wi-Fi, but public Wi-Fi networks have their own share of problems, particularly that it is very insecure. Even if a Wi-Fi network has a password, other people on the network could see what you’re doing, or if they were so inclined, they could access and steal your personal information and passwords.
</p>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<p>Luckily, there’s a lot you can do to stay safe: <br>1.) Make sure sharing is turned off <br>2.) Use HTTPS whenever possible <br>3.) Run your traffic through a VPN.</p>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="col-lg-4 col-md-12 col-sm-12" data-swiper-parallax="-100">
<div class="slider-faqs-thumb">
<img class="utouch-icon" src="svg-icons/fingerprint.svg" alt="image">
</div>
</div>
<div class="col-lg-8 col-md-12 col-sm-12" data-swiper-parallax="-300">
<h5 class="slider-faqs-title">How does a fingerprint scanner work?</h5>
<p>Fingerprint scanners may employ different types of sensors to scan and generate the digital image of fingerprint patterns. Fingerprint sensors make use of different techniques to scan fingerprints, for example a sensor may be optical, capacitive, thermal, etc. When a finger is put on the scanning area, digital image of fingerprint patterns is read by the sensor. This digital image is pre-processed to remove unnecessary noise and enhance the image quality. This enhanced image is taken through a fingerprint algorithm to identify unique points like ridge endings, bifurcation, short ridge, island, spur, etc. These details are called minutiae. Since there are a huge number of possibilities for the location of minutiae, fingerprints are theoretically unique. A biometric template is generated after post-processing the fingerprint image, which is stored in a database.
</p>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<ul class="list list--standard">
<li>
<svg class="utouch-icon utouch-icon-correct-symbol-1"><use xlink:href="#utouch-icon-correct-symbol-1"></use></svg>
<a href="#">Contact Us to develop your fingerprint algorithm</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="col-lg-4 col-md-12 col-sm-12" data-swiper-parallax="-100">
<div class="slider-faqs-thumb">
<img class="utouch-icon" src="svg-icons/devices.svg" alt="image">
</div>
</div>
<div class="col-lg-8 col-md-8 col-sm-12" data-swiper-parallax="-100">
<h5 class="slider-faqs-title">2FA vs Security Question?</h5>
<p>The one-time token via 2FA offers much more security than the secret question simply because it implements 2-factor authentication; all things being equal, 2FA (password + code via SMS, password + RSA SecureID token, etc) is always safer than a simple password or security question which can be easily broken into and bypassed.
</p>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="crumina-module crumina-info-box info-box--standard">
<div class="info-box-image display-flex">
<svg class="utouch-icon utouch-icon-checked"><use xlink:href="#utouch-icon-checked"></use></svg>
<h6 class="info-box-title">Quick Settings (UX)</h6>
</div>
<p class="info-box-text">CometOTP is our unique 2FA mobile application with a great User Experience, easy navigation and simplicity. Download it on Play Store
</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="crumina-module crumina-info-box info-box--standard">
<div class="info-box-image display-flex">
<svg class="utouch-icon utouch-icon-checked"><use xlink:href="#utouch-icon-checked"></use></svg>
<h6 class="info-box-title">Looks Perfect (UI)</h6>
</div>
<p class="info-box-text">CometOTP is our unique 2FA mobile application with a great material design that offers a perfect User Interface.</p>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="col-lg-4 col-md-12 col-sm-12" data-swiper-parallax="-100">
<div class="slider-faqs-thumb">
<img class="utouch-icon" src="svg-icons/payment-method.svg" alt="image">
</div>
</div>
<div class="col-lg-8 col-md-12 col-sm-12" data-swiper-parallax="-300">
<h5 class="slider-faqs-title">How to protect your ATM cards online?</h5>
<p class="weight-bold">Online shopping is now more popular today than ever, which means it is more important than ever to protect your information online. Try to shop at established businesses/stores that you can contact easily if there is an issue.
</p>
<p>Look for sites with <b>https:</b> in their web addresses—the <b><i>“s”</i></b> stands for secured. Even if you’re on a secured site, don’t share your information unless you have to and you know how it will be used. Make sure you check policies on payment, refunds, returns and shipping. Finally, be sure to keep copies of any confirmation codes or receipts.
</p>
</div>
</div>
<div class="swiper-slide">
<div class="col-lg-4 col-md-12 col-sm-12" data-swiper-parallax="-100">
<div class="slider-faqs-thumb">
<img class="utouch-icon" src="svg-icons/chat1.svg" alt="image">
</div>
</div>
<div class="col-lg-8 col-md-12 col-sm-12" data-swiper-parallax="-300">
<h5 class="slider-faqs-title">What are the types of mobile applications?</h5>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<p>Mobile applications are of three types:<br><br><b>Native Application: </b>Native application installed from specific application store like Android’s google play and Apple’s app store. An app which can be installed and run on your mobile devices is known as a native application. E.g: WhatsApp, Angry birds, etc.
</p>
<p><b>Web Application: </b>Web applications run from mobile web browsers like Chrome, Firefox, Opera, Safari etc using mobile network or WiFi. Examples are <a href="https://m.facebook.com" target="_blank">m.facebook.com</a>, <a href="https://m.gmail.com" target="_blank">m.gmail.com</a>, <a href="https://m.yahoo.com" target="_blank">m.yahoo.com</a>, etc.</p>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<p><b>Hybrid Application: </b>Hybrid applications are combinations of native and web application. They can run on devices or offline and are written using web technologies like HTML5 and CSS. Some examples are eBay, Flipkart, etc.</p>
<a href="contact" class="btn btn-border btn--with-shadow c-secondary">
Contact Us Now
</a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="col-lg-4 col-md-12 col-sm-12" data-swiper-parallax="-100">
<div class="slider-faqs-thumb">
<img class="utouch-icon" src="svg-icons/tap.svg" alt="image">
</div>
</div>
<div class="col-lg-8 col-md-12 col-sm-12" data-swiper-parallax="-300">
<h5 class="slider-faqs-title">What are the benefits of biometric technologies?</h5>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<p>Biometric technology authenticates users based on the unique characteristics of an individual user. These characteristics are not easily stolen, lost, forgotten or imitated, making biometrics a better alternative than token technologies such as smart cards and other “tow factor” authentication systems.
</p>
<p>Biometrics has been successful as part of both physical and technology access solutions.</p>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<p>Biometrics does reduce costs associated with users forgetting passwords--help desk costs for this activity range from $25 to $75 per reset.</p>
<ul class="list list--standard">
<li>
<svg class="utouch-icon utouch-icon-correct-symbol-1"><use xlink:href="#utouch-icon-correct-symbol-1"></use></svg>
<a href="https://bayometric.com" target="_blank">Learn more about Biometric technology</a>
</li>
<li>
<svg class="utouch-icon utouch-icon-correct-symbol-1"><use xlink:href="#utouch-icon-correct-symbol-1"></use></svg>
<a href="#">Setup a Biometric System now</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--Prev next buttons-->
<div class="btn-slider-wrap navigation-left-bottom">
<div class="btn-prev">
<svg class="utouch-icon icon-hover utouch-icon-arrow-left-1"><use xlink:href="#utouch-icon-arrow-left-1"></use></svg>
<svg class="utouch-icon utouch-icon-arrow-left1"><use xlink:href="#utouch-icon-arrow-left1"></use></svg>
</div>
<div class="btn-next">
<svg class="utouch-icon icon-hover utouch-icon-arrow-right-1"><use xlink:href="#utouch-icon-arrow-right-1"></use></svg>
<svg class="utouch-icon utouch-icon-arrow-right1"><use xlink:href="#utouch-icon-arrow-right1"></use></svg>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ... end FAQS Slider -->
<!-- Info Boxes -->
<section class="crumina-module crumina-module-slider bg-blue-lighteen background-contain bg-11 medium-padding100">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
<div class="crumina-module crumina-heading">
<h6 class="heading-sup-title">Screenshots</h6>
<h2 class="heading-title">Beautiful Interface</h2>
<p class="heading-text">A good user interface can have a powerful impact on the usability and user experience of an application. Here at Gigabyte Developers, we aspire to create an interface that enables and encourages end users to use our software more frequently, so they become more confident, efficient and productive users.<br> We provide you with the best Software solutions for your business.
</p>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="crumina-module crumina-info-box info-box--standard">
<div class="info-box-image display-flex">
<svg class="utouch-icon utouch-icon-checked"><use xlink:href="#utouch-icon-checked"></use></svg>
<h6 class="info-box-title">Easy Navigation</h6>
</div>
<p class="info-box-text">Software that trends would always have an awesome User Experience. Our apps are developed with our users in mind.
</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="crumina-module crumina-info-box info-box--standard">
<div class="info-box-image display-flex">
<svg class="utouch-icon utouch-icon-checked"><use xlink:href="#utouch-icon-checked"></use></svg>
<h6 class="info-box-title">Scalable Applications</h6>
</div>
<p class="info-box-text">Say No to heavy applications that do so little yet take up so much storage space.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-5 col-lg-offset-1 col-md-12 col-md-offset-0 col-sm-12 col-xs-12">
<div class="swiper-container pagination-bottom slider-tripple-right-image" data-show-items="1" data-effect="coverflow" data-centered-slider="false" data-stretch="170" data-depth="195">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="img/phone-1.png" alt="slide">
</div>
<div class="swiper-slide">
<img src="img/phone-2.png" alt="slide">
</div>
<div class="swiper-slide">
<img src="img/phone-3.png" alt="slide">
</div>
</div>
<!-- If we need pagination -->
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</section>
<!-- ... end Info Boxes -->
<!-- Testimonials -->
<section class="crumina-module crumina-module-slider bg-4 cloud-center navigation-center-both-sides medium-padding100">
<div class="container">
<div class="row">
<div class="col-lg-6 col-lg-offset-3 col-md-6 col-md-offset-3 col-sm-12 col-sm-offset-0">
<div class="swiper-container" data-effect="fade">
<div class="swiper-wrapper">
<div class="crumina-module crumina-testimonial-item testimonial-item-author-top swiper-slide">
<div class="testimonial-img-author" data-swiper-parallax="-100">
<img src="img/author2.png" alt="avatar">
</div>
<h6 class="testimonial-text" data-swiper-parallax="-300">
You all are worth my 5stars because you turned my dreams of owning an online store into reality for me. I have successfully launched my shopping website, all thanks to Gigabyte Developers.
</h6>
<div class="author-info-wrap" data-swiper-parallax="-100">
<div class="author-info">
<a href="#" class="h6 author-name">Tunji (Ojalawa)</a>
<div class="author-company">Entrepreneur, 23 years old</div>
</div>
</div>
</div>
<div class="crumina-module crumina-testimonial-item testimonial-item-author-top swiper-slide">
<div class="testimonial-img-author" data-swiper-parallax="-100">
<img src="img/author2.png" alt="avatar">
</div>
<h6 class="testimonial-text" data-swiper-parallax="-300">
I have been using CalcMate for a while now and it has been at the top of it's game. Starting from its effectiveness to fastness to its eas of use everything is so perfect. To top it all they even added graph feature and can solve all type of equations. Awesome indeed!!!
</h6>
<div class="author-info-wrap" data-swiper-parallax="-100">
<div class="author-info">
<a href="https://www.sitejabber.com/reviews/gigabytedevelopersinc.com#2" target="_blank" class="h6 author-name">Igweka Emeka (Emskaro)</a>
<div class="author-company">Student, 23 years old</div>
</div>
</div>
</div>
<div class="crumina-module crumina-testimonial-item testimonial-item-author-top swiper-slide">
<div class="testimonial-img-author" data-swiper-parallax="-100">
<img src="img/author2.png" alt="avatar">
</div>
<h6 class="testimonial-text" data-swiper-parallax="-300">
I downloaded the Adobe Photoshop CC 2017 and it is working fine. What I liked most about this firm is that they don't bombard you with ads unlike other firms. You can get it at once. I am sure gonna suggest my friends to download softwares from this firm.
</h6>
<div class="author-info-wrap" data-swiper-parallax="-100">
<div class="author-info">
<a href="https://www.sitejabber.com/reviews/gigabytedevelopersinc.com#4" target="_blank" class="h6 author-name">Bedav .R</a>
<div class="author-company">Student, 23 years old</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>