-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1121 lines (1010 loc) · 55.7 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
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>
<head>
<meta charset="utf-8">
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
<title>WebileSoft</title>
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!--Favicons -->
<link rel="shortcut icon" href="images/favicon.png">
<!--styles -->
<link href="css/bootstrap.min.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/font-awesome/font-awesome.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/et-line-font/et-lineicono.css" media="screen" rel="stylesheet" type="text/css" />
<link href="js/owl-carousel/owl.theme.default.css" media="screen" rel="stylesheet" type="text/css" />
<link href="js/owl-carousel/owl.carousel.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/magnific-popup.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/slick.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/slick-theme.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/style.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/responsive.css" media="screen" rel="stylesheet" type="text/css" />
<!-- The HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target="#main-menu">
<!--Start Page loader -->
<div id="pageloader">
<div class="loader">
<img src="images/progress.gif" alt='loader' />
</div>
</div>
<!--End Page loader -->
<!--Start Navigation-->
<header id="header">
<div class="container">
<div class="row">
<div class="col-sm-12">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#main-menu">
<span class="sr-only">Toggle navigation</span>
<span class="fa fa-bars"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--Start Logo -->
<div class="logo-nav">
<a href="index.html">
<img src="images/logo.png" alt="WebileSoft" />
</a>
</div>
<!--End Logo -->
<div class="clear-toggle"></div>
<div id="main-menu" class="collapse scroll navbar-right">
<ul class="nav">
<li class="active"> <a href="#home">Home</a> </li>
<li> <a href="#feature">About</a> </li>
<li> <a href="#team">Team</a> </li>
<li> <a href="#services">Services</a> </li>
<!--<li> <a href="#works">Our Work</a> </li>-->
<li> <a href="#blog">Our Work</a></li>
<!--<li> <a href="#testimonials">Testimonials</a></li>-->
<li> <a href="#contact">Contact</a> </li>
</ul>
</div><!-- end main-menu -->
</div>
</div>
</div>
</header>
<!--End Navigation-->
<!--Start Static Banner-->
<section id="home" class="banner full-height">
<div class="overlay"></div>
<div class="banner-inner">
<div class="banner-caption-main">
<div class="container scroll ">
<h2 class="uppercase">We Are Specializing in JavaScript IT-company</h2>
<p class="lead">Founded in 2016, WebileSoft provides end-to-end development of consumer web, mobile, desktop and embedded applications. We specialize on JavaScript and apply the accumulated backend and frontend engineering experience for projects of any scale.</p>
<a href="#feature" class="btn btn-white-border">About US</a>
<a href="#contact" class="btn btn-primary">Contact US</a>
</div>
</div>
</div>
</section>
<!--End Static Banner-->
<!--Start About Section-->
<section id="feature" class="section featue-section">
<div class="container">
<div class="row">
<div class="section-heading text-center">
<h2>Welcome To WebileSoft</h2>
<p class="lead">From B2C & B2B Portals, to DMS, CMS and analytics tools, we deliver various solutions to customers from across diverse industries around the globe.
</p>
</div>
<!--Features item-->
<div class="col-md-4">
<div class="feature-box">
<div class="icon"> <i class="icon-pricetags"></i> </div>
<div class="feature-info">
<h3>Retail & Wholesale</h3>
</div>
</div>
</div>
<!--Features item-->
<div class="col-md-4">
<div class="feature-box">
<div class="icon"> <i class="icon-briefcase"></i> </div>
<div class="feature-info">
<h3>Public Sector</h3>
</div>
</div>
</div>
<!--Features item-->
<div class="col-md-4">
<div class="feature-box">
<div class="icon"> <i class="icon-bargraph"></i> </div>
<div class="feature-info">
<h3>Finance</h3>
</div>
</div>
</div>
<!--Features item-->
<div class="col-md-4">
<div class="feature-box">
<div class="icon"> <i class=" icon-global"></i> </div>
<div class="feature-info">
<h3>Telecom</h3>
</div>
</div>
</div>
<!--Features item-->
<div class="col-md-4">
<div class="feature-box">
<div class="icon"> <i class="icon-lock"></i> </div>
<div class="feature-info">
<h3>Insurance</h3>
</div>
</div>
</div>
<!--Features item-->
<div class="col-md-4">
<div class="feature-box">
<div class="icon"> <i class="icon-laptop"></i> </div>
<div class="feature-info">
<h3>ISV</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End About Section-->
<!-- Skills-->
<section class="skills-section section parallax">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="skill-desc">
<h2 class="title uppercase">Our Skills</h2>
<p>We are small company, specialized on M.E.R.N. technology stack. We can organize any solution, from B2C & B2B Portals, to DMS, CMS and analytics tools, we deliver various solutions to customers from across diverse industries around the globe.</p>
</div>
</div>
<div class="col-md-6">
<div class="skills-main">
<!--Skills Item-->
<div class="progress-main">
<h4>MongoDB<span class="pull-right">62.5%</span></h4>
<div class="progress">
<div class="progress-bar" style="width: 62.5%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="62.5" role="progressbar">
</div>
</div>
</div>
<!--Skills Item-->
<div class="progress-main">
<h4>Express<span class="pull-right">75%</span></h4>
<div class="progress">
<div class="progress-bar" style="width: 75%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="75" role="progressbar">
</div>
</div>
</div>
<!--Skills Item-->
<div class="progress-main">
<h4>React<span class="pull-right">100%</span></h4>
<div class="progress">
<div class="progress-bar" style="width: 100%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="100" role="progressbar">
</div>
</div>
</div>
<!--Skills Item-->
<div class="progress-main">
<h4>Node <span class="pull-right">87.5%</span></h4>
<div class="progress">
<div class="progress-bar" style="width: 87.5%" aria-valuemax="100" aria-valuemin="0" aria-valuenow="87.5" role="progressbar">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Skills-->
<!--Start Team-->
<section id="team" class="section team-section">
<div class="container">
<div class="row">
<div class="section-heading text-center">
<h2>Team Members</h2>
</div>
<div class="team-slide">
<div class="team-members">
<div class="team-photo">
<img src="images/member-1.jpg" alt=""/>
</div>
<div class="team-info">
<h3>Yury Kharytanovich</h3>
<h6>CEO & Co-Founder</h6>
<ul class="socials">
<!--<li> <a href="#"> <i class="fa fa-twitter"></i> </a> </li>-->
<li> <a href="https://www.facebook.com/yury.kharytanovich.94"> <i class="fa fa-facebook"></i> </a> </li>
<li> <a href="https://www.linkedin.com/in/yury-kharytanovich-5b22a4140/"> <i class="fa fa-linkedin"></i> </a> </li>
</ul>
</div>
</div>
<!--/team-members-->
<div class="team-members">
<div class="team-photo">
<img src="images/member-2.jpg" alt=""/>
</div>
<div class="team-info">
<h3>Edvards Kazlouski</h3>
<h6>CTO & Co-Founder</h6>
<ul class="socials">
<li> <a href="https://twitter.com/kazlouski_edv"> <i class="fa fa-twitter"></i> </a> </li>
<li> <a href="https://www.facebook.com/edvards.kazlouski"> <i class="fa fa-facebook"></i> </a> </li>
<li> <a href="https://www.linkedin.com/in/edvards-kazlouski-a26222140/"> <i class="fa fa-linkedin"></i> </a> </li>
</ul>
</div>
</div>
<!--/team-members-->
<div class="team-members">
<div class="team-photo">
<img src="images/member-3.jpg" alt=""/>
</div>
<div class="team-info">
<h3>Eugene Bezrukov</h3>
<h6>Developer</h6>
<ul class="socials">
<!--<li> <a href="#"> <i class="fa fa-twitter"></i> </a> </li>-->
<!--<li> <a href="#"> <i class="fa fa-facebook"></i> </a> </li>-->
<li style="opacity: 0"> <a href="#"> <i class="fa fa-linkedin"></i> </a> </li>
</ul>
</div>
</div>
<!--/team-members-->
<div class="team-members">
<div class="team-photo">
<img src="images/member-4.jpg" alt=""/>
</div>
<div class="team-info">
<h3>Victoria Ksenzuk</h3>
<h6>Developer</h6>
<ul class="socials">
<li> <a href="https://twitter.com/ViKsenzuk"> <i class="fa fa-twitter"></i> </a> </li>
<li> <a href="https://www.facebook.com/profile.php?id=100006888192662&fref=ts"> <i class="fa fa-facebook"></i> </a> </li>
<li> <a href="https://www.linkedin.com/in/viktoryia-ksianzhuk-a6126b133/"> <i class="fa fa-linkedin"></i> </a> </li>
</ul>
</div>
</div>
<!--/team-members-->
<div class="team-members">
<div class="team-photo">
<img src="images/member-5.jpg" alt=""/>
</div>
<div class="team-info">
<h3>Anton Adamkovich</h3>
<h6>Developer</h6>
<ul class="socials">
<!--<li> <a href="#"> <i class="fa fa-twitter"></i> </a> </li>-->
<!--<li> <a href="#"> <i class="fa fa-facebook"></i> </a> </li>-->
<li style="opacity: 0"> <a href="#"> <i class="fa fa-linkedin"></i> </a> </li>
</ul>
</div>
</div>
<!--/team-members-->
<div class="team-members">
<div class="team-photo">
<img src="images/member-6.jpg" alt=""/>
</div>
<div class="team-info">
<h3>Vladislav Leonchyk</h3>
<h6>Developer</h6>
<ul class="socials">
<!--<li> <a href="#"> <i class="fa fa-twitter"></i> </a> </li>-->
<!--<li> <a href="#"> <i class="fa fa-facebook"></i> </a> </li>-->
<li style="opacity: 0"> <a href="#"> <i class="fa fa-linkedin"></i> </a> </li>
</ul>
</div>
</div>
<!--/team-members-->
<div class="team-members">
<div class="team-photo">
<img src="images/member-7.jpg" alt=""/>
</div>
<div class="team-info">
<h3>Andrei Abrazouski</h3>
<h6>Developer</h6>
<ul class="socials">
<!--<li> <a href="#"> <i class="fa fa-twitter"></i> </a> </li>-->
<!--<li> <a href="#"> <i class="fa fa-facebook"></i> </a> </li>-->
<li style="opacity: 0"> <a href="#"> <i class="fa fa-linkedin"></i> </a> </li>
</ul>
</div>
</div>
<!--/team-members-->
<div class="team-members">
<div class="team-photo">
<img src="images/member-8.jpg" alt=""/>
</div>
<div class="team-info">
<h3>Poline Kovalchuk</h3>
<h6>Developer</h6>
<ul class="socials">
<!--<li> <a href="#"> <i class="fa fa-twitter"></i> </a> </li>-->
<!--<li> <a href="#"> <i class="fa fa-facebook"></i> </a> </li>-->
<li style="opacity: 0"> <a href="#"> <i class="fa fa-linkedin"></i> </a> </li>
</ul>
</div>
</div>
<!--/team-members-->
</div>
</div>
</div>
</section>
<!--End Team-->
<!--Start Section-->
<section class="facts">
<div class="container">
<div class="row">
<!--Start Facts-->
<div class="col-md-2 width-20 col-sm-6">
<div class="facts-box">
<h2>7</h2>
<h3>Full time experts</h3>
</div>
</div>
<!--End Facts-->
<!--Start Facts-->
<div class="col-md-2 width-20 col-sm-6">
<div class="facts-box">
<h2>5</h2>
<h3>Senior engineers</h3>
</div>
</div>
<!--End Facts-->
<!--Start Facts-->
<div class="col-md-2 width-20 col-sm-6">
<div class="facts-box">
<h2>5</h2>
<h3>Years of experience</h3>
</div>
</div>
<!--End Facts-->
<!--Start Facts-->
<div class="col-md-2 width-20 col-sm-6">
<div class="facts-box">
<h2>9</h2>
<h3>Person-months for average project</h3>
</div>
</div>
<!--End Facts-->
<!--Start Facts-->
<div class="col-md-2 width-20 col-sm-6">
<div class="facts-box">
<h2>2</h2>
<h3>Years for largest project</h3>
</div>
</div>
<!--End Facts-->
</div>
</div>
</section>
<!--End Section-->
<!--Start Services Section-->
<section id="services" class="section services-section">
<div class="container">
<div class="row">
<div class="col-md-8 col-sm-12 col-md-offset-2 col-sm-offset-0 text-center">
<div class="section-heading">
<h2>what we offer</h2>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="services-box">
<div class="icon"> <i class="fa fa-question"></i> </div>
<div class="services-info">
<h3>Technology Consulting</h3>
<p>WebileSoft engineers provide advisory assistance on JavaScript-driven applications architecture, customization, deployment, and troubleshooting at each stage of your project lifecycle.</p>
</div>
</div>
</div> <!--/.col-md-3-->
<div class="col-md-6 col-sm-6">
<div class="services-box">
<div class="icon"> <i class="fa fa-laptop"></i> </div>
<div class="services-info">
<h3>Development & QA</h3>
<p>WebileSoft utilizes JavaScript, EcmaScript and TypeScript to build custom plugins, APIs and full-stack applications, while ensuring their correct execution with manual and automated tests.</p>
</div>
</div>
</div> <!--/.col-md-3-->
<div class="col-md-6 col-sm-6">
<div class="services-box">
<div class="icon"> <i class="fa fa-diamond"></i> </div>
<div class="services-info">
<h3>Customization</h3>
<p>With custom HTML, CSS and JavaScript implementations, we transform off-the-shelf web systems into tailored solutions that are fully compliant with your corporate style and business needs.</p>
</div>
</div>
</div> <!--/.col-md-3-->
<div class="col-md-6 col-sm-6">
<div class="services-box">
<div class="icon"> <i class="fa fa-wrench"></i> </div>
<div class="services-info">
<h3>Maintenance & Support</h3>
<p>Setting up JS-based monitoring tools, WebileSoft ensures your app remains stable, secure and compatible with the changing context.</p>
</div>
</div>
</div> <!--/.col-md-3-->
</div>
</div>
</section>
<!--End Services Section-->
<!-- Start CTA-->
<section class="cta parallax">
<div class="overlay"></div>
<div class="container scroll">
<div class="cta-inner">
<h2>You want to work with us</h2>
<p>WebileSoft has a global clientele footprint, while our domain knowledge enables us develop solutions for versatile industries.</p>
<a href="#contact" class="btn btn-primary">Contact us</a>
</div>
</div>
</section>
<!-- End CTA-->
<!-- Start Works-->
<!--<section id="works" class="section">-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="col-md-8 col-sm-12 col-md-offset-2 col-sm-offset-0 text-center">-->
<!--<div class="section-heading">-->
<!--<h2>Our Portfolio</h2>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!---->
<!--<div class="row">-->
<!--<ul class="work">-->
<!--<li class="filter" data-filter="all">All</li>-->
<!--<li class="filter" data-filter=".design">Design</li>-->
<!--<li class="filter" data-filter=".development">Development</li>-->
<!--<li class="filter" data-filter=".photography">Photography</li>-->
<!--</ul>-->
<!--</div>-->
<!--<div class="work-inner">-->
<!--<div class="row work-post">-->
<!--<!– Start Item –>-->
<!--<div class="col-md-4 col-sm-6 col-xs-12 mix design photography">-->
<!--<div class="single-work">-->
<!--<img src="images/work/1.jpg" class="img-responsive" alt="portfolio" />-->
<!--<a href="images/work/1.jpg" class="work-popup">-->
<!--<div class="work-details text-center">-->
<!--<div class="overlay"></div>-->
<!--<div class="work-info-text">-->
<!--<h5>project name</h5>-->
<!--<p>Photography</p>-->
<!--</div>-->
<!--</div>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Item –>-->
<!---->
<!--<!– Start Item –>-->
<!--<div class="col-md-4 col-sm-6 col-xs-12 mix development ">-->
<!--<div class="single-work">-->
<!--<img src="images/work/2.jpg" class="img-responsive" alt="" />-->
<!--<a href="images/work/2.jpg" class="work-popup">-->
<!--<div class="work-details text-center">-->
<!--<div class="overlay"></div>-->
<!--<div class="work-info-text">-->
<!--<h5>project name</h5>-->
<!--<p>Photography</p>-->
<!--</div>-->
<!--</div>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Item –>-->
<!---->
<!--<!– Start Item –>-->
<!--<div class="col-md-4 col-sm-6 col-xs-12 mix photography">-->
<!--<div class="single-work">-->
<!--<img src="images/work/3.jpg" class="img-responsive" alt="" />-->
<!--<a href="images/work/3.jpg" class="work-popup">-->
<!--<div class="work-details text-center">-->
<!--<div class="overlay"></div>-->
<!--<div class="work-info-text">-->
<!--<h5>project name</h5>-->
<!--<p>Photography</p>-->
<!--</div>-->
<!--</div>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Item –>-->
<!---->
<!--<!– Start Item –>-->
<!--<div class="col-md-4 col-sm-6 col-xs-12 mix photography">-->
<!--<div class="single-work">-->
<!--<img src="images/work/4.jpg" class="img-responsive" alt="" />-->
<!--<a href="images/work/4.jpg" class="work-popup">-->
<!--<div class="work-details text-center">-->
<!--<div class="overlay"></div>-->
<!--<div class="work-info-text">-->
<!--<h5>project name</h5>-->
<!--<p>Photography</p>-->
<!--</div>-->
<!--</div>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Item –>-->
<!---->
<!--<!– Start Item –>-->
<!--<div class="col-md-4 col-sm-6 col-xs-12 mix photography">-->
<!--<div class="single-work">-->
<!--<img src="images/work/5.jpg" class="img-responsive" alt="" />-->
<!--<a href="images/work/5.jpg" class="work-popup">-->
<!--<div class="work-details text-center">-->
<!--<div class="overlay"></div>-->
<!--<div class="work-info-text">-->
<!--<h5>project name</h5>-->
<!--<p>Photography</p>-->
<!--</div>-->
<!--</div>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Item –>-->
<!---->
<!--<!– Start Item –>-->
<!--<div class="col-md-4 col-sm-6 col-xs-12 mix design">-->
<!--<div class="single-work">-->
<!--<img src="images/work/6.jpg" class="img-responsive" alt="" />-->
<!--<a href="images/work/6.jpg" class="work-popup">-->
<!--<div class="work-details text-center">-->
<!--<div class="overlay"></div>-->
<!--<div class="work-info-text">-->
<!--<h5>project name</h5>-->
<!--<p>Photography</p>-->
<!--</div>-->
<!--</div>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Item –>-->
<!---->
<!--<!– Start Item –>-->
<!--<div class="col-md-4 col-sm-6 col-xs-12 mix development">-->
<!--<div class="single-work">-->
<!--<img src="images/work/7.jpg" class="img-responsive" alt="" />-->
<!--<a href="images/work/7.jpg" class="work-popup">-->
<!--<div class="work-details text-center">-->
<!--<div class="overlay"></div>-->
<!--<div class="work-info-text">-->
<!--<h5>project name</h5>-->
<!--<p>Photography</p>-->
<!--</div>-->
<!--</div>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Item –>-->
<!---->
<!--<!– Start Item –>-->
<!--<div class="col-md-4 col-sm-6 col-xs-12 mix development design">-->
<!--<div class="single-work">-->
<!--<img src="images/work/8.jpg" class="img-responsive" alt="" />-->
<!--<a href="images/work/8.jpg" class="work-popup">-->
<!--<div class="work-details text-center">-->
<!--<div class="overlay"></div>-->
<!--<div class="work-info-text">-->
<!--<h5>project name</h5>-->
<!--<p>Photography</p>-->
<!--</div>-->
<!--</div>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Item –>-->
<!---->
<!--<!– Start Item –>-->
<!--<div class="col-md-4 col-sm-6 col-xs-12 mix photography">-->
<!--<div class="single-work">-->
<!--<img src="images/work/9.jpg" class="img-responsive" alt="" />-->
<!--<a href="images/work/9.jpg" class="work-popup">-->
<!--<div class="work-details text-center">-->
<!--<div class="overlay"></div>-->
<!--<div class="work-info-text">-->
<!--<h5>project name</h5>-->
<!--<p>Photography</p>-->
<!--</div>-->
<!--</div>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
<!--<!– End Item –>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</section>-->
<!--<!– End Works–>-->
<!---->
<!--<!– Video Background Section–>-->
<!--<section class="video-section">-->
<!--<div class="overlay"></div>-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="col-md-12">-->
<!--<div class="video-inner text-center">-->
<!--<a href="https://www.youtube.com/watch?v=8lXOLMr2vbs" class="video-play mfp-iframe">-->
<!--<i class="fa fa-play"></i>-->
<!--</a>-->
<!--<h2>Take a video tour</h2>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</section>-->
<!-- End Video Background Section -->
<!--Start Blog Section-->
<section id="blog" class="section blog-section">
<div class="container">
<div class="row">
<div class="col-md-8 col-sm-12 col-md-offset-2 col-sm-offset-0 text-center">
<div class="section-heading">
<h2>Selected Showcases</h2>
</div>
</div>
<div class="col-md-12">
<div class="blog-item">
<div class="blog-media">
<a href="#"><img src="images/blog-img3.jpg" alt="" /></a>
</div>
<div class="blog-info">
<h3>Fashion Brand Portal</h3>
<span class="post-date">React, React-svg, Mobx, Jss</span>
<p>WebileSoft built a mobile-web application empowering customers to look through the fresh stock of clothes. The client part of the app is presented by a clothes map with images. WebileSoft engineers developed the map from scratch, utilizing React-SVG and MaterialUI components. Update of the “clothes map” and visual rendering of a newly-added item is triggered by the React View components changing the app state.</p>
<a href="" class="btn btn-primary border" style="opacity: 0;">Read More</a>
</div>
</div>
</div> <!--/.col-md-4-->
<div class="col-md-12">
<div class="blog-item">
<div class="blog-media">
<a href="#"><img src="images/blog-img4.jpg" alt="" /></a>
</div>
<div class="blog-info">
<h3>Event Venues Catalogue</h3>
<span class="post-date">React, Redux, Reselect, Material-UI</span>
<p>WebileSoft engineers updated a legacy frontend of an online event booking application. We built a dynamic user interface upon a Redux-based FLUX-powered architecture, providing for intuitive, parameter-based search and selection of a well-matched event hall. We utilized an HTML5-powered KrPano Viewer to enable 3D tours around each venue available in the catalogue.</p>
<a href="" class="btn btn-primary border" style="opacity: 0;">Read More</a>
</div>
</div>
</div> <!--/.col-md-4-->
<div class="col-md-12">
<div class="blog-item">
<div class="blog-media">
<a href="#"><img src="images/blog-img2.jpg" alt="" /></a>
</div>
<div class="blog-info">
<h3>Issue Management Plugin</h3>
<span class="post-date">Angular 1.5, Redux, Webpack, SailsJS</span>
<p>WebileSoft built a cross-platform issue reporting plugin for a complex infrastructure support system deployed at the client companies’ systems. The AngularJS-powered interface provides for easy search of the required company, department or system and issue modification and removal. Developed with SailsJS libraries, the app’s business logic performs high-speed and exact processing and storing of the incoming data.</p>
<!--<a href="" class="btn btn-primary border">Read More</a>-->
<a href="" class="btn btn-primary border" style="opacity: 0;">Read More</a>
</div>
</div>
</div> <!--/.col-md-4-->
<div class="col-md-12">
<div class="blog-item">
<div class="blog-media">
<a href="#"><img src="images/blog-img1.jpg" alt="" /></a>
</div>
<div class="blog-info">
<!--<h3><a href="#">Online CAD Planning Tool</a></h3>-->
<h3>Online CAD Planning Tool</h3>
<span class="post-date">JCanvasJs, FabricJS, Webpack, Lodash</span>
<!--<span class="post-date">June 15, 2017</span>-->
<p>WebileSoft implemented a JavaScript wardrobe designer API used by furniture manufacturing companies as an in-store order acceptance tool. Based on JavaScript Canvas, the client-side solution analyzes the input size, texture and color parameters and visualizes the wardrobe model, while providing for automated price calculation. By adding the attribute with the client ID, furniture producers integrate the high-speed designer with their corporate portals.</p>
<!--<a href="" class="btn btn-primary border">Read More</a>-->
<a href="" class="btn btn-primary border" style="opacity: 0;">Read More</a>
</div>
</div>
</div> <!--/.col-md-4-->
</div>
</div>
</section>
<!--End Blog Section-->
<!--Start Client Testimonial-->
<!--<section id="testimonials" class="section testimonial-section parallax">-->
<!--<div class="overlay"></div>-->
<!--<div class="container">-->
<!--<div class="col-md-12">-->
<!---->
<!--<div class="section-heading text-center white"> <h2>Testimonial</h2> </div>-->
<!---->
<!--<div class="testimonial-carousel owl-carousel owl-theme">-->
<!---->
<!--<div class="testimonial-item">-->
<!--<div class="testimonial-photo">-->
<!--<img src="images/testimonial/testimonial1.jpg" alt="" />-->
<!--</div>-->
<!--<div class="testimonial-content">-->
<!--<p>On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish.</p>-->
<!--<h5>Mark Johnsan <small>Programmer</small></h5>-->
<!--</div>-->
<!--</div> <!–/.testimonial-item–>-->
<!---->
<!--<div class="testimonial-item">-->
<!--<div class="testimonial-photo">-->
<!--<img src="images/testimonial/testimonial2.jpg" alt="" />-->
<!--</div>-->
<!--<div class="testimonial-content">-->
<!--<p>On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish.</p>-->
<!--<h5>Mark Johnsan <small>Programmer</small></h5>-->
<!--</div>-->
<!--</div> <!–/.testimonial-item–>-->
<!--<div class="testimonial-item">-->
<!--<div class="testimonial-photo">-->
<!--<img src="images/testimonial/testimonial3.jpg" alt="" />-->
<!--</div>-->
<!--<div class="testimonial-content">-->
<!--<p>On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish.</p>-->
<!--<h5>Mark Johnsan <small>Programmer</small></h5>-->
<!--</div>-->
<!--</div> <!–/.testimonial-item–>-->
<!---->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</section>-->
<!--End Client Testimonial-->
<!--Start Section Pricing-->
<!--<section id="pricing" class="section pricing-section">-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="section-heading text-center"> <h2>Our Plan</h2> </div>-->
<!---->
<!--<div class="col-md-4 col-sm-4">-->
<!--<div class="pricing-box">-->
<!--<h3>Basic</h3>-->
<!--<div class="pricing-header">-->
<!--<span class="price">$99</span>-->
<!--<span class="month">Per month</span>-->
<!--</div>-->
<!--<ul>-->
<!--<li>10 GB Storage</li>-->
<!--<li>Linux Server</li>-->
<!--<li>Free Live Support</li>-->
<!--<li>Enhanced SSL Security</li>-->
<!--<li>Free Upgrades</li>-->
<!--</ul>-->
<!--<div class="pricing-btn">-->
<!--<a href="#" class="btn btn-primary border">Buy Now</a>-->
<!--</div>-->
<!--</div>-->
<!--</div> <!–/.col-md-4–>-->
<!---->
<!--<div class="col-md-4 col-sm-4">-->
<!--<div class="pricing-box">-->
<!--<h3>Professional</h3>-->
<!--<div class="pricing-header">-->
<!--<span class="price">$499</span>-->
<!--<span class="month">Per month</span>-->
<!--</div>-->
<!--<ul>-->
<!--<li>10 GB Storage</li>-->
<!--<li>Linux Server</li>-->
<!--<li>Free Live Support</li>-->
<!--<li>Enhanced SSL Security</li>-->
<!--<li>Free Upgrades</li>-->
<!--</ul>-->
<!--<div class="pricing-btn">-->
<!--<a href="#" class="btn btn-primary border">Buy Now</a>-->
<!--</div>-->
<!--</div>-->
<!--</div> <!–/.col-md-4–>-->
<!---->
<!--<div class="col-md-4 col-sm-4">-->
<!--<div class="pricing-box">-->
<!--<h3>Business</h3>-->
<!--<div class="pricing-header">-->
<!--<span class="price">$999</span>-->
<!--<span class="month">Per month</span>-->
<!--</div>-->
<!--<ul>-->
<!--<li>10 GB Storage</li>-->
<!--<li>Linux Server</li>-->
<!--<li>Free Live Support</li>-->
<!--<li>Enhanced SSL Security</li>-->
<!--<li>Free Upgrades</li>-->
<!--</ul>-->
<!--<div class="pricing-btn">-->
<!--<a href="#" class="btn btn-primary border">Buy Now</a>-->
<!--</div>-->
<!--</div>-->
<!--</div> <!–/.col-md-4–>-->
<!---->
<!--</div>-->
<!--</div>-->
<!--</section>-->
<!--End Section Pricing-->
<!--Start clients-->
<section id="clients">
<div class="container">
<div class="row">
<!--<div class="clients-carousel owl-carousel owl-theme">-->
<!---->
<!--<!– Clients Logo Item–>-->
<!--<div class="item">-->
<!--<a href="#">-->
<!--<figure>-->
<!--<img src="images/clients-logo/client1.png" alt="" />-->
<!--</figure>-->
<!--</a>-->
<!--</div>-->
<!---->
<!--<!– Clients Logo Item–>-->
<!--<div class="item">-->
<!--<a href="#">-->
<!--<figure>-->
<!--<img src="images/clients-logo/client2.png" alt="" />-->
<!--</figure>-->
<!--</a>-->
<!--</div>-->
<!---->
<!--<!– Clients Logo Item–>-->
<!--<div class="item">-->
<!--<a href="#">-->
<!--<figure>-->
<!--<img src="images/clients-logo/client3.png" alt="" />-->
<!--</figure>-->
<!--</a>-->
<!--</div>-->
<!---->
<!--<!– Clients Logo Item–>-->
<!--<div class="item">-->
<!--<a href="#">-->
<!--<figure>-->
<!--<img src="images/clients-logo/client4.png" alt="" />-->
<!--</figure>-->
<!--</a>-->
<!--</div>-->
<!---->
<!--<!– Clients Logo Item–>-->
<!--<div class="item">-->
<!--<a href="#">-->
<!--<figure>-->
<!--<img src="images/clients-logo/client2.png" alt="" />-->
<!--</figure>-->
<!--</a>-->
<!--</div>-->
<!---->
<!--<!– Clients Logo Item–>-->
<!--<div class="item">-->
<!--<a href="#">-->
<!--<figure>-->
<!--<img src="images/clients-logo/client5.png" alt="" />-->
<!--</figure>-->
<!--</a>-->
<!--</div>-->
<!---->
<!--<!– Clients Logo Item–>-->
<!--<div class="item">-->
<!--<a href="#">-->
<!--<figure>-->
<!--<img src="images/clients-logo/client4.png" alt="" />-->
<!--</figure>-->
<!--</a>-->
<!--</div>-->
<!---->
<!--<!– Clients Logo Item–>-->
<!--<div class="item">-->
<!--<a href="#">-->
<!--<figure>-->
<!--<img src="images/clients-logo/client1.png" alt="" />-->
<!--</figure>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
</div> <!--/.row-->
</div> <!--/.container-->
</section>
<!--End clients-->