-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsulting.html
998 lines (850 loc) · 54.5 KB
/
Consulting.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
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8">
<meta name="keywords" content="HTML5 Template">
<meta name="description" content="IT Infinite - IT Solutions and Services Company HTML5 Template">
<meta name="author" content="potenzaglobalsolutions.com">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>IT Infinite - IT Solutions and Services Company HTML5 Template</title>
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Russo+One&display=swap" rel="stylesheet">
<!-- CSS Global Compulsory (Do not remove)-->
<link rel="stylesheet" href="css/font-awesome/all.min.css">
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css">
<!-- Page CSS Implementing Plugins (Remove the plugin CSS here if site does not use that feature)-->
<link rel="stylesheet" href="css/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="css/swiper/swiper.min.css">
<link rel="stylesheet" href="css/magnific-popup/magnific-popup.css">
<!-- Template Style -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--=================================
cursor -->
<div id="cursor">
<div class="cursor__circle"></div>
</div>
<!--=================================
cursor -->
<div id="page" class="main">
<!--=================================
Header -->
<header class="header header-default header-sticky header-absolute">
<div class="header-inner">
<div class="site-logo">
<a class="navbar-brand" href="index.html"><img class="img-fluid logo-image" src="images/TECHTENT LOGO 2.png" alt="logo" />
<!-- <p class="logo-texte">Software</p> -->
</a>
</div>
<div class="site-menu d-none d-xl-block">
<ul class="main-menu">
<li class="nav-item active"><a class="nav-link" href="./index.html">Home <i class="fa-solid fa-chevron-down"></i></a>
<!-- <ul class="submenu">
<li><a class="nav-link active" href="index.html">Home 01</a></li>
<li><a class="nav-link" href="index-02.html">Home 02</a></li>
</ul> -->
</li>
<!-- <li class="nav-item"><a class="nav-link" href="#">We Offer <i class="fa-solid fa-chevron-down"></i></a>
<ul class="submenu">
<li><a class="nav-link" href="service.html">Service</a></li>
<li><a class="nav-link" href="Angular.html">Frontend (Angular)</a></li>
<li><a class="nav-link" href="php.html">PHP Development Services</a></li>
<li><a class="nav-link" href="service-detail.html">Service Single</a></li>
</ul>
</li> -->
<!-- <li class="nav-item"><a class="nav-link" href="#">Our Works <i class="fa-solid fa-chevron-down"></i></a>
<ul class="submenu">
<li><a class="nav-link" href="https://touresco.net/" target="_blank">TourEsco </a></li>
<li><a class="nav-link" href="case-studies.html">TourEsco </a></li>
<li><a class="nav-link" href="https://sfrni.net/" target="_blank">Safrni </a></li>
</ul>
</li> -->
<!-- <li class="nav-item"><a class="nav-link" href="#">Blog <i class="fa-solid fa-chevron-down"></i></a>
<ul class="submenu">
<li><a class="nav-link" href="blog.html">Blog Standard</a></li>
<li><a class="nav-link" href="blog-detail.html">Blog Single</a></li>
</ul>
</li> -->
<!-- <li class="nav-item"><a class="nav-link" href="./#">Company</a></li> -->
<li class="nav-item"><a class="nav-link" href="./Consulting.html">Consulting</a></li>
<!-- <li class="nav-item"><a class="nav-link" href="contact-us.html">Contact</a></li> -->
</ul>
</div>
<div class="site-action d-none d-xl-block">
<div class="action-hamburger">
<a class="hamburger" href="#" data-bs-toggle="offcanvas" data-bs-target="#offcanvasRight" aria-controls="offcanvasRight">
<span class="hamburger-container">
<span class="hamburger-inner"></span>
<span class="hamburger-hidden"></span>
</span>
</a>
</div>
</div>
<div class="mobile-action d-block d-xl-none">
<div class="mobile-hamburger">
<a class="hamburger" href="#" data-bs-toggle="offcanvas" data-bs-target="#menuOffcanvas" aria-controls="menuOffcanvas">
<span class="hamburger-container">
<span class="hamburger-inner"></span>
<span class="hamburger-hidden"></span>
</span>
</a>
</div>
</div>
</div>
</header>
<!--=================================
Main Menu OffCanvas -->
<div class="offcanvas main-menu-offcanvas offcanvas-end" tabindex="-1" id="menuOffcanvas" aria-labelledby="menuOffcanvasLabel">
<div class="offcanvas-header">
<a id="menuOffcanvasLabel" class="navbar-brand" href="index.html"><img class="img-fluid " src="images/TECHTENT LOGO 2.png" alt="logo" /></a>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"><i class="fa-solid fa-xmark"></i></button>
</div>
<div class="offcanvas-body">
<div class="body-inner">
<nav class="navbar">
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="./index.html" role="button" >Home</a>
<!-- <ul class="dropdown-menu">
<li><a class="dropdown-item active" href="index.html">Home 01</a></li>
<li><a class="dropdown-item" href="index-02.html">Home 02</a></li>
</ul> -->
</li>
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="./index.html" role="button" >Company</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="about-us.html">About Us</a></li>
<li><a class="dropdown-item" href="pricing.html">Pricing</a></li> -->
<!-- <li><a class="dropdown-item" href="careers.html">Careers</a></li>
<li><a class="dropdown-item" href="contact-us.html">Contact</a></li>
<li><a class="dropdown-item" href="faq.html">Faq</a></li>
<li><a class="dropdown-item" href="team.html">Team</a></li>
<li><a class="dropdown-item" href="team-single.html">Team Single</a></li>
<li><a class="dropdown-item" href="typography.html">Typography</a></li>
<li><a class="dropdown-item" href="page-left-sidebar.html">Page Left Sidebar</a></li>
<li><a class="dropdown-item" href="page-right-sidebar.html">Page Right Sidebar</a></li>
<li><a class="dropdown-item" href="error-404.html">Error 404</a></li>
<li><a class="dropdown-item" href="coming-soon.html">Coming Soon</a></li>
</ul>
</li>
< <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">We Offer</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="service.html">Service</a></li>
<li><a class="dropdown-item" href="Angular.html">Frontend (Angular)</a></li>
<li><a class="dropdown-item" href="php.html">PHP Development Services</a></li>
<li><a class="dropdown-item" href="service-detail.html">Service Single</a></li>
</ul>
</li> -->
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">Our Works</a>
<ul class="dropdown-menu">
<li><a class="nav-link" href="https://touresco.net/" target="_blank">TourEsco </a></li>
<li><a class="nav-link" href="https://sfrni.net/" target="_blank">Safrni </a></li>
</ul>
</li> -->
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">Blog</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="blog.html">Blog Standard</a></li>
<li><a class="dropdown-item" href="blog-detail.html">Blog Single</a></li>
</ul>
</li> -->
<li class="nav-item"><a class="nav-link" href="./Consulting.html">Consulting</a></li>
<li class="nav-item"><a class="nav-link" href="contact-us.html">Contact</a></li>
<li class="mt-5 ">
<a href="#" class="d-inline m-2 " target="_blank"><i class="fa-brands fa-facebook "></i></a>
<a href="#" class="d-inline m-2" target="_blank"> <i class="fa-brands fa-linkedin "></i></a>
<a href="#" class="d-inline m-2" target="_blank"> <i class="fa-brands fa-instagram "></i></a>
<a href="#" class="d-inline m-2" target="_blank"><i class="fa-brands fa-x-twitter "></i></a>
<a href="#" class="d-inline m-2" target="_blank"><i class="fa-brands fa-github "></i></a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<!--=================================
Header Side Panel -->
<div class="offcanvas offcanvas-end sidepanel-offcanvas" tabindex="-1" id="offcanvasRight">
<div class="offcanvas-header">
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"><i class="fa-solid fa-xmark"></i></button>
</div>
<div class="offcanvas-body">
<div class="body-inner">
<div class="about-info">
<h4 class="title mb-3 header-side-title">Spaces that reflect the character of the
tech. tent
</h4>
</div>
<div class="socail-info">
<ul class="socail-list-item">
<li><a href="./contact-us.html" class="contact">Contact</a></li>
<li><a href="#"><i class="fa-brands fa-facebook-f"></i>Facebook</a></li>
<li><a href="#"><i class="fa-brands fa-instagram"></i>Instagram</a></li>
<li><a href="#"><i class="fa-brands fa-x-twitter"></i>Twitter</a></li>
<li><a href="#"><i class="fa-brands fa-linkedin"></i>Linkedin</a></li>
<li><a href="#"><i class="fa-brands fa-github"></i>GitHub</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="site-content">
<div class="container-fluid">
<div class="item-efftect container">
<div class="efftect overflow-hidden"></div>
<div class="efftect overflow-hidden"></div>
<div class="efftect overflow-hidden"></div>
<div class="efftect overflow-hidden"></div>
<div class="efftect overflow-hidden"></div>
</div>
</div>
<!--=================================
Page Header -->
<div class="inner-header bg-holder" style="background-image: url(images/banner/inner-header/page-header-01.jpg);">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 text-center">
<h1 class="title">Technical supervision and consultation</h1>
<p>Start with a specialized consultant who will ensure the success of your project</p>
</div>
</div>
</div>
</div>
<!-- consulting-steps -->
<div class="container ">
<p class="steps-title mt-3">Technical supervision means representing the owner from planning to final delivery
</p>
<p class="steps-title-des mt-3">The following is an explanation of the most important steps taken by the Supervision Office
</p>
<div class="steps-container d-flex align-items-center justify-content-between m-auto mt-5 w-50 flex-wrap">
<div class="step">
1
<div class="step-content ">
<div class=".step-description me-3">
<p class="step-number"> First Step</p>
<p class="step-detalis"> Consulting participation on the client and follow-up... from the technical side
In * Analysis * Planning * Needs * Requirements * . <br>
- Determining the schedule <br>
- Resources <br>
- Distributing tasks.
</p>
</div>
<div class="step-image-container">
<img src="./images/consulting/step1.png" alt="">
</div>
</div>
</div>
<div class="step">
2
<div class="step-content ">
<div class=".step-description me-3">
<p class="step-number"> Step Two</p>
<p class="step-detalis"> Design <br>
- Participate in developing the system structure and planning interfaces and functions. <br>
- Recommendations that the design achieve ease of use and a modern perspective.
</div>
<div class="step-image-container">
<img src="./images/consulting/step2.png" alt="">
</div>
</div>
</div>
<div class="step">
3
<div class="step-content ">
<div class=".step-description me-3">
<p class="step-number"> Step Three</p>
<p class="step-detalis">Development <br>
- Follow up on writing the code according to modern standards to ensure ease of maintenance and future development
Participation in the architectural code structure ensures the sustainability of the system and the flexibility of its performance
</div>
<div class="step-image-container">
<img src="./images/consulting/step3.png" alt="">
</div>
</div>
</div>
<div class="step">
4
<div class="step-content ">
<div class=".step-description me-3">
<p class="step-number"> Step Four</p>
<p class="step-detalis">
Test <br>
- Unit testing: <br>
Checking each part of the system separately to ensure that it is free of errors.
- Integration testing: <br>
Ensure all parts work together smoothly and effectively
</div>
<div class="step-image-container">
<img src="./images/consulting/step4.png" alt="">
</div>
</div>
</div>
<div class="step">
5
<div class="step-content ">
<div class=".step-description me-3">
<p class="step-number"> Step Five</p>
<p class="step-detalis">
Documentation <br>
- Preparing documents: <br>
Document all aspects of the system, including code, interfaces, and usage methods. <br>
- Document review: <br>
Ensuring the accuracy and comprehensiveness of documents to facilitate maintenance and technical support.
</div>
<div class="step-image-container">
<img src="./images/consulting/step5.1.png" alt="">
</div>
</div>
</div>
<div class="step">
6
<div class="step-content ">
<div class=".step-description me-3">
<p class="step-number"> Step Six</p>
<p class="step-detalis">
Receiving the system
and delivering it to the owner according to the agreed upon technical terms.
</div>
<div class="step-image-container">
<img src="./images/consulting/step6.png" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- consulting-steps -->
<div class="content-wrapper">
<!--=================================
About Info -->
<section class="space-pt z-index-2">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-7 mb-5 mb-lg-0">
<div class="section-title pb-0 pb-lg-4">
<span class="sub-title"><img class="img-fluid" src="images/subtitle-icon.png" alt=""> About Us</span>
<h2 class="title"> Advantages for the developer and owner when contracting </h2>
</div>
<div class="success-container d-flex align-items-center ms-5 mb-3 justify-content-start">
<div class="falied ">
<p>success rate</p>
<!-- <h5 class="rating-falied-number">85% - </h5> -->
<div class="counter counter-style-1">
<div class=" rating-falied-number"><span class="timer mb-0 fs-1" data-to="85" data-speed="2000">85</span><span class="fs-1" > -</span></div>
<!-- <div class="counter-info"><span class="counter-title">Business Peoples</span></div> -->
</div>
<p class="w-50">Projectes without a consultant</p>
</div>
<div class="success">
<p>success rate</p>
<!-- <h5 class="rating-success-number">97% + </h5> -->
<div class="counter counter-style-1">
<div class=" rating-success-number"><span class="timer mb-0 fs-1" data-to="97" data-speed="2000">97</span><span class="fs-1" > +</span></div>
<!-- <div class="counter-info"><span class="counter-title">Business Peoples</span></div> -->
</div>
<p class="w-50">Projectes Supervised by a consultant</p>
</div>
</div>
</div>
<div class="col-lg-5">
<img class="img-fluid ps-lg-5 rounded img-fluid w-100" src="images/consulting/consult1.png " alt="#">
</div>
</div>
<div class="row mt-5 ">
<div class="col-md-4">
<img src="./images/consulting/consult3.png" alt="" class="img-fluid">
</div>
<div class="col-md-8">
<div class="d-flex justify-content-center ms-5">
<a class="btn btn-effect" href="#Questions">
<span>Questions</span>
<svg width="20" height="22" viewBox="0 0 20 22" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_59_253)"><path d="M19.4854 11.4293L17.0513 12.221C13.1214 13.4993 10.3036 16.9595 9.84784 21.0668C9.49371 16.981 6.71926 13.5081 2.81255 12.2604L0.210283 11.4293" stroke="white" stroke-width="2"/><path d="M9.83594 20.8889L9.83594 0" stroke="white" stroke-width="2"/></g><defs><clipPath id="clip0_59_253"><rect width="21.3333" height="20" fill="white" transform="translate(20) rotate(90)"/></clipPath></defs></svg>
</a>
</div>
<ul class="list-style-1 consult-list">
<li>
A guarantee for both parties that the project will be implemented according to the agreed upon specifications
</li>
<li>
Unifying the reference and improving communication between all parties
</li>
<li>
Achieve full compliance with project budget and schedule
</li>
<li>
Reducing the risk of confusion between modification, replacement and addition.
</li>
</ul>
<!-- <p class="ps-lg-3 mt-4 mt-sm-0">• A guarantee for both parties that the project will be implemented according to the agreed upon specifications
• Unifying the reference and improving communication between all parties <br> • Achieve full compliance with project budget and schedule
• Reducing the risk of confusion between modification, replacement and addition.
</p> -->
</div>
</div>
</div>
</section>
<!--=================================
About Info -->
<!--=================================
Client Logo -->
<!-- <div class="space-ptb ">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-md-12">
<div class="marquee-wrapper">
<div class="marquee-inner">
<div class="marquee-item">
<span class="icon"><img class="img-fluid" src="images/client-logo/brand-icon1.png" alt="" /></span>
<span class="title">General technical supervision</span>
</div>
<div class="marquee-item">
<span class="icon"><img class="img-fluid" src="images/client-logo/brand-icon2.png" alt="" /></span>
<span class="title">Specific technical supervision</span>
</div>
<div class="marquee-item">
<span class="icon"><img class="img-fluid" src="images/client-logo/brand-icon3.png" alt="" /></span>
<span class="title">Technical consultations</span>
</div>
<div class="marquee-item">
<span class="icon"><img class="img-fluid" src="images/client-logo/brand-icon4.png" alt="" /></span>
<span class="title">Executive disputes consultations</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
<marquee behavior="smooth" direction="left" scrollamount="25">
<div class="marquee-item">
<span class="icon"><img class="img-fluid" src="images/client-logo/brand-icon1.png" alt="" /></span>
<span class="title ">General technical supervision</span>
</div>
<div class="marquee-item">
<span class="icon"><img class="img-fluid" src="images/client-logo/brand-icon2.png" alt="" /></span>
<span class="title">Specific technical supervision</span>
</div>
<div class="marquee-item">
<span class="icon"><img class="img-fluid" src="images/client-logo/brand-icon3.png" alt="" /></span>
<span class="title">Technical consultations</span>
</div>
<div class="marquee-item">
<span class="icon"><img class="img-fluid" src="images/client-logo/brand-icon4.png" alt="" /></span>
<span class="title">Executive disputes consultations</span>
</div>
</marquee>
<!--=================================
Client Logo -->
<!--=================================
History -->
<section class="space-pt bg-black ellipse-top">
<div class="space-pb ellipse-bottom">
<div class="container">
<div class="row">
<div class="col-lg-5">
<div class="sticky-top" style="top: 80px;">
<div class="section-title mb-0">
<span class="sub-title"><img class="img-fluid" src="images/subtitle-icon.png" alt="" /> Types of technical services</span>
<h2 class="title w-100">Types of technical services</h2>
</div >
<div > <img src="./images/company-history.png" alt="" class="img-fluid rounded"></div>
<!-- <p class="mb-5 mb-lg-0 ms-lg-5">The importance of contracting with technical supervision companies:</p> -->
<!-- <ul class="list-style-1 consult-list">
<li>
Specialized experience: Technical supervision companies provide specialized expertise in the field of software, which ensures that the project is implemented with the highest efficiency and quality.
</li>
<li>
Punctuality: These companies contribute to organizing the work stages accurately, ensuring adherence to timetables and delivery of the project on time. </li>
<li>
Achieving goals: Technical supervision companies work to achieve the project’s specific goals in line with the client’s vision and needs. </li>
<li>
Reducing risks: Technical supervision helps reduce the risks associated with projects, by monitoring each stage and ensuring its correct implementation. </li>
</ul> -->
</div>
</div>
<div class="col-lg-7">
<div class="history-wrapper">
<div class="history-year-sm">Technical supervision</div>
<div class="history-info">
<!-- <div class="history-year-lg">Technical supervision</div> -->
<div class="history-content">
<p> What does technical supervision mean?
He plays the role of project owner from the technical side.
It is relied upon to ensure that all aspects of the project are implemented correctly and effectively,
From the planning stage to final delivery.
This is due to the project owner's lack of familiarity with the programming details and technical structures
Which ensures that the project is implemented efficiently and with high quality.”
Here is an explanation of the main steps taken by the Supervision Office:</p>
<ul class="mt-3">
<li>
Stage 1: Participate in analyzing and planning the needs and requirements of the client accurately.
- Determine the schedule, resources, and distribution of tasks.
</li>
<li>
Stage 2: Design
- Participate in the development of system structure and the planning of interfaces and functions.
- Recommendations that the design achieve ease of use and a modern perspective.
</li>
<li>
Stage 3: Development
- Follow up the writing of code according to modern standards to ensure ease of maintenance and future development
- Participation in the structural code structure ensures the sustainability of the system and the flexibility of its performance
</li>
<li>
Stage 4: Testing
- Unit Testing: Inspect each part of the system separately to ensure that it is free of errors.
- Integration Testing: Ensure that all parts work together smoothly and effectively.
</li>
<li>
Stage 5: Documentation
- **Document preparation: Documenting all aspects of the system including code, interfaces and methods of use.
- Document Review: Ensure accuracy and comprehensiveness of documentation to facilitate maintenance and technical support.
</li>
<li>
stage 6: Receiving the system and handing it over to the owner in accordance with the agreed technical and technical terms.
</li>
</ul>
<div class="author-info mt-5 d-flex align-items-center">
<span class="author-position me-2 fs-4">Pricing</span>
<a class="btn-arrow" href="./Technical-supervision-price.html"><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_923_133)"><path d="M8.70801 0.959961L9.29825 2.7665C10.2512 5.68321 12.8308 7.77453 15.8928 8.1128C12.8468 8.37564 10.2578 10.4348 9.3276 13.3343L8.70801 15.2657" stroke="inherit" stroke-width="2"/><path d="M15.7602 8.12158H0.1875" stroke="inherit" stroke-width="2"/></g><defs><clipPath id="clip0_923_133"><rect width="15.904" height="14.8437" fill="inherit" transform="translate(0.1875 0.578125)"/></clipPath></defs></svg></a>
</div>
</div>
</div>
</div>
<div class="history-wrapper mt-4 mb-4">
<div class="history-year-sm">Specific technical supervision</div>
<div class="history-info">
<!-- <div class="history-year-lg">Specific technical supervision</div> -->
<div class="history-content">
<p>Through this flexibility, clients can adapt technical supervision to their specific needs and ensure high quality and effective project execution.
The stage supervision system allows complete flexibility in choosing the stages of supervision that suit his needs. The customer can choose one stage to supervise or combine two or more phases to ensure the best results
</p>
<ul class="mt-3">
Benefits of choosing flexible supervision stages include:
<li>
Adaptation to financial allocations and resources**:
So that the owner can direct their available resources towards the stage
Which need the most support and follow-up.
</li>
<li>
Achieving the goals set through specialists in programming science:
Which includes overseeing the important and critical stages of the project.
</li>
<li>
Product Quality Assurance:
Employing the capabilities you lack in order to achieve the quality of the work done at those stages.
</li>
</ul>
<div class="author-info mt-5 d-flex align-items-center">
<span class="author-position me-2 fs-4">Pricing</span>
<a class="btn-arrow" href="./Dedicated-supervision-price.html"><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_923_133)"><path d="M8.70801 0.959961L9.29825 2.7665C10.2512 5.68321 12.8308 7.77453 15.8928 8.1128C12.8468 8.37564 10.2578 10.4348 9.3276 13.3343L8.70801 15.2657" stroke="inherit" stroke-width="2"/><path d="M15.7602 8.12158H0.1875" stroke="inherit" stroke-width="2"/></g><defs><clipPath id="clip0_923_133"><rect width="15.904" height="14.8437" fill="inherit" transform="translate(0.1875 0.578125)"/></clipPath></defs></svg></a>
</div>
</div>
</div>
</div>
<div class="history-wrapper mt-4 mb-4">
<div class="history-year-sm">Technical Consulting</div>
<div class="history-info">
<!-- <div class="history-year-lg">Technical Consulting</div> -->
<div class="history-content">
<p>Fortify your software projects back to Tech Tent Consultants!
Look out... That technical complexities often hinder the implementation of software projects?
This is mainly due to the lack of expertise and knowledge of the optimal technical approach by project owners when implementing.
Turn... Mature clients tend to hire technical consultants to ensure that their goals and projects are achieved efficiently and with the desired quality.
That's where we come in in the "tech tent"!We offer you flexible technical consulting services, which represent the compass that everyone who seeks to succeed their project needs.
So that you find us near you when you need consultation in order to help you overcome technical obstacles, and direct your project towards building modern and sustainable software structures</p>
<div class="author-info mt-5 d-flex align-items-center">
<span class="author-position me-2 fs-4">Pricing</span>
<a class="btn-arrow" href="./Technical-Consulting-price.html"><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_923_133)"><path d="M8.70801 0.959961L9.29825 2.7665C10.2512 5.68321 12.8308 7.77453 15.8928 8.1128C12.8468 8.37564 10.2578 10.4348 9.3276 13.3343L8.70801 15.2657" stroke="inherit" stroke-width="2"/><path d="M15.7602 8.12158H0.1875" stroke="inherit" stroke-width="2"/></g><defs><clipPath id="clip0_923_133"><rect width="15.904" height="14.8437" fill="inherit" transform="translate(0.1875 0.578125)"/></clipPath></defs></svg></a>
</div>
</div>
</div>
</div>
<div class="history-wrapper">
<div class="history-year-sm">Executive Dispute Consulting</div>
<div class="history-info">
<!-- <div class="history-year-lg">Executive Dispute Consulting</div> -->
<div class="history-content">
<p>Our presence helps to build a bridge of understanding between the owner and the executor to result in a smooth and harmonious work environment.</p>
<ul class="mt-3">
<li>
Clarify the technical and technical mandates between the owner and the project executor?
</li>
<li>
Our specialized technical consulting services provide solutions to resolve these disputes and ensure smooth and effective workflow.
</li>
<li>
Our specialized team works to accurately understand the needs of the project and provide advice that contributes to clarifying the vision and achieving understanding between the two parties.
</li>
<li>
Provide appropriate guidance and guidance to the owner and executor to ensure that misunderstandings are eliminated and efforts are united towards achieving common goals.
</li>
</ul>
<div class="author-info mt-5 d-flex align-items-center">
<span class="author-position me-2 fs-4">Pricing</span>
<a class="btn-arrow" href="./Executive-consulting-price.html"><svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_923_133)"><path d="M8.70801 0.959961L9.29825 2.7665C10.2512 5.68321 12.8308 7.77453 15.8928 8.1128C12.8468 8.37564 10.2578 10.4348 9.3276 13.3343L8.70801 15.2657" stroke="inherit" stroke-width="2"/><path d="M15.7602 8.12158H0.1875" stroke="inherit" stroke-width="2"/></g><defs><clipPath id="clip0_923_133"><rect width="15.904" height="14.8437" fill="inherit" transform="translate(0.1875 0.578125)"/></clipPath></defs></svg></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=================================
History -->
<!--=================================
Our Staff -->
<section class="space-ptb">
<div class="container">
<div class="row">
<div class="col-xxl-6 col-lg-8">
<div class="section-title mb-lg-0">
<span class="sub-title"><img class="img-fluid" src="images/subtitle-icon.png" alt=""> Our Staff</span>
<h2 class="title mb-0">Choose an expert to be your advisor without exceeding your project budget</h2>
</div>
</div>
<div class="col-xxl-6 col-lg-4 align-self-end">
<p class="mb-0 ps-xxl-5">By choosing a specialized consultant, you can achieve success and efficiency without exceeding your project budget. Let us provide you with the perfect solutions that match your needs and budget. Choose the right advisor for you,</p>
</div>
</div>
</div>
</section>
<!--=================================
Our Staff -->
<!--=================================
Our Testimonial -->
<!-- <section class="space-pt testimonial-section overflow-hidden bg-black ellipse-top">
<div class="space-pb ellipse-bottom">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10">
<div class="section-title text-center">
<span class="sub-title justify-content-center"><img class="img-fluid" src="images/subtitle-icon.png" alt=""> Our Testimonial</span>
<h2 class="title"> Over 500 clients and 5,000 projects across the globe.</h2>
</div>
</div>
</div>
<div class="row justify-content-start">
<div class="col-md-11">
<div class="owl-carousel slider-overflow" data-cursor-type="text" data-custom-text="Drag" data-nav-arrow="false" data-items="2" data-lg-items="1" data-md-items="1" data-sm-items="1" data-space="50">
<div class="item">
<div class="testimonial-wrapper testimonial-style-2">
<div class="testimonial-ratings">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-regular fa-star"></i>
</div>
<div class="testimonial-quote"><img class="img-fluid" src="images/quote-icon-01.png" alt="" /></div>
<div class="testimonial-content">
<p>The IT-Hub database has been one of our current sources for recruitment, backed by a very experienced team who would go out of their way to make sure that requests are taken ahead.</p>
</div>
<div class="testimonial-author">
<div class="author-info">
<h6 class="author-name">Key Benefits</h6>
<span class="author-position">Administrator</span>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-wrapper testimonial-style-2">
<div class="testimonial-ratings">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-regular fa-star"></i>
</div>
<div class="testimonial-quote"><img class="img-fluid" src="images/quote-icon-01.png" alt="" /></div>
<div class="testimonial-content">
<p>The IT-Hub database has been one of our current sources for recruitment, backed by a very experienced team who would go out of their way to make sure that requests are taken ahead.</p>
</div>
<div class="testimonial-author">
<div class="author-info">
<h6 class="author-name">Joanna williams</h6>
<span class="author-position">Consultant</span>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-wrapper testimonial-style-2">
<div class="testimonial-ratings">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-regular fa-star"></i>
</div>
<div class="testimonial-quote"><img class="img-fluid" src="images/quote-icon-01.png" alt="" /></div>
<div class="testimonial-content">
<p>The IT-Hub database has been one of our current sources for recruitment, backed by a very experienced team who would go out of their way to make sure that requests are taken ahead.</p>
</div>
<div class="testimonial-author">
<div class="author-info">
<h6 class="author-name">Anne Smith</h6>
<span class="author-position">Officer</span>
</div>
</div>
</div>
</div>
<div class="item">
<div class="testimonial-wrapper testimonial-style-2">
<div class="testimonial-ratings">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-regular fa-star"></i>
</div>
<div class="testimonial-quote"><img class="img-fluid" src="images/quote-icon-01.png" alt="" /></div>
<div class="testimonial-content">
<p>The IT-Hub database has been one of our current sources for recruitment, backed by a very experienced team who would go out of their way to make sure that requests are taken ahead.</p>
</div>
<div class="testimonial-author">
<div class="author-info">
<h6 class="author-name">John Doe</h6>
<span class="author-position">Director</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--=================================
Our Testimonial -->
<!-- FAQ -->
<section class=" ellipse-top " id="Questions">
<div class="pb-4 ellipse-bottom">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="section-title">
<span class="sub-title justify-content-center"><img class="img-fluid" src="images/subtitle-icon.png" alt=""> FAQ</span>
<h2 class="title mb-0">Frequently Asked Questions</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="accordion" id="pgsaccordion">
<div class="accordion-item">
<h5 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne"> What is the supervision strategy?
</button>
</h5>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#pgsaccordion">
<div class="accordion-body">We enter into agreements with software companies to implement the code programming on our own accounts and install it on our servers, in order to ensure the protection of the rights of project owners and programmers alike. This mechanism is an effective way to preserve the rights of all parties, especially in the event of any disputes, which we always seek to resolve smoothly and overcome any obstacles that may hinder the workflow.
.</div>
</div>
</div>
<div class="accordion-item">
<h5 class="accordion-header" id="headingTwo">
<button
class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Do you sign a non-disclosure agreement
before starting any project?"
</button>
</h5>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#pgsaccordion">
<div class="accordion-body">We sign a non-disclosure agreement before starting your project to ensure the utmost confidentiality and protection of your intellectual property and private information. Protecting your data is a top priority for us, and the agreement includes clear terms for disclosure and permitted use, as well as non-compete clauses and both parties’ commitments to protect sensitive data.
</div>
</div>
</div>
<div class="accordion-item">
<h5 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree"> What is the project cost coverage approach?
</button>
</h5>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#pgsaccordion">
<div class="accordion-body">We take the balance of financial rights very seriously and carefully, as we are keen to distribute the cost of our services equally between the owner and the programmer, at a rate of 50% for each, unless they agree on a different arrangement. We also consider our clients as partners in success, and provide them with flexible payment facilities that are in line with the final delivery stages of projects, which ensures a comfortable and balanced experience for everyone.
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 mt-4 mt-md-0">
<div class="accordion" id="pgsaccordion1">
<div class="accordion-item">
<h5 class="accordion-header" id="headingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFour" aria-expanded="false" aria-controls="collapseThree">What do you offer me as a supervisor?
</button>
</h5>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour" data-bs-parent="#pgsaccordion">
<div class="accordion-body">85% of projects falter due to mismanagement of terms of agreements?
We act as supervisors and a means of communication between you and the client, and we know the client's requirements, which saves you the trouble of managing non-technical aspects such as negotiations, meetings and agreements. Allows you to fully focus on programming. Ensures your rights are protected through clear contracts, ensuring you receive your financial benefits without worrying about administrative details or disputes.
</div>
</div>
</div>
<div class="accordion-item">
<h5 class="accordion-header" id="headingFive">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive">How do you handle the protection of code and data stored on your servers?
</button>
</h5>
<div id="collapseFive" class="accordion-collapse collapse" aria-labelledby="headingFive" data-bs-parent="#pgsaccordion1">
<div class="accordion-body">We follow a clear policy for handing over the code and data stored on our servers and accounts, so that this is done immediately after signing the technical approval between the owner and the software companies or independent developers, while adhering to all technical assets agreed upon between the two parties.
.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=================================
FAQ -->
</div>
</div>
<!--=================================
Site Footer -->
<div class="footer-copyright">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6"><p><a class="footer-logo" href="index.html"><img class="img-fluid logo-image" src="images/TECHTENT LOGO 2.png" alt="logo" /></a></p></div>
<div class="col-lg-6 text-lg-end"><p>Develop and design by <a href="#">Technotent Solutions</a></p></div>
</div>
</div>
</div>
<!--=================================
Back To Top -->
<div class="back-to-top">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98"/>
</svg>
</div>
</div>
<!--=================================
Javascript -->
<!-- JS Global Compulsory (Do not remove)-->
<script src="js/jquery-3.7.1.min.js"></script>
<script src="js/jquery.appear.js"></script>
<script src="js/popper/popper.min.js"></script>
<script src="js/bootstrap/bootstrap.min.js"></script>
<!-- Page JS Implementing Plugins (Remove the plugin script here if site does not use that feature)-->
<script src="js/owl-carousel/owl.carousel.min.js"></script>
<script src="js/jarallax/jarallax.min.js"></script>
<script src="js/jarallax/jarallax-video.min.js"></script>
<script src="js/swiper/swiper.min.js"></script>
<script src="js/swiperanimation/SwiperAnimation.min.js"></script>
<script src="js/shuffle/shuffle.min.js"></script>
<script src="js/magnific-popup/jquery.magnific-popup.js"></script>
<script src="js/counter/jquery.countTo.js"></script>
<script src="js/gsap.min.js"></script>
<script src="js/attractHover.js"></script>
<script src="js/custom.js"></script> <!-- Template Scripts (Do not remove)-->
</body>
</html>