-
Notifications
You must be signed in to change notification settings - Fork 0
/
isource.html
5325 lines (2967 loc) · 176 KB
/
isource.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 class="style-green-2 custom-colors-enabled custom-primary-button-color-bright custom-accent-color-bright custom_fonts comps live_website unicorn-platform-website" lang="en">
<head>
<!-- This page is running on Unicorn Platform. Generated at March 27, 2024, 2:00 PM-->
<meta charset="utf-8">
<meta name="robots" content="noindex">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="alternate" href="https://basket-whisper.unicornplatform.page/" hreflang="en" />
<link rel="stylesheet" href="https://dvzvtsvyecfyp.cloudfront.net/static/css/main.693376a93ec0.css"><script src="https://dvzvtsvyecfyp.cloudfront.net/static/js/main.26769b514691.js" defer></script>
<link href="https://fonts.googleapis.com/css?family=BIZ+UDPMincho:700|BIZ+UDPMincho:400,700&display=swap" rel="stylesheet"/><style>
.custom_fonts .custom-google-fonts-enabled * {
font-family: 'BIZ UDPMincho', Helvetica, sans-serif;
}
.custom_fonts .custom-google-fonts-enabled h1,
.custom_fonts .custom-google-fonts-enabled h2,
.custom_fonts .custom-google-fonts-enabled h3,
.custom_fonts .custom-google-fonts-enabled h4,
.custom_fonts .custom-google-fonts-enabled h5,
.custom_fonts .custom-google-fonts-enabled h6{
font-family: 'BIZ UDPMincho', Helvetica, serif;
}
</style>
<link rel="icon" type="image/png" href="https://unicorn-cdn.b-cdn.net/ba3d5231-cd84-40c3-8b65-3bb9d58fd96a/" sizes="16x16" />
<meta property="og:type" content="website">
<title>The Future of Industrial IoT</title>
<meta property="og:title" content="The Future of Industrial IoT" />
<meta name="twitter:title" content="The Future of Industrial IoT" />
<meta name="description" content="the most Flexible IIoT platform ever">
<meta property="og:description" content="the most Flexible IIoT platform ever"/>
<meta name="twitter:description" content="the most Flexible IIoT platform ever" />
<meta property="og:image" content="https://unicorn-cdn.b-cdn.net/a2f3f0a9-408f-425b-8113-adf384346841/Screenshot-2024-02-04-at-20.53.43.webpimage.webp"/>
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://unicorn-cdn.b-cdn.net/a2f3f0a9-408f-425b-8113-adf384346841/Screenshot-2024-02-04-at-20.53.43.webpimage.webp">
<link href="https://basket-whisper.unicornplatform.page/" rel="canonical"><meta name="twitter:url" content="https://basket-whisper.unicornplatform.page/"><meta property="og:url" content="https://basket-whisper.unicornplatform.page/">
<script id="uniApiResponseData" type="application/json">{"error_message": "Invalid URL 'mite.club': No scheme supplied. Perhaps you meant https://mite.club?"}</script>
<script>
try {
window.uniApiResponseData = JSON.parse(document.getElementById('uniApiResponseData').textContent);
} catch(e) {
window.uniApiResponseData = {error_message: 'Error parsing API response data'}
console.error('Error parsing API response data', e);
}
</script>
</head>
<body class="custom-google-fonts-enabled comps" id="162060-494844">
<nav
id="uni-navigation-bar"
class="js-nav nav-02 "
>
<div class="container container--max">
<div class="nav-02__box">
<div class="nav-02__logo"><a class="nav-02__link" href="/" target="_self">
<img
class="nav-02__logo_img"
height="64"
alt="Mite the Future of Industrial IoT platfrom"
src="https://unicorn-cdn.b-cdn.net/618c8abe-759c-457f-9eeb-79671910e2f6/mite-the-future-of-industrial-iot-platfrom.webp"
srcset="https://unicorn-cdn.b-cdn.net/618c8abe-759c-457f-9eeb-79671910e2f6/mite-the-future-of-industrial-iot-platfrom.webp?width=144&height=64 144w,https://unicorn-cdn.b-cdn.net/618c8abe-759c-457f-9eeb-79671910e2f6/mite-the-future-of-industrial-iot-platfrom.webp?width=288&height=128 288w,https://unicorn-cdn.b-cdn.net/618c8abe-759c-457f-9eeb-79671910e2f6/mite-the-future-of-industrial-iot-platfrom.webp?width=432&height=192 432w,"
sizes="144px"
/>
<span class="nav-02__logo_text ">MITE - The Future of Industrial IoT</span>
</a></div>
<div class="nav-02__link js-menu">
<div class="nav-02__list_wrapper ">
<ul class="nav-02__list nav-02__list--desktop">
<li class="nav-02__item">
<a
class="button button--black-outline button--empty "
href="/" target="_blank"><span class="button__text">Home</span>
</a>
</li>
<li class="nav-02__item">
<button class="button button--black-outline button--empty button--has-dropdown button--has-arrow js-toggle-dropdown "><span class="button__text">About Us</span>
<span class="dropdown">
<ul class="dropdown__list">
<li class="dropdown__item">
<a href="/MITEIoTplatform" target="_blank" class="button button--empty button--black-outline">
<span class="button__text">Why MITE?</span>
</a>
</li>
<li class="dropdown__item">
<a href="/IndustrialIoTPlatform" target="_blank" class="button button--empty button--black-outline">
<span class="button__text">How MITE Works?</span>
</a>
</li>
<li class="dropdown__item">
<a href="/MITE_team" target="_blank" class="button button--empty button--black-outline">
<span class="button__text">Why we are_</span>
</a>
</li>
</ul>
</span>
</button>
</li>
<li class="nav-02__item">
<button class="button button--black-outline button--empty button--has-dropdown button--has-arrow js-toggle-dropdown "><span class="button__text">Services</span>
<span class="dropdown">
<ul class="dropdown__list">
<li class="dropdown__item">
<a href="/IoTplatform" target="_blank" class="button button--empty button--black-outline">
<span class="button__text">Industrial IoT platform</span>
</a>
</li>
<li class="dropdown__item">
<a href="/industrial smart metering devices " target="_blank" class="button button--empty button--black-outline">
<span class="button__text">Industrial Smart Metering</span>
</a>
</li>
</ul>
</span>
</button>
</li>
<li class="nav-02__item">
<a
class="button button--black-outline button--empty "
href="mite.club/contact" target="_blank"><span class="button__text">Contact Us</span>
</a>
</li>
<li class="nav-02__item">
<div class="buttons-set"><ul class="buttons-set__list"><li class="buttons-set__item"><a
data-stripe-product-id="" data-stripe-mode="payment" data-successful-payment-url="" data-cancel-payment-url=""
class="button button--accent-bg " href="https://booking.appointy.com/mite " target="_blank" ><span class="button__text">Get Started</span></a></li></ul></div>
</li>
</ul>
<ul class="nav-02__list nav-02__list--mobile">
<li class="nav-02__item">
<a
class="button button--black-outline button--empty "
href="/" target="_blank"><span class="button__text">Home</span>
</a>
</li>
<li class="nav-02__item">
<button class="button button--black-outline button--empty button--has-dropdown button--has-arrow js-toggle-dropdown "><span class="button__text">About Us</span>
<span class="dropdown">
<ul class="dropdown__list">
<li class="dropdown__item">
<a href="/MITEIoTplatform" target="_blank" class="button button--empty button--black-outline">
<span class="button__text">Why MITE?</span>
</a>
</li>
<li class="dropdown__item">
<a href="/IndustrialIoTPlatform" target="_blank" class="button button--empty button--black-outline">
<span class="button__text">How MITE Works?</span>
</a>
</li>
<li class="dropdown__item">
<a href="/MITE_team" target="_blank" class="button button--empty button--black-outline">
<span class="button__text">Why we are_</span>
</a>
</li>
</ul>
</span>
</button>
</li>
<li class="nav-02__item">
<button class="button button--black-outline button--empty button--has-dropdown button--has-arrow js-toggle-dropdown "><span class="button__text">Services</span>
<span class="dropdown">
<ul class="dropdown__list">
<li class="dropdown__item">
<a href="/IoTplatform" target="_blank" class="button button--empty button--black-outline">
<span class="button__text">Industrial IoT platform</span>
</a>
</li>
<li class="dropdown__item">
<a href="/industrial smart metering devices " target="_blank" class="button button--empty button--black-outline">
<span class="button__text">Industrial Smart Metering</span>
</a>
</li>
</ul>
</span>
</button>
</li>
<li class="nav-02__item">
<a
class="button button--black-outline button--empty "
href="mite.club/contact" target="_blank"><span class="button__text">Contact Us</span>
</a>
</li>
<li class="nav-02__item">
<div class="buttons-set"><ul class="buttons-set__list"><li class="buttons-set__item"><a
data-stripe-product-id="" data-stripe-mode="payment" data-successful-payment-url="" data-cancel-payment-url=""
class="button button--accent-bg " href="https://booking.appointy.com/mite " target="_blank" ><span class="button__text">Get Started</span></a></li></ul></div>
</li>
</ul>
</div>
<div class="nav-02__burger">
<button class="burger burger--black js-open-menu" type="button">
<div class="burger__box">
<div class="burger__inner"></div>
</div>
</button>
</div>
</div>
</div>
</div>
</nav>
<div
class="page-component__bg_image_box bg-white-color first_component page-component__bg_image_box--has-image header-27-parent"
id="header-29-296381"
style="background-image: url('https://unicorn-cdn.b-cdn.net/f7881a46-8d96-4c5c-a238-a7926e2331d6/')"
>
<div
class="page-component__bg_overlay_box "
style="opacity: 0.74;"
>
</div>
<div class="page-component__wrapper" style="z-index: 114;padding-top:70px;padding-bottom:70px;">
<header class="header-27">
<div class="container container--max header-27__container">
<h1 class="heading " >The Most Flexible IIoT Platform Ever</h1>
<div class="content_box "><h3>The MITE platform has been designed to transform physical infrastructure into a <strong>dynamic</strong> digital landscape, enabling businesses to:</h3>
<ul>
<li>easily orchestrate <strong>comprehensive</strong> physical infrastructure.</li>
<li>collect and analyze <strong>any amount</strong> of data. </li>
<li><strong>quickly and flexibly</strong> customize business processes to meet market challenges</li>
<li>and stay at the <strong>forefront of innovation</strong> leveraging the latest technological advances. </li>
</ul>
<h3>Let's dive into the details and discover what tangible impact MITE can have on your business.</h3>
</div>
<div class="header-27__buttons">
<form class="form form--centered-button js-no-integration-form"
action=""
method="GET"
data-sheet-id=""
data-redirect-url="Why MITE"
data-redirect-target-blank="True"
data-pass-values-redirect="False"
data-custom-popup-id="popup-01-success_default"
>
<div class="form__inputs">
<div class="form__input ">
<div class="form__input__label_box">
<label class="form__input__label " for="full_name-162060-0">
<span class="form__input__label_asterix" title="This field is required.">*</span>
Full Name
</label>
</div>
<input class="text-input js-form-input " type="text" id="full_name-162060-0" name="full_name" required placeholder="Enter your full name"/>
</div>
<div class="form__input ">
<div class="form__input__label_box">
<label class="form__input__label " for="01">
<span class="form__input__label_asterix" title="This field is required.">*</span>
Email
</label>
</div>
<input class="text-input js-form-input text-input js-form-input " type="email" id="01" name="email" required placeholder="Enter your email"/>
</div>
<div class="form__input form__input--full ">
<div class="form__input__label_box">
<label class="form__input__label " for="02">
<span class="form__input__label_asterix" title="This field is required.">*</span>
Enter your phone number:
</label>
</div>
<input class="text-input js-form-input text-input js-form-input " type="tel" id="02" name="TEL" required placeholder="Phone number"/>
</div>
<div class="form__button form__button--full ">
<button class="button js-submit-button button--accent-bg " type="submit" ><span class="button__text">Request a Demo</span>
<div class="spinner"></div>
<div class="button__submit_success">
<div class="button__success_circle "></div>
<div><svg class="button__success_tick" width="13" height="13" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"><path class="button__success_tick_path" stroke="#FFF" d="M0 8l5.119 3.873L11.709.381" fill="none" fill-rule="evenodd" stroke-linecap="square"/></svg></div>
</div><span class="icon"><svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg"><path d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z" fill-rule="nonzero" fill="#00396B" class="fill-main"/></svg></span>
</button>
</div>
<div class="form__messages_box">
<div class="form__messages">
<div class="message message--error js-message js-error-message">
<div class="message__box">
<button class="message__close js-close-message" type="button"><img loading="lazy" class="message__close_icon" src="https://dvzvtsvyecfyp.cloudfront.net/static/img/icons/corner-top--blue.svg"/></button>
<div class="message__body">
<div class="message__in">
<div class="message__bubble">
<div class="message__bubble_text"><b>Error.</b> Your form has not been submitted<img loading="lazy" class="emoji " src="https://dvzvtsvyecfyp.cloudfront.net/static/img/twemoji/1f914.svg" alt="Emoji"/>
</div>
</div>
<div class="message__bubble">
<div class="message__bubble_text">This is what the server says:
<div class="message__bubble_error js-error-message-text">There must be an @ at the beginning.</div>
</div>
</div>
</div>
<div class="message__out">
<div class="message__out_box">
<div class="message__bubble">
<div class="message__bubble_text message__bubble_text--out js-reaction-text">I will retry</div>
</div>
</div>
</div>
</div>
<div class="message__reply_box">
<div class="message__reply_word">Reply</div>
<div class="message__options">
<div class="message__option">
<button class="button js-react-on-message button--ruby-bg " type="submit"><span class="button__text">Uh oh!</span>
</button>
</div>
<div class="message__option">
<button class="button js-react-on-message button--ruby-bg " type="submit"><span class="button__text">I will retry</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="content_box cta_bottom_info ">Join us and stay at the forefront of innovation.</div>
</form>
</div>
</div>
<div class="container container--max">
<ul class="header-27__links">
<li class="header-27__item">
<div class="header-27__emoji">
<img src="https://dvzvtsvyecfyp.cloudfront.net/static/img/twemoji/1f4ca.svg" class=""/>
</div>
<h3 class="header-27__title">For any Industrial protocols</h3>
<div class="header-27__info content_box"><p>Effortlessly connect any type of device, regardless of industrial protocol, through our user-friendly interface. In just a few minutes, gain immediate access to data visualization from all your devices.</p>
</div>
<div class="header-27__link">
<a
data-stripe-product-id="" data-stripe-mode="payment" data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline"
href="/"
target="_blank"
>
<span class="button__text">Learn more</span>
<span class="icon">
<svg
viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg"><path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</li>
<li class="header-27__item">
<div class="header-27__emoji">
<img
alt="No code"
class=""
height="30"
src="https://unicorn-cdn.b-cdn.net/3dc96514-4c3c-4ce4-b752-58b5cf1d5922/no-code.png"
srcset="https://unicorn-cdn.b-cdn.net/3dc96514-4c3c-4ce4-b752-58b5cf1d5922/no-code.png?width=30&height=30 30w,https://unicorn-cdn.b-cdn.net/3dc96514-4c3c-4ce4-b752-58b5cf1d5922/no-code.png?width=60&height=60 60w,https://unicorn-cdn.b-cdn.net/3dc96514-4c3c-4ce4-b752-58b5cf1d5922/no-code.png?width=90&height=90 90w,"
sizes="30px"
/>
</div>
<h3 class="header-27__title">For any business process complexity </h3>
<div class="header-27__info content_box"><p>Infinite possibilities for designing business processes using all kinds of data combinations. If you can conceptualize your task, you can customize it accordingly with MITE. Any complexity you need.</p>
</div>
<div class="header-27__link">
<a
data-stripe-product-id="" data-stripe-mode="payment" data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline"
href="/"
target="_blank"
>
<span class="button__text">Learn more</span>
<span class="icon">
<svg
viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg"><path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</li>
<li class="header-27__item">
<div class="header-27__emoji">
<img
alt="User friendly"
class=""
height="30"
src="https://unicorn-cdn.b-cdn.net/32063df8-34e4-41a5-9027-fc22edad9d5d/user-friendly.png"
srcset="https://unicorn-cdn.b-cdn.net/32063df8-34e4-41a5-9027-fc22edad9d5d/user-friendly.png?width=30&height=30 30w,https://unicorn-cdn.b-cdn.net/32063df8-34e4-41a5-9027-fc22edad9d5d/user-friendly.png?width=60&height=60 60w,https://unicorn-cdn.b-cdn.net/32063df8-34e4-41a5-9027-fc22edad9d5d/user-friendly.png?width=90&height=90 90w,"
sizes="30px"
/>
</div>
<h3 class="header-27__title">For non-programmers Single-click UI</h3>
<div class="header-27__info content_box"><p>Not a single line of code is required. MITE has been specifically designed for non-programmers with an intuitive interface to ensure smooth usability, allowing focus on tasks without needing technical expertise.</p>
</div>
<div class="header-27__link">
<a
data-stripe-product-id="" data-stripe-mode="payment" data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline"
href="/"
target="_blank"
>
<span class="button__text">Learn more</span>
<span class="icon">
<svg
viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg"><path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>
</svg>
</span>
</a>
</div>
</li>
</ul>
</div>
</header>
</div>
</div>
<div
class="page-component__bg_image_box bg-light_gray-color MITEIoTplatform slider-05-parent"
id="slider-07-422421"
>
<div
class="page-component__bg_overlay_box "
style=""
>
</div>
<div class="page-component__wrapper" style="z-index: 113;padding-top:50px;padding-bottom:10px;">
<div class="slider-05 graphics-video default-graphics-image">
<div class="container container--max">
<div class="title-box title-box--center">
<h2 class="heading " >Why MITE is the Future of Industrial IoT?</h2>
<div class="title-box__text content_box "><p>the most Flexible Industrial platform ever</p>
</div>
</div>
</div>
<div class="container container--max slider-05__wrapper">
<div class="slider-05__slider_container">
<div class="slider slider-05__slider">
<div class="slider__arrow slider__arrow--prev">
<button class="circle-button js-prev-arrow circle-button--icon circle-button--light-bg" type="button"><span class="icon"><svg width="24" height="17" viewBox="0 0 24 17" xmlns="http://www.w3.org/2000/svg"><g id="styleguide" fill="none" fill-rule="evenodd"><g id="Unicorn-Styleguide" transform="translate(-121 -2006)" fill-rule="nonzero" fill="#00396B" class="fill-main"><g id="Icons" transform="translate(55 1963)"><g id="arrow-pointing-to-right" transform="translate(66 43)"><path d="M23.673 7.688L16.531.336a1.094 1.094 0 0 0-1.578 0 1.173 1.173 0 0 0 0 1.625l5.237 5.39H1.116C.5 7.351 0 7.866 0 8.5s.5 1.149 1.116 1.149H20.19l-5.237 5.39a1.173 1.173 0 0 0 0 1.625 1.097 1.097 0 0 0 1.578 0l7.142-7.352a1.173 1.173 0 0 0 0-1.624z" id="Shape" transform="matrix(-1 0 0 1 24 0)"/></g></g></g></g></svg></span>
</button>
</div>
<div class="slider__arrow slider__arrow--next">
<button class="circle-button js-next-arrow circle-button--icon circle-button--light-bg" type="button"><span class="icon"><svg viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg"><path d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z" fill-rule="nonzero" fill="#00396B" class="fill-main"/></svg></span>
</button>
</div>
<ul class="slider__box js-slider" data-slider-config="{"dots": false, "infinite": true, "speed": 300, "fade": true, "cssEase": "ease-out", "adaptiveHeight": true, "centerMode": true, "variableWidth": false, "slidesToShow": 1, "lazyLoad": "ondemand", "focusOnSelect": false, "arrows": true, "responsive": [{"breakpoint": 600, "settings": {"dots": true, "autoplaySpeed": 2000}}]}">
<li class="slider-05__item slider__item">
<div class="graphics-video__video-element slider-05__video">
<iframe loading="lazy" class="video-01__iframe video-01__iframe--youtube" src="https://www.youtube.com/embed/T4zX1gGNo-0?rel=0?rel=0" frameBorder="0" allow="autoplay; encrypted-media" allowFullScreen="true"></iframe>
<div class="spinner"></div>
</div>
</li>
</ul>
</div>
</div>
<ul class="slider-05__text_container">
<li class="slider-05__feature">
<div class="feature ">
<h3 class="feature__title">
<div class="feature__icon">
<span class="icon" data="{'type': 'abstractIcon', 'emojiSrc': '1f381.svg', 'uploadedSrc': '', 'lineaIconSrc': '', 'abstractIconId': '7', 'uploadedHeight': 30}">
<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="#E9F1FF" class="fill-bg-light" cx="20" cy="20" r="20"/><path fill="#4D61FC" class="fill-main" d="M28.686 14.008l-9 9.085-3.6-3.6-1.2 1.2 4.8 4.8L29.97 15.208z"/><path d="M25.086 16.208l-1.2-1.2-5.4 5.4 1.2 1.2 5.4-5.4zM11 20.693l4.8 4.8 1.2-1.2-4.8-4.8-1.2 1.2z" fill="#00396B" class="fill-secondary" fill-rule="nonzero"/></g></svg>
</span>
</div>
<span class="feature__title_text">
Developed on lsFusion - the most declarative open source technology in the world
</span>
</h3>
<div class="feature__content">
<span class="feature__content_text content_box">
<ul>
<li>Develop with 10x speed and simplicity. </li>
<li>Handle billions of records and terabytes of data effortlessly. </li>
<li>Support thousands of concurrent users on a single database. </li>
<li>No infrastructure requirements - handle hundreds of users even at 1MB/s. </li>
<li>Achieve unlimited scalability. Install with a single click and expand horizontally as needed.</li>
<li>Customize unique logic without system limitations or programming expertise.</li>
</ul>
</span>
</div>
</div>
</li>
<li class="slider-05__feature">
<div class="feature ">
<h3 class="feature__title">
<div class="feature__icon">
<span class="icon" data="{'type': 'abstractIcon', 'emojiSrc': '1f381.svg', 'uploadedSrc': '', 'lineaIconSrc': '', 'abstractIconId': '7', 'uploadedHeight': 30}">
<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="#E9F1FF" class="fill-bg-light" cx="20" cy="20" r="20"/><path fill="#4D61FC" class="fill-main" d="M28.686 14.008l-9 9.085-3.6-3.6-1.2 1.2 4.8 4.8L29.97 15.208z"/><path d="M25.086 16.208l-1.2-1.2-5.4 5.4 1.2 1.2 5.4-5.4zM11 20.693l4.8 4.8 1.2-1.2-4.8-4.8-1.2 1.2z" fill="#00396B" class="fill-secondary" fill-rule="nonzero"/></g></svg>
</span>
</div>
<span class="feature__title_text">
Embracing Disruptive Technologies and More Than 7 Years in the Industry
</span>
</h3>
<div class="feature__content">
<span class="feature__content_text content_box">
<ul>
<li>Powered by open-source lsFusion, MITE ensures limitless functionality. We continually integrate cutting-edge technologies to keep our users at the forefront of innovation.</li>
<li>With a vast industry experience and cutting-edge business process customization tools, we empower our customers to get ahead of the competition. Our mission is to change the way customers value IoT: not just as an expense, but as a gateway to unprecedented opportunities to grow and capture the future of industry.</li>
</ul>
</span>
</div>
<div class="feature__button_box">
<a
data-stripe-product-id="" data-stripe-mode="payment" data-successful-payment-url="" data-cancel-payment-url=""
class="button button--empty button--accent-outline"
href="/"
target="_blank"
>
<span class="button__text">Explore more</span>
<span class="icon">
<svg
viewBox="0 0 13 10" xmlns="http://www.w3.org/2000/svg"><path
d="M12.823 4.164L8.954.182a.592.592 0 0 0-.854 0 .635.635 0 0 0 0 .88l2.836 2.92H.604A.614.614 0 0 0 0 4.604c0 .344.27.622.604.622h10.332L8.1 8.146a.635.635 0 0 0 0 .88.594.594 0 0 0 .854 0l3.869-3.982a.635.635 0 0 0 0-.88z"
fill-rule="nonzero" fill="#00396B"></path>