-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1097 lines (1054 loc) · 64.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
<!-- DeraConnect Website developed with Bulma CSS -->
<!DOCTYPE html>
<html lang="en" style=" scroll-snap-points-y: repeat(100vh); scroll-snap-type: y proximity;" >
<head>
<link rel="apple-touch-icon" sizes="57x57" href="favicons/apple-icon-57x57.webp">
<link rel="apple-touch-icon" sizes="60x60" href="favicons/apple-icon-60x60.webp">
<link rel="apple-touch-icon" sizes="72x72" href="favicons/apple-icon-72x72.webp">
<link rel="apple-touch-icon" sizes="76x76" href="favicons/apple-icon-76x76.webp">
<link rel="apple-touch-icon" sizes="114x114" href="favicons/apple-icon-114x114.webp">
<link rel="apple-touch-icon" sizes="120x120" href="favicons/apple-icon-120x120.webp">
<link rel="apple-touch-icon" sizes="144x144" href="favicons/apple-icon-144x144.webp">
<link rel="apple-touch-icon" sizes="152x152" href="favicons/apple-icon-152x152.webp">
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-icon-180x180.webp">
<link rel="icon" type="image/png" sizes="192x192" href="favicons/android-icon-192x192.webp">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.webp">
<link rel="icon" type="image/png" sizes="96x96" href="favicons/favicon-96x96.webp">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.webp">
<link rel="manifest" href="favicons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="favicons/ms-icon-144x144.webp">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DeraConnect</title>
<link href='https://fonts.googleapis.com/css?family=Montserrat&display=swap' rel='stylesheet'>
<link rel="stylesheet" href="/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.14.0/js/all.js">
</script>
<style>
.bd-footer-link-title {
color: #BDF347;
font-size: 16px;
font-weight: 400;
}
.bd-footer-link-title h2{
margin-bottom: 4vh;
}
.bd-newsletter-box .icon {
align-self: flex-start;
}
.bd-footer-link {
padding-bottom: 2vh;
}
.bd-footer-link a {
color: white;
}
.bd-footer-link a:link {
color: white;
}
/* visited link */
.bd-footer-link a:visited {
color: white;
}
/* mouse over link */
.bd-footer-link a:hover {
color: #bdf347;
}
@font-face { font-family: BodyBold; src: url('fonts/AIA-BodyBold.ttf'); font-display: swap;}
.features {
background: rgba(0, 0, 0, 0.75);
/* Shadow */
min-height: 30vh;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
/* Note: backdrop-filter has minimal browser support */
text-align: left; font-family: 'Montserrat'; color: rgba(255, 255, 255, 0.85); font-size: larger; line-height: 116.5%;
border-radius: 4px;
}
@keyframes float {
0% {
transform: translatey(0px);
}
50% {
transform: translatey(-20px);
}
100% {
transform: translatey(0px);
}
}
.isActive{
background: linear-gradient(180deg, #5ef347 0%, #5ef347 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
}
.desc{
font-family: 'Montserrat';
font-style: normal;
line-height: 95.1%;
/* or 30px */
/* FocusedText-B */
color: rgba(0, 0, 0, 0.95);
}
/* Slide */
.hover {
margin-left: 0px;
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover:hover {
margin-left: -40px;
}
.icon-scroll,
.icon-scroll:before {
position: fixed;
z-index: 999;
right: 2rem;
}
.icon-scroll {
width: 40px;
height: 70px;
margin-left: -20px;
bottom: 4vh;
margin-top: -35px;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.63);
border-radius: 25px;
}
.icon-scroll:before {
position: fixed;
content: '';
width: 8px;
height: 8px;
background: rgba(0, 0, 0, 0.505);
margin-left: -4px;
bottom: 10vh;
border-radius: 4px;
right: 3rem;
animation-duration: 1.5s;
animation-iteration-count: infinite;
animation-name: scroll;
}
@-moz-keyframes scroll {
0% {
opacity: 1;
}
100% {
opacity: 0;
transform: translateY(46px);
}
}
@-webkit-keyframes scroll {
0% {
opacity: 1;
}
100% {
opacity: 0;
transform: translateY(46px);
}
}
@-o-keyframes scroll {
0% {
opacity: 1;
}
100% {
opacity: 0;
transform: translateY(46px);
}
}
@keyframes scroll {
0% {
opacity: 1;
}
100% {
opacity: 0;
transform: translateY(46px);
}
}
</style>
</head>
<body style=" width: 100vw; height: 100vh;" >
<div class="icon-scroll"></div>
<nav id="navbar" class="navbar is-fixed-top is-transparent" style="background-color: transparent;max-width:100%; background-image: none;" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item"href="https://DeraConnect.com" style=" margin-left: 5%;">
<img id="logoimg" style="transition: 0.2s; max-height: none; " src="images/headerIcons/logo.svg" alt="DeraConnect Web3 based serverless secure remote network" >
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarMenu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarMenu" class="navbar-menu" >
<div class="navbar-start container columns is-multiline" style="margin-left: auto; margin-right: auto; margin-top: auto;">
<!-- Items left
<div style="transition: 0.2s;" id="headstart" class="column is-one-third"></div> -->
<!-- Logo in the center -->
<div class="column is-two-third"></div>
<!-- Items right
<div style="transition: 0.2s;" id="headbottom" class="column is-one-third"></div> -->
<div class="column is-one-third">
<div class="columns">
<div class="column is-one-quarter" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="/portal.html">
<img id="portalicon" alt="DeraConnect Portal" src="images/headerIcons/portalicon.svg" class="icon" />
<p id="portalText" class="has-text-white">DevPortal</p>
</a>
</div>
<div class="column is-one-quarter" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="#contact">
<img id="contacticon" alt="DeraConnect Contact" src="images/headerIcons/contact.svg" class="icon" />
<p id="contactText" class="has-text-white">Contact</p>
</a>
</div>
<div class="column is-one-quarter" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="#features1">
<img id="reficon" alt="DeraConnect Features" src="images/headerIcons/reficon.svg" class="icon" />
<p id="refText" class="has-text-white">Features</p>
</a>
</div>
<div class="column is-one-quarter" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="#about">
<img id="abouticon" alt="About Deraconnect" src="images/headerIcons/abouticon.svg" class="icon" />
<p id="aboutText" class="has-text-white">About</p>
</a>
</div>
</div>
</div>
</div>
</div>
</nav><div>
<!-- Section with a big textbox at the middle
<section class="hero is-fullheight is-default is-bold" style=" background-color:rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 1); scroll-snap-align: center; background-size: contain ,cover; background-position: center,center;background-repeat: no-repeat, repeat; background-image:url('images/bgShape.svg'),url('images/bgGradient.webp');">
<div class="hero-body">
<div class="container has-text-centered">
<div class="columns is-vcentered">
<div class="column ">
<br/>
<br/>
<br/>
<h3 style="font-family: 'Montserrat';" class="subtitle has-text-white is-5" sty>
WEBüç BASED SERVERLESS SECURE
</h2>
<p></p>
<h1 style="font-family: 'Montserrat';" class="title has-text-white is-1">
Remote <p></p> Private Network
</h1>
<p></p>
<h2 style="font-family: 'Montserrat';" class="subtitle has-text-white is-5">
Achieve high security standards with the power of blockchain
<p></p>
Remotely access your apps, devices and business
</h2>
<br>
<p class="has-text-centered">
<a style="background: rgba(255, 255, 255, 0.4); color: white; " class="button is-primary is-outlined is-rounded is-medium " href="https://DeraConnect.com">
<span>Learn More</span>
</a>
</p>
</div>
</div>
</div>
</div>
</section> -->
<section id="home" class="hero is-fullheight is-default is-bold" style="scroll-snap-align: center; background-size: cover; background-position: center;background-repeat:repeat; background-image:url('images/bgGradient.webp');">
<div class="hero-body">
<div class="container has-text-centered">
<div class="columns is-vcentered is-multiline is-mobile">
<div class="column is-5-desktop is-12-mobile">
<h3 style="font-family: 'Montserrat';" class="subtitle has-text-left has-text-white is-5" sty>
<label style="color: #bdf347;" >WEB3</label> BASED SERVERLESS SECURE
</h2>
<h1 style="font-family: 'Montserrat';" class="title has-text-left has-text-white is-1">
<label style="font-size: 80%;" >Remote Private</label> <br> <label style="font-size: 140%;" >Network</label>
</h1>
<h4 style="font-family: 'Montserrat';" class="subtitle has-text-left has-text-white is-6">
Achieve high security standards with the power of blockchain
<br>
Remotely access your apps, devices and business
</h4>
<br>
<p class="has-text-left">
<a style="background: rgba(255, 255, 255, 0.4); color: whitesmoke; font-family: 'Montserrat'; " class="button is-primary is-rounded is-medium " href="#about">
<span>Learn More</span>
</a>
</p>
</div>
<div class="column is-invisible-desktop is-2-mobile"> </div>
<div class="column is-6-desktop is-8-mobile ">
<figure class="image is-4by3">
<img src="images/bgShape.svg" style="animation: float 6s ease-in-out infinite;" alt="Description">
</figure>
</div>
</div>
</div>
</div>
</section>
<section id="about" class="hero is-fullheight is-default is-bold" style="scroll-snap-align: start; max-width: 100vw;">
<div class="hero-body">
<div class="container has-text-centered" style="max-width:90%;" >
<div class="columns is-marginless">
<div class="column is-12">
<h4 style="font-family: 'Montserrat';" class="title has-text-left is-4">
<!-- için DeraConnect ne katkı sağlar? -->
Dera Connect Solution for
</h4>
</div>
</div>
<div class="tabs is-large">
<ul style="margin-bottom: 1.5rem; justify-content: space-between; ">
<li class="tab is-active" onclick="openTab(event,'Everyone')" style="font-family: 'Montserrat';"><a>Everyone</a></li>
<li class="tab" onclick="openTab(event,'Factories')" style="font-family: 'Montserrat';"><a>Factories</a></li>
<li class="tab" onclick="openTab(event,'Startups')" style="font-family: 'Montserrat';"><a>Startups</a></li>
<li class="tab" onclick="openTab(event,'SupplyChains')" style="font-family: 'Montserrat';"><a>Supply Chains</a></li>
</ul>
</div>
<div class="columns">
<div class="column is-12">
<div id="Everyone" class="content-tab columns is-multiline is-mobile" style="display: flex;">
<div class="column is-4-desktop is-12-mobile">
<img id="forImg" src="images/forPage/1.gif" style="height:35vh;" alt="Description">
</div>
<div class="column is-8-desktop is-12-mobile" style="align-self: flex-end;" >
<h5 style="font-family: 'Montserrat'; font-weight: 300; " class="title desc has-text-left is-5">
<!-- Dera Connect ile cihazlarınızı, uygulamalarınızı ve işletmelerinizi uzaktan erişilebilir hale getirebilirsiniz. Sunucu kullanmanıza gerek kalmadan her tür uygulamanızı internet üzerinden erişebilir kılabilirsiniz. Bunun için herhangi bi IT masrafı veya güvenlik duvarına ihtiyaç yoktur. Blockchainin gücü ile ip adresi kullanmanıza veya port açmanıza gerek kalmaz.
Gerçek sıfır-sızıntı sistemler kurabilirsiniz. Uygulamanıza erişimi akıllı kurallarla kontrol edebilirsiniz. Bu kuralların dışında sisteminize gelen hiçbir erişime yanıt vermeyen yazılımımızla, internete çıkan hiçbir noktanız olmadan her yerden erişilebilir olun. Üstelik her türlü yazılım ve sistemle ek geliştirme gerekmeden uyumludur. -->
With DeraConnect, you can remotely access your devices, applications and businesses. You can access any application over the internet without using a server. You don't need any IT expenses or security walls for this. You don't need to use IP addresses or open ports with the power of blockchain.
<br>
<br>
You can create real zero-leakage systems. You can control access to your application with smart rules. With our software that does not respond to any access to the system outside these rules, you can be accessed from anywhere without any point coming out to the internet. And it is compatible with any software and system without additional development.
</h5>
</div>
</div>
<div id="Factories" class="content-tab columns is-multiline is-mobile" style="display: none;">
<div class="column is-4-desktop is-12-mobile">
<img id="forImg" src="images/forPage/2.svg" style="height:35vh;" alt="Description">
</div>
<div class="column is-8-desktop is-12-mobile" style="align-self: flex-end;" >
<h3 style="font-family: 'Montserrat'; font-weight: 300; " class="title desc has-text-left is-5">
For factories and industrial companies, secure remote access to PLCs, SCADA, MES, ERP, and other systems is a must. DeraConnect provides a secure and easy-to-use solution for this. You can access your systems from anywhere in the world without opening ports or using IP addresses.
<br>
<br>
You can also create a secure remote access solution for your customers.
</h3>
</div>
</div>
<div id="Startups" class="content-tab columns is-multiline is-mobile" style="display: none;">
<div class="column is-4-desktop is-12-mobile">
<img id="forImg" src="images/forPage/3.webp" style="height:35vh;" alt="Description">
</div>
<div class="column is-8-desktop is-12-mobile" style="align-self: flex-end;" >
<h3 style="font-family: 'Montserrat'; font-weight: 300; " class="title desc has-text-left is-5">
For Startups and small sized companies, maintaining cloud servers and security is a big challenge. DeraConnect provides a secure and easy-to-use solution for this. You don't need an IT team or costly cloud servers. With easy-to-use rules, you can create a secure remote app in minutes. You can access your apps from anywhere in the world without opening ports or using IP addresses.
</h3>
</div>
</div>
<div id="SupplyChains" class="content-tab columns is-multiline is-mobile" style="display: none;">
<div class="column is-4-desktop is-12-mobile">
<img id="forImg" src="images/forPage/4.svg" style="height:35vh;" alt="Description">
</div>
<div class="column is-8-desktop is-12-mobile" style="align-self: flex-end;" >
<h3 style="font-family: 'Montserrat'; font-weight: 300; " class="title desc has-text-left is-5">
Connecting all the devices in the supply chain to a private network is a big challenge. DeraConnect provides a secure and easy-to-use solution for this. You can create a private network for your supply chain and connect all the devices to it as they are on your local network. You can access your devices from anywhere in the world without opening ports or using IP addresses.
</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="features1" style="scroll-snap-align: center;" class="hero is-medium is-default is-fullheight is-bold">
<div class="hero-body">
<div class="container has-text-centered" style="max-width:90%;">
<div class="columns is-multiline is-vcentered">
<div class="column is-4-desktop is-12-mobile">
<h2 style="font-family: 'Montserrat';" class="title has-text-left-desktop has-text-centered-mobile has-text-black is-3">
<!-- Web 3 'ün gücüyle sunucuz uzaktan erişim sağlayın -->
<!-- english -->
Access your servers remotely with the power of Web 3
</h2>
<p></p>
<h4 style="font-family: 'Montserrat';" class="subtitle has-text-left-desktop has-text-centered-mobile has-text-black is-6">
<!-- Sunucu kullanmanıza gerek kalmadan istediğiniz uygulamalarınızı internet üzerinden erişebilir kılın. -->
<!-- english -->
Access your applications remotely without using a server.
</h4>
<p class="has-text-left-desktop has-text-centered-mobile">
<a style=" font-family: 'Montserrat'; " class="button is-primary is-outlined is-rounded " href="#contact">
<span>Make your business accessible</span>
</a>
</p>
</div>
<div class="column is-8-desktop is-12-mobile">
<img src="images/pages/s1.webp" alt="Deraconnect Factory Flow">
</div>
</div>
</div>
</div>
</section>
<section id="features2" style="scroll-snap-align: center;background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(6, 221, 144, 0.146635) 47.05%, rgba(255, 255, 255, 0.2) 100%);" class="hero is-medium is-default is-fullheight is-bold">
<div class="hero-body" style="padding-right: 0px; overflow-x: hidden;">
<div class="container has-text-centered" style="margin-right: 0px; max-width:90%;">
<div class="columns is-multiline is-vcentered">
<div class="column is-5-desktop is-12-mobile">
<h2 style="font-family: 'Montserrat';" class="title has-text-left-desktop has-text-centered-mobile has-text-black is-3">
<!-- Uygulamalarınıza, cihazlarınıza ve işletmenize uzaktan erişin -->
<!-- english -->
Access your applications, devices and business remotely
</h2>
<p></p>
<h4 style="font-family: 'Montserrat';" class="subtitle has-text-left-desktop has-text-centered-mobile has-text-black is-6">
<!-- Sunucu kullanmanıza gerek kalmadan istediğiniz uygulamalarınızı internet üzerinden erişebilir kılın. -->
<!-- english -->
Access your applications remotely without using a server.
</h4>
<p class="has-text-left-desktop has-text-centered-mobile">
<a style=" font-family: 'Montserrat'; " class="button is-primary is-outlined is-rounded " href="#contact">
<span>Move to Web3</span>
</a>
</p>
</div>
<div class="column is-7-desktop is-12-mobile" style="overflow:hidden;">
<div class="columns is-vcentered">
<div class="column is-3-desktop is-0-mobile">
</div>
<div class="column is-12-desktop is-12-mobile">
<img class="hover" src="images/pages/s4.webp" alt="Description">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="features3" style="scroll-snap-align: center;" class="hero is-medium is-default is-fullheight is-bold">
<div class="hero-body" style="padding-right: 0px; overflow-x: hidden;">
<div class="container has-text-centered" style="margin-right: 0px; max-width:90%;">
<div class="columns is-multiline is-vcentered">
<div class="column is-5-desktop is-12-mobile">
<h2 style="font-family: 'Montserrat';" class="title has-text-left-desktop has-text-centered-mobile has-text-black is-3">
<!-- Blockchain ile yüksek güvenlik standartlarına ulaşın -->
<!-- english -->
Reach high security standards with Blockchain
</h2>
<p></p>
<h4 style="font-family: 'Montserrat';" class="subtitle has-text-left-desktop has-text-centered-mobile has-text-black is-6">
<!-- Tüm uygulamalarınza ve cihazlarınza her yerden güvenle bağlanın. Deraconnect ile cihazlarınızı, uygulamlarınızı ve işletmelerinizi uzaktan erişebilir hale getirin. -->
<!-- english -->
Connect to all your applications and devices from anywhere safely. With DeraConnect, make your devices, applications and businesses accessible remotely.
</h4>
<p class="has-text-left-desktop has-text-centered-mobile">
<a style=" font-family: 'Montserrat'; " class="button is-primary is-outlined is-rounded " href="#contact">
<span>Move your app to higher standarts</span>
</a>
</p>
</div>
<div class="column is-7-desktop is-12-mobile" style="overflow:hidden;">
<div class="columns is-vcentered">
<div class="column is-3-desktop is-0-mobile">
</div>
<div class="column is-12-desktop is-12-mobile">
<img class="hover" src="images/pages/s3.webp" alt="Description">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="features4" style="scroll-snap-align: center; background-color: #A4CB62;" class="hero is-medium is-default is-fullheight is-bold">
<div class="hero-body" style="padding-right: 0px; overflow-x: hidden;">
<div class="container has-text-centered" style="max-width:90%;">
<div class="columns is-multiline is-vcentered">
<div class="column is-5-desktop is-11-mobile">
<h2 style="font-family: 'Montserrat';" class="title has-text-left-desktop has-text-centered-mobile has-text-black is-3">
<!-- IT ve sunucu masraflarından kurtulun. -->
<!-- english -->
Lower your IT and server costs.
</h2>
<p></p>
<h4 style="font-family: 'Montserrat';" class="subtitle has-text-left-desktop has-text-centered-mobile has-text-black is-6">
<!-- Uygulamalarınızı internet üzerinden IT masrafı veya güvenlik duvarına ihtiyaç duymadan erişebilir kılın. Üstelik Blockchain in gücü ile ip adresi kullanmanıza veya port açmanıza da gerek yok. -->
<!-- english -->
Access your applications over the internet without the need for an IT team or a firewall. And you don't even need to use your IP address or open ports with the power of Blockchain.
</h4>
<p class="has-text-left-desktop has-text-centered">
<a style=" font-family: 'Montserrat'; " class="button is-light is-outlined is-rounded " href="#contact">
<span>Contact Us to Lower Your Costs</span>
</a>
</p>
</div>
<div class="column is-7-desktop is-11-mobile">
<img src="images/pages/s5.webp" alt="Description">
</div>
</div>
</div>
</div>
</section>
<section id="features5" style="scroll-snap-align: center;background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(6, 221, 144, 0.146635) 47.05%, rgba(255, 255, 255, 0.2) 100%);" class="hero is-medium is-default is-fullheight is-bold">
<div class="hero-body" style="padding-right: 0px; overflow-x: hidden;">
<div class="container has-text-centered" style="margin-right: 0px; max-width:90%;">
<div class="columns is-multiline is-vcentered">
<div class="column is-5-desktop is-12-mobile">
<h2 style="font-family: 'Montserrat';" class="title has-text-left-desktop has-text-centered-mobile has-text-black is-3">
<!-- Ek geliştiremelere gerek duymadan varolan uygulamanızı Web3’e entegre edin -->
<!-- english -->
Integrate your existing applications with Web3 without additional development
</h2>
<p></p>
<h4 style="font-family: 'Montserrat';" class="subtitle has-text-left-desktop has-text-centered-mobile has-text-black is-6">
<!-- Tüm uygulamalarınza ve cihazlarınza her yerden güvenle bağlanın. Deraconnect ile cihazlarınızı, uygulamlarınızı ve işletmelerinizi uzaktan erişebilir hale getirin. -->
<!-- english -->
Connect to all your applications and devices from anywhere safely. With DeraConnect, make your devices, applications and businesses accessible remotely.
</h4>
<p class="has-text-left-desktop has-text-centered-mobile">
<a style=" font-family: 'Montserrat'; " class="button is-primary is-outlined is-rounded " href="#contact">
<span>Integrate Now</span>
</a>
</p>
</div>
<div class="column is-7-desktop is-12-mobile" style="overflow:hidden;">
<div class="columns is-vcentered">
<div class="column is-3-desktop is-0-mobile">
</div>
<div class="column is-12-desktop is-12-mobile">
<img class="hover" src="images/pages/s6.webp" alt="Description">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="highlight" style="scroll-snap-align: start;background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 194, 220, 0.66) 34.03%, rgba(24, 174, 93, 0.66) 68.92%, rgba(255, 255, 255, 0.95) 100%), url(images/bgGrid.svg);"class="hero is-medium is-default is-fullheight is-bold">
<!-- 2 rows, 1 with 4 empty cols, 1 with 3 empty cols, centered -->
<div class="hero-body">
<div class="container is-full has-text-centered has-text-white">
<div class="columns is-multiline is-vcentered is-mobile ">
<div class="column is-12">
<h1 class="title is-1" style="font-family: 'Montserrat';color: rgba(0, 0, 0, 0.75);" >
Highlited Features
</h1>
</div>
<div class="column is-2-desktop is-0-mobile"> </div>
<div class="column is-2-desktop is-5-mobile features" >
<span style="font-size: 1.5em; "><img align="left" src="images/icons/1.svg"/> </span>
<br>
<br>
<!-- Blockchain ve Web3 altyapısı ile merkeziyetsiz iletişim sağlayın -->
<!-- english -->
Have decentralized communication with Blockchain and Web3 infrastructure
</div>
<div class="column is-0"></div>
<div class="column is-2-desktop is-5-mobile features" >
<span style="font-size: 1.5em; "><img align="left" src="images/icons/2.svg"/> </span>
<br>
<br>
<!-- Veri erişimi akıllı kontratlarla kolayca ve güvenli şekilde yönetilebilir -->
<!-- english -->
Data access can be easily and safely managed with smart contracts
</div>
<div class="column is-0"></div>
<div class="column is-2-desktop is-5-mobile features" >
<span style="font-size: 1.5em; "><img align="left" src="images/icons/3.svg"/> </span>
<br>
<br>
<!-- Dağınık yapıdaki sistemimiz sayesinde erişim hiçbir zaman kaybedilmez -->
<!-- english -->
Thanks to the distributed system, access is never lost
</div>
<div class="column is-0"></div>
<div class="column is-2-desktop is-5-mobile features" >
<span style="font-size: 1.5em; "><img align="left" src="images/icons/4.svg"/> </span>
<br>
<br>
<!-- Uygulamalarınızı ve sistemlerinizi uyumlu hale getirmek için bir ekstra çalışma yapmanıza gerek yoktur -->
<!-- english -->
You don't need to do extra work to make your applications and systems compatible
</div>
<div class="column is-2-desktop is-0-mobile"> </div>
</div>
<div class="columns is-vcentered is-multiline is-mobile">
<div class="column is-3-desktop is-0-mobile"> </div>
<div class="column is-2-desktop is-5-mobile features" >
<!-- Kolay kullanıcı arayüzü ile hızlıca kullanıma hazır hale getirirsiniz. Hem de IT ekibine gerek olmadan -->
<!-- english -->
<span style="font-size: 1.5em; "><img align="left" src="images/icons/4.svg"/> </span>
<br>
<br>
You can quickly get ready to use with an easy-to-use user interface. Without an IT team
</div>
<div class="column is-0"></div>
<div class="column is-2-desktop is-5-mobile features" >
<!-- ve daha fazla özellikler için -->
<!--english -->
<span style="font-size: 1.5em; "><img align="left" src="images/icons/5.svg"/> </span>
<br>
<br>
<br>
<p>and for more features</p>
<a class="is-small has-text-left has-text-blue" href="https://DeraConnect.com">
<span>
<!-- Firmamı Deraconnect’e Geçir> -->
<!-- english -->
Move my business to Deraconnect
</span>
</a>
</div>
<div class="column is-0"></div>
<div class="column is-2-desktop is-5-mobile features" >
<!-- Herhangi bir port açılmasına gerek olmadan uygulamalarınıza erişebilirsiniz -->
<!-- english -->
<span style="font-size: 1.5em; "><img align="left" src="images/icons/2.svg"/> </span>
<br>
<br>
You can access your applications without opening any ports
</div>
<div class="column is-3-desktop is-0-mobile"> </div>
</div>
</div>
</div>
</section>
<!-- Contact information page -->
<section id="contact" style="scroll-snap-align: start;" class="hero is-medium is-default is-fullheight is-bold">
<div class="hero-body">
<div class="container is-full has-text-centered" style="max-width:90%;">
<div class="columns is-vcentered is-multiline is-mobile">
<div class="column is-12">
<h1 class="title is-1" style="font-family: 'Montserrat';color: rgba(0, 0, 0, 0.75);" >
Contact Us
</h1>
</div>
<div class="column is-12">
<div class="columns is-centered is-multiline is-mobile">
<div class="column is-4-desktop is-12-mobile">
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="images/icons/phone.svg" alt="Placeholder image">
</figure>
</div>
<div class="media-content">
<p class="title is-4">Phone</p>
<p class="subtitle is-6">+90 0212 980 06 37</p>
</div>
</div>
</div>
</div>
</div>
<div class="column is-4-desktop is-12-mobile">
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="images/icons/mail.svg" alt="Placeholder image">
</figure>
</div>
<div class="media-content">
<p class="title is-4">Email</p>
<p class="subtitle is-6">
<a href="mailto:connect@derateknoloji.com">
connect@derateknoloji.com
</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="columns is-centered is-multiline is-mobile">
<div class="column is-4-desktop is-12-mobile">
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="images/icons/linkedingreen.svg" alt="Placeholder image">
</figure>
</div>
<div class="media-content">
<p class="title is-4">Linkedin</p>
<p class="subtitle is-6">
<a href="https://www.linkedin.com/company/dera-technology-design">
Dera Teknoloji
</a>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="column is-4-desktop is-12-mobile">
<div class="card">
<div class="card-content">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="images/icons/instagramblue.svg" alt="Placeholder image">
</figure>
</div>
<div class="media-content">
<p class="title is-4">Instagram</p>
<p class="subtitle is-6">
<a href="https://www.instagram.com/derateknoloji/">
@derateknoloji
</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- 80vh height section with a bgimage -->
<!-- <section id="contact" style="scroll-snap-align: center; min-height: 60vh; background-size: 65vW; background-position: right -5vw bottom -50vh;background-repeat:no-repeat; background-image:url('images/pages/contact.svg');" class="hero is-medium is-default is-bold">
<div class="hero-body">
<div class="container is-full has-text-centered">
<div class="columns is-vcentered is-multiline is-mobile">
<div class="column is-1-desktop is-0-mobile"> </div>
<div class="column is-7-desktop is-12-mobile">
<h3 style="font-family: 'Montserrat';" class="subtitle has-text-left is-3" sty>
READY TO GET STARTED?
</h2>
<h4 style="font-family: 'Montserrat';" class="subtitle has-text-left is-6">
Schedule a free strategy visit to start <br> transforming your business.
</h4>
<br>
<p class="has-text-left">
<a style="font-family: 'Montserrat'; " class="button is-primary is-outlined is-medium " href="mailto:connect@derateknoloji.com">
<span>Book A Call</span>
</a>
</p>
</div>
<div class="column is-invisible-desktop is-2-mobile"> </div>
</div>
</div>
</div>
</section> -->
<section id="footer" style="scroll-snap-align: end; min-height: 60vh; background-size: cover; background-position: center;background-repeat:repeat; background-image:url('images/bgGradient.webp');">
<div class="hero-foot">
<div class="container is-full has-text-left is-marginless">
<div class="columns bd-footer-links pt-6" style="width: 100vw; padding-left: 6vw; padding-right: 6vw; ">
<div class="column is-1-desktop is-invisible-mobile">
</div>
<div class="column is-4 has-text-left has-text-white">
<img id="logoimg" alt="DeraConnect Web3 based serverless secure remote network" style="transition: 0.2s; margin-bottom: 7vh; max-height: none; "
src="images/headerIcons/logoBlue.svg"/>
<p class="bd-footer-link has-text-left">
<h2>
We are here to help people make secure remote connections.
<br>
<br>
Made with mind and love in Istanbul
</h2>
</p>
</div>
<div class="column is-2" style="color: #bdf347;">
<div class="bd-footer-link-title">
<h2>WEBSITE MAP</h2>
</div>
<p class="bd-footer-link">
<a href="/portal">
Devportal
</a>
</p>
<p class="bd-footer-link">
<a href="/#features1">
Features
</a>
</p>
<p class="bd-footer-link">
<a href="/#about">
About
</a>
</p>
<p class="bd-footer-link">
<a href="/#contact">
Contact
</a>
</p>
</div>
<div class="column is-2" style="color: #bdf347;">
<div class="bd-footer-link-title">
<h2>CONTACT</h2>
</div>
<p class="bd-footer-link">
<a href="mailto:connect@derateknoloji.com">connect@derateknoloji.com</a>
</p>
<p class="bd-footer-link">
<a href="https://derateknoloji.com">www.derateknoloji.com</a>
</p>
<p class="bd-footer-link">
<a>Istanbul / Turkey</a>
</p>
<p class="bd-footer-link">
<a href="tel:+905369837063">TR: +90 212 980 06 37</a>
</p>
</div>
<div class="column is-2" style="color: #bdf347;">
<div class="bd-footer-link-title" >
<h2>LANGUAGE</h2>
</div>
<p class="bd-footer-link">
<a href="/tr/">
Türkçe TR
</a>
</p>
</div>
</div>
<div id="newsletter" class="bd-newsletter" style=" width: 100vw; background-color: rgba(255, 255, 255, 0.299);">
<div class="container pt-4 pb-4" style="padding-left: 7vw; padding-right: 7vw; ">
<label class="label has-text-white" >Subscribe to our newsletter.</label>
<nav class="level mb-0">
<form action="https://deraconnect.us8.list-manage.com/subscribe/post?u=dd3de9bf00f3d43dde40c0af5&id=afe29060fa&f_id=006c61e0f0" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div class="level-item level-left ">
<p class="control mr-3">
<input type="text" value="" name="FNAME" id="mce-FNAME" class="input is-rounded" placeholder="First Name">
</p>
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_dd3de9bf00f3d43dde40c0af5_afe29060fa" tabindex="-1" value=""></div>
<p class="control mr-3">
<input type="email" value="" id="mce-EMAIL" name="EMAIL" class="input is-rounded is-gre" placeholder="Work Email">
<p class="control">
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button is-primary is-rounded">
</p>
</div>
</form>
<div class="level-item level-left"></div>
<div class="level-item level-left"></div>
<div class="level-item level-left">
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<a href="https://www.linkedin.com/company/dera-technology-design">
<img alt="Linkedin" src="images/icons/linkedinwhite.svg" alt="Linkedin">
</a>
</figure>
</div>
<div class="media-left">
<figure class="image is-48x48">
<a href="https://www.instagram.com/derateknoloji/">
<img alt="Instagram" src="images/icons/instagramwhite.svg" alt="Instagram">
</a>
</figure>
</div>
</div>
</div>
</nav>
<label class="label has-text-white ">I accept the Privacy Policy</label>
</div>
</div>
<div class="columns is-mobile is-multiline bd-footer-links pt-1" style="width: 100vw; padding-left: 6vw; padding-right: 9vw;">
<div class="column is-1-desktop is-invisible-mobile">
</div>
<div class="column is-7-desktop is-12-mobile has-text-left has-text-white">
<p class="bd-footer-link has-text-left">
<h2>
deraconnect © 2022 | All Rights Reserved
</h2>
</p>
</div>
<div class="column is-1-desktop is-3-mobile pr-0 has-text-right-desktop has-text-left-mobile mb-2" >
<label class="has-text-white ">Web3 by</label>
</div>
<div class="column is-2-desktop is-6-mobile has-text-left">
<a href="https://diode.io/"><img alt="Diode.io Logo" src="images/diodeLogo/web3-by-diode-black.webp" style="max-height: 5vh;"></a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<!-- full height footer section with links and powered by diode logo -->
<!-- <section id="footer" style="scroll-snap-align: center;" class="hero is-medium is-default is-fullheight is-bold">
<div class="hero-body">
<div class="container has-text-centered">
<div class="columns is-vcentered is-multiline is-mobile">
<div class="column is-4-desktop is-hidden-mobile" ></div>
<div class="column is-1-desktop is-3-mobile" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="/portal.html">
<img src="images/headerIcons/portaliconblack.svg" class="icon" />
<p class="has-text-black">DevPortal</p>
</a>
</div>
<div class="column is-1-desktop is-3-mobile" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="#contact">
<img src="images/headerIcons/contactblack.svg" class="icon" />
<p class="has-text-black">Contact</p>
</a>
</div>
<div class="column is-1-desktop is-3-mobile" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="#features1">
<img src="images/headerIcons/reficonblack.svg" class="icon" />
<p class="has-text-black">Features</p>
</a>
</div>
<div class="column is-1-desktop is-3-mobile" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="#about">
<img src="images/headerIcons/abouticonblack.svg" class="icon" />
<p class="has-text-black">About</p>
</a>
</div>
<div class="column is-4-desktop is-hidden-mobile" ></div>
</div>
<div class="columns is-vcentered is-multiline is-mobile">
<div class="column is-4-desktop is-hidden-mobile" ></div>
<div class="column is-1-desktop is-3-mobile" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="/tr/">
<img src="images/headerIcons/langblack.svg" class="icon" />
<p class="has-text-black">Türkçe</p>
</a>
</div>
<div class="column is-1-desktop is-3-mobile" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="/cookies.html">
<img src="images/headerIcons/cookiesblack.svg" class="icon" />
<p class="has-text-black">Cookies</p>
</a>
</div>
<div class="column is-1-desktop is-3-mobile" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="https://www.instagram.com/derateknoloji/">
<img src="images/headerIcons/instagramblack.svg" class="icon" />
<p class="has-text-black">Instagram</p>
</a>
</div>
<div class="column is-1-desktop is-3-mobile" >
<a class="navbar-item" style="text-align: center; justify-content: center;display:flex;flex-direction:column" href="https://www.linkedin.com/company/dera-technology-design">
<img src="images/headerIcons/linkedinblack.svg" class="icon" />
<p class="has-text-black">Linkedin</p>
</a>
</div>
<div class="column is-4-desktop is-hidden-mobile" ></div>
</div>
<br/>
<div class="columns is-vcentered is-multiline is-mobile">
<div class="column is-4-desktop is-hidden-mobile"></div>
<div class="column is-2-desktop is-6-mobile">
<a href="https://diode.io/">
<img src="images/diodeLogo/web3-by-diode-orange.webp" />
</a>
</div>
<div class="column is-2-desktop is-6-mobile">
<a href="https://derateknoloji.com/">
<img src="images/deraLogo/dera-logo-simple.webp"/>
</a>
</div>
<div class="column is-4-desktop is-hidden-mobile"></div>
</div>
</div>
</div>
</section> -->
</div>
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';fnames[3]='ADDRESS';ftypes[3]='address';fnames[4]='PHONE';ftypes[4]='phone';fnames[5]='BIRTHDAY';ftypes[5]='birthday';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
<!-- Script to shrink header on scroll -->
<script>
window.onscroll = function() {myFunction()};
var navbar = document.getElementById("navbar");
var logoimg = document.getElementById("logoimg");
var portalicon = document.getElementById("portalicon");
var contacticon = document.getElementById("contacticon");
var reficon = document.getElementById("reficon");
var abouticon = document.getElementById("abouticon");
var portalText = document.getElementById("portalText");
var contactText = document.getElementById("contactText");
var refText = document.getElementById("refText");
var aboutText = document.getElementById("aboutText");
var sticky = 50;
document.addEventListener('DOMContentLoaded', () => {