-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1428 lines (1272 loc) · 146 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<script type="text/javascript"> var epic_news_ajax_url = 'https://snyper.net/?epic-ajax-request=epic-ne'; </script>
<!-- This site is optimized with the Yoast SEO Premium plugin v22.1 (Yoast SEO v22.5) - https://yoast.com/wordpress/plugins/seo/ -->
<title>XFT's Web3 Social Marketplace </title>
<meta name="description" content="The social marketplace where you can monetize your brand loyalty. Share services and products, earn rewards for genuine sales contributions. Forget follower counts – your authentic influence pays off. Turn lifestyle into income effortlessly." />
<link rel="canonical" href="https://xft.framer.website/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="XFT's Web3 Social Marketplace | Influence to earn" />
<meta property="og:description" content="The social marketplace where you can monetize the brand awareness you create. Buy or share products and services, earn rewards for genuine contributions to sales. Forget follower counts – your authentic influence pays off. Turn your lifestyle into income effortlessly." />
<meta property="og:url" content="https://xft.framer.website/" />
<meta property="og:site_name" content="XFT" />
<meta property="article:modified_time" content="2024-05-19T02:02:13+00:00" />
<meta property="og:image:width" content="400" />
<meta property="og:image:height" content="400" />
<meta property="og:image:type" content="image/png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="XFT | The First Web3 Social Marketplace | Influence to earn" />
<meta name="twitter:description" content="The social marketplace where you can monetize the brand awareness you create. Buy or share products and services, earn rewards for genuine contributions to sales. Forget follower counts – your authentic influence pays off. Turn your lifestyle into income effortlessly." />
<link rel='dns-prefetch' href='//www.googletagmanager.com' />
<script>
!function(e,t,n,s,u,a){e.twq||(s=e.twq=function(){s.exe?s.exe.apply(s,arguments):s.queue.push(arguments);
},s.version='1.1',s.queue=[],u=t.createElement(n),u.async=!0,u.src='https://static.ads-twitter.com/uwt.js',
a=t.getElementsByTagName(n)[0],a.parentNode.insertBefore(u,a))}(window,document,'script');
twq('config','olzsq');
</script>
<!-- End Twitter conversion tracking base code --><script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/snyper.net\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.5.2"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
</script>
<link rel="stylesheet" type="text/css" href="https://use.typekit.net/ytr7fhe.css"><link rel='stylesheet' id='flick-css' href='https://snyper.net/wp-content/plugins/mailchimp/css/flick/flick.css?ver=6.5.2' media='all' />
<link rel='stylesheet' id='mailchimpSF_main_css-css' href='https://snyper.net/?mcsf_action=main_css&ver=6.5.2' media='all' />
<!--[if IE]>
<link rel='stylesheet' id='mailchimpSF_ie_css-css' href='https://snyper.net/wp-content/plugins/mailchimp/css/ie.css?ver=6.5.2' media='all' />
<![endif]-->
<link rel='stylesheet' id='bdt-uikit-css' href='https://snyper.net/wp-content/plugins/bdthemes-element-pack/assets/css/bdt-uikit.css?ver=3.15.1' media='all' />
<link rel='stylesheet' id='ep-helper-css' href='https://snyper.net/wp-content/plugins/bdthemes-element-pack/assets/css/ep-helper.css?ver=6.13.0' media='all' />
<style id='wp-emoji-styles-inline-css'>
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='vl-gutenberg-vl-block-block-css' href='https://snyper.net/wp-content/plugins/viral-loops-wp-integration/public/elements/vl-block/build/style-index.css?ver=1713321969' media='all' />
<style id='classic-theme-styles-inline-css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='different-menus-in-different-pages-css' href='https://snyper.net/wp-content/plugins/different-menus-in-different-pages/public/css/different-menus-for-different-page-public.css?ver=2.3.2' media='all' />
<link rel='stylesheet' id='vloops-wp-plugin-css' href='https://snyper.net/wp-content/plugins/viral-loops-wp-integration/public/css/vloops-wp-plugin-public.css?ver=3.2.1' media='all' />
<link rel='stylesheet' id='weglot-css-css' href='https://snyper.net/wp-content/plugins/weglot/dist/css/front-css.css?ver=4.2.6' media='' />
<link rel='stylesheet' id='new-flag-css-css' href='https://snyper.net/wp-content/plugins/weglot/app/styles/new-flags.css?ver=4.2.6' media='all' />
<link rel='stylesheet' id='elementor-icons-css' href='https://snyper.net/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.29.0' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='https://snyper.net/wp-content/uploads/elementor/css/custom-frontend-lite.min.css?ver=1713322588' media='all' />
<link rel='stylesheet' id='swiper-css' href='https://snyper.net/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' media='all' />
<link rel='stylesheet' id='elementor-pro-css' href='https://snyper.net/wp-content/uploads/elementor/css/custom-pro-frontend-lite.min.css?ver=1713322588' media='all' />
<link rel='stylesheet' id='elementor-post-1706-css' href='https://snyper.net/wp-content/uploads/elementor/css/post-1706.css?ver=1716084161' media='all' />
<link rel='stylesheet' id='elementor-post-272-css' href='https://snyper.net/wp-content/uploads/elementor/css/post-272.css?ver=1713322548' media='all' />
<link rel='stylesheet' id='elementor-post-53-css' href='https://snyper.net/wp-content/uploads/elementor/css/post-53.css?ver=1714250692' media='all' />
<link rel='stylesheet' id='uicore_global-css' href='https://snyper.net/wp-content/uploads/uicore-global.css?ver=7567' media='all' />
<link rel='stylesheet' id='epic-icon-css' href='https://snyper.net/wp-content/plugins/epic-news-element/assets/fonts/jegicon/jegicon.css?ver=6.5.2' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='https://snyper.net/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css?ver=4.7.0' media='all' />
<link rel='stylesheet' id='epic-style-css' href='https://snyper.net/wp-content/plugins/epic-news-element/assets/css/style.min.css?ver=6.5.2' media='all' />
<link rel='stylesheet' id='vloops_elementor_css-css' href='https://snyper.net/wp-content/plugins/viral-loops-wp-integration/public//elements/elementor-widget/css/vloops-wp-elementor-preview.css?ver=1716167497' media='all' />
<link rel='stylesheet' id='elementor-icons-shared-1-css' href='https://snyper.net/wp-content/plugins/uicore-framework/assets/fonts/themify-icons.css?ver=1.0.0' media='all' />
<link rel='stylesheet' id='elementor-icons-uicore-icons-css' href='https://snyper.net/wp-content/plugins/uicore-framework/assets/fonts/themify-icons.css?ver=1.0.0' media='all' />
<link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://snyper.net/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://snyper.net/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-brands-css' href='https://snyper.net/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css?ver=5.15.3' media='all' />
<script src="https://snyper.net/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
<script src="https://snyper.net/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script src="https://snyper.net/wp-content/plugins/mailchimp/js/scrollTo.js?ver=1.5.8" id="jquery_scrollto-js"></script>
<script src="https://snyper.net/wp-includes/js/jquery/jquery.form.min.js?ver=4.3.0" id="jquery-form-js"></script>
<script id="mailchimpSF_main_js-js-extra">
var mailchimpSF = {"ajax_url":"https:\/\/snyper.net\/"};
</script>
<script src="https://snyper.net/wp-content/plugins/mailchimp/js/mailchimp.js?ver=1.5.8" id="mailchimpSF_main_js-js"></script>
<script src="https://snyper.net/wp-includes/js/jquery/ui/core.min.js?ver=1.13.2" id="jquery-ui-core-js"></script>
<script src="https://snyper.net/wp-content/plugins/mailchimp/js/datepicker.js?ver=6.5.2" id="datepicker-js"></script>
<script src="https://snyper.net/wp-content/plugins/different-menus-in-different-pages/public/js/different-menus-for-different-page-public.js?ver=2.3.2" id="different-menus-in-different-pages-js"></script>
<script src="https://snyper.net/wp-content/plugins/weglot/dist/front-js.js?ver=4.2.6" id="wp-weglot-js-js"></script>
<!-- Google tag (gtag.js) snippet added by Site Kit -->
<!-- Google Analytics snippet added by Site Kit -->
<script src="https://www.googletagmanager.com/gtag/js?id=GT-PBGX7TP" id="google_gtagjs-js" async></script>
<script id="google_gtagjs-js-after">
window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}
gtag("set","linker",{"domains":["snyper.net"]});
gtag("js", new Date());
gtag("set", "developer_id.dZTNiMT", true);
gtag("config", "GT-PBGX7TP");
</script>
<!-- End Google tag (gtag.js) snippet added by Site Kit -->
<script id="wpstg-global-js-extra">
var wpstg = {"nonce":"4d8e6427f7"};
</script>
<script src="https://snyper.net/wp-content/plugins/wp-staging/assets/js/dist/wpstg-blank-loader.js?ver=6.5.2" id="wpstg-global-js"></script>
<link rel="https://api.w.org/" href="https://snyper.net/wp-json/" /><link rel="alternate" type="application/json" href="https://snyper.net/wp-json/wp/v2/pages/1706" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://snyper.net/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.5.2" />
<link rel='shortlink' href='https://xft.framer.website/' />
<link rel="alternate" type="application/json+oembed" href="https://snyper.net/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsnyper.net%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://snyper.net/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsnyper.net%2F&format=xml" />
<meta name="generator" content="Site Kit by Google 1.124.0" /><script type="text/javascript">
jQuery(function($) {
$('.date-pick').each(function() {
var format = $(this).data('format') || 'mm/dd/yyyy';
format = format.replace(/yyyy/i, 'yy');
$(this).datepicker({
autoFocusNextInput: true,
constrainInput: false,
changeMonth: true,
changeYear: true,
beforeShow: function(input, inst) { $('#ui-datepicker-div').addClass('show'); },
dateFormat: format.toLowerCase(),
});
});
d = new Date();
$('.birthdate-pick').each(function() {
var format = $(this).data('format') || 'mm/dd';
format = format.replace(/yyyy/i, 'yy');
$(this).datepicker({
autoFocusNextInput: true,
constrainInput: false,
changeMonth: true,
changeYear: false,
minDate: new Date(d.getFullYear(), 1-1, 1),
maxDate: new Date(d.getFullYear(), 12-1, 31),
beforeShow: function(input, inst) { $('#ui-datepicker-div').removeClass('show'); },
dateFormat: format.toLowerCase(),
});
});
});
</script>
<link rel="alternate" href="https://snyper.net/" hreflang="en"/>
<link rel="alternate" href="https://snyper.net/es/" hreflang="es"/>
<meta name="generator" content="Elementor 3.21.0; features: e_optimized_assets_loading, e_optimized_css_loading, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
<meta name="theme-color" content="#812FBF" />
<link rel="shortcut icon" href="https://snyper.net/wp-content/uploads/2023/09/favicon.png" >
<link rel="icon" href="https://snyper.net/wp-content/uploads/2023/09/favicon.png" >
<link rel="apple-touch-icon" sizes="152x152" href="https://snyper.net/wp-content/uploads/2023/09/favicon.png">
<link rel="apple-touch-icon" sizes="120x120" href="https://snyper.net/wp-content/uploads/2023/09/favicon.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://snyper.net/wp-content/uploads/2023/09/favicon.png">
<link rel="apple-touch-icon" href="https://snyper.net/wp-content/uploads/2023/09/favicon.png">
<!-- Google Tag Manager snippet added by Site Kit -->
<script>
( function( w, d, s, l, i ) {
w[l] = w[l] || [];
w[l].push( {'gtm.start': new Date().getTime(), event: 'gtm.js'} );
var f = d.getElementsByTagName( s )[0],
j = d.createElement( s ), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore( j, f );
} )( window, document, 'script', 'dataLayer', 'GTM-PC33STQK' );
</script>
<!-- End Google Tag Manager snippet added by Site Kit -->
<script type="text/javascript" src="https://app.viral-loops.com/widgetsV2/core/loader.js"></script><style id="jeg_dynamic_css" type="text/css" data-type="jeg_custom-css"></style><style>
@font-face { font-family:"Clash Grotesk";src:url("https://lumi.uicore.co/mobile-app/wp-content/uploads/sites/6/2023/02/ClashGrotesk-Regular.woff") format('woff'), url("https://lumi.uicore.co/mobile-app/wp-content/uploads/sites/6/2023/02/ClashGrotesk-Regular.ttf") format('truetype'), url(https://lumi.uicore.co/mobile-app/wp-content/uploads/sites/6/2023/02/ClashGrotesk-Medium.eot) format('opentype');font-display:swap;font-style:normal;font-weight:400;} @font-face { font-family:"Clash Grotesk";src:url("https://lumi.uicore.co/mobile-app/wp-content/uploads/sites/6/2023/02/ClashGrotesk-Medium.woff") format('woff'), url("https://lumi.uicore.co/mobile-app/wp-content/uploads/sites/6/2023/02/ClashGrotesk-Medium.ttf") format('truetype'), url(https://lumi.uicore.co/mobile-app/wp-content/uploads/sites/6/2023/02/ClashGrotesk-Medium.eot) format('opentype');font-display:swap;font-style:normal;font-weight:500;} @font-face { font-family:"Clash Grotesk";src:url("https://lumi.uicore.co/mobile-app/wp-content/uploads/sites/6/2023/02/ClashGrotesk-Semibold.woff") format('woff'), url("https://lumi.uicore.co/mobile-app/wp-content/uploads/sites/6/2023/02/ClashGrotesk-Semibold.ttf") format('truetype'), url(https://lumi.uicore.co/mobile-app/wp-content/uploads/sites/6/2023/02/ClashGrotesk-Semibold.eot) format('opentype');font-display:swap;font-style:normal;font-weight:600;} @font-face { font-family:"Regular";src:url("https://snyper.net/wp-content/uploads/2023/03/ClashGrotesk-Regular-1.woff") format('woff'), url("https://snyper.net/wp-content/uploads/2023/03/ClashGrotesk-Regular.ttf") format('truetype'), url(https://snyper.net/wp-content/uploads/2023/03/ClashGrotesk-Medium.eot) format('opentype');font-display:swap;font-style:normal;font-weight:400;} @font-face { font-family:"Medium";src:url("https://snyper.net/wp-content/uploads/2023/03/ClashGrotesk-Medium-1.woff") format('woff'), url("https://snyper.net/wp-content/uploads/2023/03/ClashGrotesk-Medium.ttf") format('truetype'), url(https://snyper.net/wp-content/uploads/2023/03/ClashGrotesk-Semibold.eot) format('opentype');font-display:swap;font-style:normal;font-weight:400;} @font-face { font-family:"SemiBold";src:url("https://snyper.net/wp-content/uploads/2023/03/ClashGrotesk-Semibold-1.woff") format('woff'), url("https://snyper.net/wp-content/uploads/2023/03/ClashGrotesk-Semibold.ttf") format('truetype'), url(https://snyper.net/wp-content/uploads/2023/03/ClashGrotesk-Semibold-1.eot) format('opentype');font-display:swap;font-style:normal;font-weight:400;} @font-face { font-family:"Net";src:url("https://snyper.net/wp-content/uploads/2023/06/FontsFree-Net-Acumin-Pro-UltraBlack.ttf") format('truetype');font-display:swap;font-style:normal;font-weight:100;} @font-face { font-family:"Acumin";src:url("https://snyper.net/wp-content/uploads/2023/06/FontsFree-Net-Acumin-Pro-UltraBlack.ttf") format('truetype');font-display:swap;font-style:normal;font-weight:400;} @font-face { font-family:"Acu";src:url("https://snyper.net/wp-content/uploads/2023/12/Net-Acumin-Pro-UltraBlack.ttf") format('truetype');font-display:swap;font-style:normal;font-weight:400;}
</style> <style id="wpforms-css-vars-root">
:root {
--wpforms-field-border-radius: 3px;
--wpforms-field-background-color: #ffffff;
--wpforms-field-border-color: rgba( 0, 0, 0, 0.25 );
--wpforms-field-text-color: rgba( 0, 0, 0, 0.7 );
--wpforms-label-color: rgba( 0, 0, 0, 0.85 );
--wpforms-label-sublabel-color: rgba( 0, 0, 0, 0.55 );
--wpforms-label-error-color: #d63637;
--wpforms-button-border-radius: 3px;
--wpforms-button-background-color: #066aab;
--wpforms-button-text-color: #ffffff;
--wpforms-page-break-color: #066aab;
--wpforms-field-size-input-height: 43px;
--wpforms-field-size-input-spacing: 15px;
--wpforms-field-size-font-size: 16px;
--wpforms-field-size-line-height: 19px;
--wpforms-field-size-padding-h: 14px;
--wpforms-field-size-checkbox-size: 16px;
--wpforms-field-size-sublabel-spacing: 5px;
--wpforms-field-size-icon-size: 1;
--wpforms-label-size-font-size: 16px;
--wpforms-label-size-line-height: 19px;
--wpforms-label-size-sublabel-font-size: 14px;
--wpforms-label-size-sublabel-line-height: 17px;
--wpforms-button-size-font-size: 17px;
--wpforms-button-size-height: 41px;
--wpforms-button-size-padding-h: 15px;
--wpforms-button-size-margin-top: 10px;
}
</style>
</head>
<body class="home page-template-default page page-id-1706 wp-embed-responsive ui-a-dsmm-slide uicore-sticky-tb elementor-default elementor-kit-7 elementor-page elementor-page-1706">
<!-- Google Tag Manager (noscript) snippet added by Site Kit -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PC33STQK" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) snippet added by Site Kit -->
<!-- 1.1 uicore_before_body_content --> <div class="uicore-body-content">
<!-- 1.2 uicore_before_page_content --> <div id="uicore-page">
<div id="wrapper-navbar" itemscope itemtype="http://schema.org/WebSite" class="uicore uicore-navbar elementor-section elementor-section-boxed uicore-h-classic uicore-sticky uicore-transparent "><div class="uicore-header-wrapper">
<nav class="uicore elementor-container">
<div class="uicore-branding">
<a href="https://snyper.net/" rel="home">
<img class="uicore uicore-logo uicore-main" src="https://snyper.net/wp-content/uploads/2023/11/SNYPER_LOGO-01.png" alt="Snyper"/>
<img class="uicore uicore-logo uicore-second" src="https://snyper.net/wp-content/uploads/2023/11/SNYPER_LOGO-01.png" alt="Snyper" />
<img class="uicore uicore-logo uicore-mobile-main" src="https://snyper.net/wp-content/uploads/2023/11/SNYPER_LOGO-01.png" alt="Snyper" />
<img class="uicore uicore-logo uicore-mobile-second" src="https://snyper.net/wp-content/uploads/2023/11/SNYPER_LOGO-01.png" alt="Snyper" />
</a>
</div>
<div class='uicore-nav-menu'>
<div class="uicore-menu-container uicore-nav"><ul class="uicore-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-55"><a href="#intro"><span class="ui-menu-item-wrapper">Intro</span></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-54"><a href="#features"><span class="ui-menu-item-wrapper">Features</span></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-924"><a href="#use"><span class="ui-menu-item-wrapper">Ecosystem</span></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-56"><a href="#screens"><span class="ui-menu-item-wrapper">Screens</span></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-57"><a href="#faq"><span class="ui-menu-item-wrapper">FAQ</span></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-920"><a href="#team"><span class="ui-menu-item-wrapper">Team</span></a></li>
</ul></div><div class="uicore uicore-extra"> <div class="uicore-cta-wrapper">
<a href="/join"
target="_self"
class="uicore-btn ">
<span class="elementor-button-text">
Join the beta </span>
</a>
</div>
</div> </div>
<button type="button" class="uicore-toggle uicore-ham" aria-label="mobile-menu">
<span class="bars">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</span>
</button>
</nav>
</div>
</div><!-- #wrapper-navbar end -->
<!-- 1.3 uicore_page --> <div id="content" class="uicore-content">
<script id="uicore-page-transition">window.onload=window.onpageshow= function() { }; </script><!-- 1.4 uicore_before_content --><div id="primary" class="content-area">
<article id="post-1706" class="post-1706 page type-page status-publish hentry">
<main class="entry-content">
<div data-elementor-type="wp-page" data-elementor-id="1706" class="elementor elementor-1706" data-elementor-post-type="page">
<div class="elementor-section elementor-top-section elementor-element elementor-element-ff65a31 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="ff65a31" data-element_type="section" id="intro" data-settings="{"background_background":"video","section_parallax_on":"yes","background_video_link":"https:\/\/snyper.net\/wp-content\/uploads\/2024\/01\/mock_compress.mov"}">
<div class="elementor-background-video-container elementor-hidden-phone">
<video class="elementor-background-video-hosted elementor-html5-video" autoplay muted playsinline loop></video>
</div>
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-eefa6c9 ui-col-align-left" data-id="eefa6c9" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-52b9a89 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading" data-id="52b9a89" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.21.0 - 15-04-2024 */
.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2 class="elementor-heading-title elementor-size-default">THE FIRST <br>WEB3 SOCIAL<br>MARKETPLACE</h2> </div>
</div>
<div class="elementor-element elementor-element-143ae9b elementor-widget__width-auto elementor-mobile-align-center elementor-widget-mobile__width-initial elementor-widget elementor-widget-button" data-id="143ae9b" data-element_type="widget" data-settings="{"ep_floating_effects_show":"yes","ep_floating_effects_easing":"easeInOutBounce","ep_floating_effects_scale_toggle":"yes","ep_floating_effects_scale_x":{"unit":"px","size":"","sizes":{"from":1,"to":1.2}},"ep_floating_effects_scale_y":{"unit":"px","size":"","sizes":{"from":1,"to":1.2}},"ep_floating_effects_scale_duration":{"unit":"px","size":1000,"sizes":[]},"ep_floating_effects_scale_delay":{"unit":"px","size":"","sizes":[]}}" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjI3MiIsInRvZ2dsZSI6ZmFsc2V9">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-right">
<i aria-hidden="true" class="ti ti-arrow-right"></i> </span>
<span class="elementor-button-text">Join the beta</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-274490d elementor-widget__width-auto elementor-mobile-align-center elementor-widget-mobile__width-initial elementor-widget elementor-widget-button" data-id="274490d" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://docsend.com/view/28imzkd5jdnkig2j" target="_blank">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-right">
<i aria-hidden="true" class="fas fa-star"></i> </span>
<span class="elementor-button-text">Deck</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-598ee71" data-id="598ee71" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<div class="elementor-element elementor-element-9677856 elementor-widget-tablet_extra__width-initial elementor-widget-widescreen__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-image" data-id="9677856" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.21.0 - 15-04-2024 */
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style> <img fetchpriority="high" decoding="async" width="910" height="1024" src="https://snyper.net/wp-content/uploads/2023/09/ICONS_1-910x1024.png" class="attachment-large size-large wp-image-1437" alt="" srcset="https://snyper.net/wp-content/uploads/2023/09/ICONS_1-910x1024.png 910w, https://snyper.net/wp-content/uploads/2023/09/ICONS_1-266x300.png 266w, https://snyper.net/wp-content/uploads/2023/09/ICONS_1-768x865.png 768w, https://snyper.net/wp-content/uploads/2023/09/ICONS_1-577x650.png 577w, https://snyper.net/wp-content/uploads/2023/09/ICONS_1.png 1264w" sizes="(max-width: 910px) 100vw, 910px" /> </div>
</div>
</div>
</div>
</div>
</div>
<section class="elementor-section elementor-top-section elementor-element elementor-element-946bde2 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="946bde2" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-14a6fd9" data-id="14a6fd9" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div data-ep-wrapper-link="{"url":"https:\/\/snyper.net\/join\/","is_external":"","nofollow":"","custom_attributes":""}" style="cursor: pointer" class="bdt-element-link elementor-element elementor-element-b69fc17 elementor-widget elementor-widget-image" data-id="b69fc17" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" width="799" height="1024" src="https://snyper.net/wp-content/uploads/2023/10/1-2.jpg" class="attachment-full size-full wp-image-2059" alt="Splash screen mockup of Snyper" srcset="https://snyper.net/wp-content/uploads/2023/10/1-2.jpg 799w, https://snyper.net/wp-content/uploads/2023/10/1-2-234x300.jpg 234w, https://snyper.net/wp-content/uploads/2023/10/1-2-768x984.jpg 768w, https://snyper.net/wp-content/uploads/2023/10/1-2-507x650.jpg 507w" sizes="(max-width: 799px) 100vw, 799px" /> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-68dd019" data-id="68dd019" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-939db67 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading" data-id="939db67" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">MONETIZE <br>YOUR LIFESTYLE</h2> </div>
</div>
<div class="elementor-element elementor-element-e783239 elementor-widget elementor-widget-text-editor" data-id="e783239" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.21.0 - 15-04-2024 */
.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style> <p>Discover Snyper: the social marketplace where you can monetize the brand awareness you create. Buy or share products and services, earn rewards for genuine contributions to sales. Forget follower counts – your authentic influence pays off. Turn your lifestyle into income effortlessly.<br /><!-- notionvc: d779ad77-054c-4d08-a198-39ca02983205 --></p> </div>
</div>
<div class="elementor-element elementor-element-cda9b4d elementor-widget elementor-widget-button" data-id="cda9b4d" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://snyper.net/join/">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-right">
<i aria-hidden="true" class="ti ti-arrow-right"></i> </span>
<span class="elementor-button-text">Join the beta</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-section elementor-top-section elementor-element elementor-element-aba95e2 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="aba95e2" data-element_type="section" id="features">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3208940" data-id="3208940" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-d5a590f elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading" data-id="d5a590f" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">EXPLORE, SHOP & INFLUENCE TO EARN
</h2> </div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-6604d42 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6604d42" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3342146" data-id="3342146" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-835289f elementor-widget elementor-widget-heading" data-id="835289f" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">THE NEXT EVOLUTION IN SHOPPING</h3> </div>
</div>
<div class="elementor-element elementor-element-081868a elementor-widget elementor-widget-text-editor" data-id="081868a" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Scroll and swipe through an experience that sparks discovery and connects you with your inner circle. Find similar products by features or images. Let the AI shopping assistant help you find the perfect pair of sneakers or plan your next trip.</p> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d1ddb17" data-id="d1ddb17" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-25f98fc elementor-widget elementor-widget-image" data-id="25f98fc" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" width="944" height="890" src="https://snyper.net/wp-content/uploads/2023/10/2.png" class="attachment-full size-full wp-image-2057" alt="Discover page of XFT, here you can find products, services, offers, opportunities, etc. This page is a core feature of Snyper." srcset="https://snyper.net/wp-content/uploads/2023/10/2.png 944w, https://snyper.net/wp-content/uploads/2023/10/2-300x283.png 300w, https://snyper.net/wp-content/uploads/2023/10/2-768x724.png 768w, https://snyper.net/wp-content/uploads/2023/10/2-650x613.png 650w" sizes="(max-width: 944px) 100vw, 944px" /> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-c100330 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="c100330" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d12555" data-id="7d12555" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-e38c02d elementor-widget elementor-widget-heading" data-id="e38c02d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">MANAGE YOUR
FINANCES</h3> </div>
</div>
<div class="elementor-element elementor-element-041ffcb elementor-widget elementor-widget-image" data-id="041ffcb" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="1300" height="1054" src="https://snyper.net/wp-content/uploads/2023/11/wallet-2.png" class="attachment-full size-full wp-image-2173" alt="Finance page of Snyper, here you can find your wallet, fiat, crypto, last transactions, do a deposit or withdraw. This is a main feature of Snyper." srcset="https://snyper.net/wp-content/uploads/2023/11/wallet-2.png 1300w, https://snyper.net/wp-content/uploads/2023/11/wallet-2-300x243.png 300w, https://snyper.net/wp-content/uploads/2023/11/wallet-2-1024x830.png 1024w, https://snyper.net/wp-content/uploads/2023/11/wallet-2-768x623.png 768w, https://snyper.net/wp-content/uploads/2023/11/wallet-2-650x527.png 650w" sizes="(max-width: 1300px) 100vw, 1300px" /> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3408743" data-id="3408743" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<div class="elementor-element elementor-element-10f478d elementor-widget-mobile__width-initial elementor-widget elementor-widget-heading" data-id="10f478d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">GET FUNDED</h3> </div>
</div>
<div class="elementor-element elementor-element-86e9d74 elementor-widget elementor-widget-image" data-id="86e9d74" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="722" height="178" src="https://snyper.net/wp-content/uploads/2023/11/invest-3.png" class="attachment-full size-full wp-image-2169" alt="" srcset="https://snyper.net/wp-content/uploads/2023/11/invest-3.png 722w, https://snyper.net/wp-content/uploads/2023/11/invest-3-300x74.png 300w, https://snyper.net/wp-content/uploads/2023/11/invest-3-650x160.png 650w" sizes="(max-width: 722px) 100vw, 722px" /> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-e1c6487 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e1c6487" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-8a35326" data-id="8a35326" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b7f64fb elementor-widget elementor-widget-heading" data-id="b7f64fb" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">MONETIZE YOUR INFLUENCE</h3> </div>
</div>
<div class="elementor-element elementor-element-a9a9f12 elementor-widget elementor-widget-text-editor" data-id="a9a9f12" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="notion-scroller vertical"><div class="whenContentEditable" data-content-editable-root="true" data-content-editable-selecting="true"><div class="notion-selectable notion-text-block" data-block-id="2fe82d4a-707b-4372-b8c8-36a0260f5fbb">Make your content work for you. Influence by helping others discover great products that you enjoy. Automatically receive affiliate rewards when you share products in an impactful way.</div></div></div> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-4f47b8a" data-id="4f47b8a" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-8a75f48 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-image" data-id="8a75f48" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="436" height="342" src="https://snyper.net/wp-content/uploads/2023/03/Mobile-App-NFTs-Image-5.webp" class="attachment-full size-full wp-image-28" alt="" srcset="https://snyper.net/wp-content/uploads/2023/03/Mobile-App-NFTs-Image-5.webp 436w, https://snyper.net/wp-content/uploads/2023/03/Mobile-App-NFTs-Image-5-300x235.webp 300w" sizes="(max-width: 436px) 100vw, 436px" /> </div>
</div>
<div class="elementor-element elementor-element-5c9fad7 elementor-widget elementor-widget-image" data-id="5c9fad7" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="671" height="812" src="https://snyper.net/wp-content/uploads/2023/11/monetization.png" class="attachment-full size-full wp-image-2251" alt="" srcset="https://snyper.net/wp-content/uploads/2023/11/monetization.png 671w, https://snyper.net/wp-content/uploads/2023/11/monetization-248x300.png 248w, https://snyper.net/wp-content/uploads/2023/11/monetization-537x650.png 537w" sizes="(max-width: 671px) 100vw, 671px" /> </div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<div class="elementor-section elementor-top-section elementor-element elementor-element-d2fe49c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d2fe49c" data-element_type="section" id="use">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2482322" data-id="2482322" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-709d3f0 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading" data-id="709d3f0" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">A WEB3 ECOSYSTEM WHERE EVERYBODY WINS</h2> </div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-6f19c72 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6f19c72" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-042b2dc" data-id="042b2dc" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b31efbb bdt-icon-type-icon elementor-position-top bdt-icon-effect-none elementor-widget elementor-widget-bdt-advanced-icon-box" data-id="b31efbb" data-element_type="widget" data-widget_type="bdt-advanced-icon-box.default">
<div class="elementor-widget-container">
<div class="bdt-ep-advanced-icon-box">
<div class="bdt-ep-advanced-icon-box-icon">
<span class="bdt-ep-advanced-icon-box-icon-wrap">
<i aria-hidden="true" class="fas fa-shopping-cart"></i>
</span>
</div>
<div class="bdt-ep-advanced-icon-box-content">
<h4 class="bdt-ep-advanced-icon-box-title">
<span >
Buyers </span>
</h4>
<div class="bdt-ep-advanced-icon-box-description">
<!-- notionvc: e5b49cbb-8a8f-4349-a891-dd339cca9df9 --><p><span style="background-color: var( --e-global-color-uicore_white ); color: var(--uicore-typography--p-c,'#070707'); font-family: var(--uicore-typography--p-f,'Inter'); font-style: var(--uicore-typography--p-st,'normal'); font-weight: var(--uicore-typography--p-w,'600'); letter-spacing: var(--uicore-typography--p-ls,'-0.027em'); text-transform: var(--uicore-typography--p-t,'none');">Immerse yourself in a next-generation shopping experience. Pay in fiat or crypto. Find offers within your network. Take comfort in purchase protection through smart contracts.</span></p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e825a0b" data-id="e825a0b" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-e735a17 bdt-icon-type-icon elementor-position-top bdt-icon-effect-none elementor-widget elementor-widget-bdt-advanced-icon-box" data-id="e735a17" data-element_type="widget" data-widget_type="bdt-advanced-icon-box.default">
<div class="elementor-widget-container">
<div class="bdt-ep-advanced-icon-box">
<div class="bdt-ep-advanced-icon-box-icon">
<span class="bdt-ep-advanced-icon-box-icon-wrap">
<i aria-hidden="true" class="fas fa-warehouse"></i>
</span>
</div>
<div class="bdt-ep-advanced-icon-box-content">
<h4 class="bdt-ep-advanced-icon-box-title">
<span >
Sellers </span>
</h4>
<div class="bdt-ep-advanced-icon-box-description">
<p>Accept fiat and crypto with low fees. Boost your online sales with a viral affiliate system. Incentivize your community with reward programs.<br /><!-- notionvc: 6ddd9900-5052-4622-ae9f-e02c9ff785f8 --></p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-c1cf3c3 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="c1cf3c3" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-64afb80" data-id="64afb80" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-1506604 bdt-icon-type-icon elementor-position-top bdt-icon-effect-none elementor-widget elementor-widget-bdt-advanced-icon-box" data-id="1506604" data-element_type="widget" data-widget_type="bdt-advanced-icon-box.default">
<div class="elementor-widget-container">
<div class="bdt-ep-advanced-icon-box">
<div class="bdt-ep-advanced-icon-box-icon">
<span class="bdt-ep-advanced-icon-box-icon-wrap">
<i aria-hidden="true" class="fab fa-connectdevelop"></i>
</span>
</div>
<div class="bdt-ep-advanced-icon-box-content">
<h4 class="bdt-ep-advanced-icon-box-title">
<span >
Influencers </span>
</h4>
<div class="bdt-ep-advanced-icon-box-description">
<p>Become an affiliate by sharing any product or service. Enjoy a transparent reward system. Explore first-class content creation tools and insights.<!-- notionvc: ac714bc1-2c34-4911-bb37-9c3a43453c2c --><br /><!-- notionvc: ef6afa02-787b-4a1a-aa02-794ea89b77b9 --></p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-e250452" data-id="e250452" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-42e2336 bdt-icon-type-icon elementor-position-top bdt-icon-effect-none elementor-widget elementor-widget-bdt-advanced-icon-box" data-id="42e2336" data-element_type="widget" data-widget_type="bdt-advanced-icon-box.default">
<div class="elementor-widget-container">
<div class="bdt-ep-advanced-icon-box">
<div class="bdt-ep-advanced-icon-box-icon">
<span class="bdt-ep-advanced-icon-box-icon-wrap">
<i aria-hidden="true" class="fas fa-money-bill-wave"></i>
</span>
</div>
<div class="bdt-ep-advanced-icon-box-content">
<h4 class="bdt-ep-advanced-icon-box-title">
<span >
Investors </span>
</h4>
<div class="bdt-ep-advanced-icon-box-description">
<p>Fund XFT profiles and earn passive income. Trade your position. Gain notoriety by showcasing your investments.<!-- notionvc: 82a79dc2-1c1d-42d9-8796-3d0216736bf1 --></p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<div class="elementor-section elementor-top-section elementor-element elementor-element-3bf8fc5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3bf8fc5" data-element_type="section" id="screens">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-631c270" data-id="631c270" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-708618a elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading" data-id="708618a" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">EXPLORE THE MAIN SCREENS</h2> </div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-769cabc elementor-section-height-min-height elementor-section-boxed elementor-section-height-default" data-id="769cabc" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-34c3b13" data-id="34c3b13" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-74b030f elementor-widget elementor-widget-heading" data-id="74b030f" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">FEED</h3> </div>
</div>
<div class="elementor-element elementor-element-73378f9 elementor-widget elementor-widget-text-editor" data-id="73378f9" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Explore a bottomless shopping experience that keeps you scrolling through social updates, personalized deals and mini-games<!-- notionvc: af13e360-6bed-4b51-8e4a-ef773852064e --><br /><!-- notionvc: d6d813d3-1cba-49e8-bfd9-69d8d405bc5d --></p> </div>
</div>
<div class="elementor-element elementor-element-7c893bb elementor-widget elementor-widget-image" data-id="7c893bb" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="1000" height="1128" src="https://snyper.net/wp-content/uploads/2024/05/feed-home.png" class="attachment-full size-full wp-image-3216" alt="feed-home" srcset="https://snyper.net/wp-content/uploads/2024/05/feed-home.png 1000w, https://snyper.net/wp-content/uploads/2024/05/feed-home-266x300.png 266w, https://snyper.net/wp-content/uploads/2024/05/feed-home-908x1024.png 908w, https://snyper.net/wp-content/uploads/2024/05/feed-home-768x866.png 768w, https://snyper.net/wp-content/uploads/2024/05/feed-home-576x650.png 576w, https://snyper.net/wp-content/uploads/2024/05/feed-home-750x846.png 750w" sizes="(max-width: 1000px) 100vw, 1000px" /> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5dd4a58" data-id="5dd4a58" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-beda0fe elementor-widget elementor-widget-heading" data-id="beda0fe" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">DISCOVER</h3> </div>
</div>
<div class="elementor-element elementor-element-014737c elementor-widget elementor-widget-text-editor" data-id="014737c" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Discover a tailored, immersive content showcase and smart search engine that guides you to what you’re looking for in just a few taps<!-- notionvc: 47fb5466-8867-4b95-a37f-b18ad500d53a --><br /><!-- notionvc: fc1a5cf4-f599-40c2-aa17-7d8d1bcaffdf --></p> </div>
</div>
<div class="elementor-element elementor-element-48ca53e elementor-widget elementor-widget-image" data-id="48ca53e" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="1000" height="1128" src="https://snyper.net/wp-content/uploads/2023/11/3.2.png" class="attachment-full size-full wp-image-2136" alt="" srcset="https://snyper.net/wp-content/uploads/2023/11/3.2.png 1000w, https://snyper.net/wp-content/uploads/2023/11/3.2-266x300.png 266w, https://snyper.net/wp-content/uploads/2023/11/3.2-908x1024.png 908w, https://snyper.net/wp-content/uploads/2023/11/3.2-768x866.png 768w, https://snyper.net/wp-content/uploads/2023/11/3.2-576x650.png 576w" sizes="(max-width: 1000px) 100vw, 1000px" /> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-8dbf283 elementor-section-height-min-height elementor-section-boxed elementor-section-height-default" data-id="8dbf283" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-817355a" data-id="817355a" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-6a6380c elementor-widget elementor-widget-heading" data-id="6a6380c" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">SOCIAL CIRCLE</h3> </div>
</div>
<div class="elementor-element elementor-element-f75fac3 elementor-widget elementor-widget-text-editor" data-id="f75fac3" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Chat with merchants, influencers and friends. Join communities in an end-to-end encrypted communication engine, optimized for sharing<!-- notionvc: 33f88e0f-bcd0-4dd2-be66-d3cd9fef8751 --><br /><!-- notionvc: dff18b72-c76a-43c1-9097-4f27eb0cb29d --></p> </div>
</div>
<div class="elementor-element elementor-element-5a86b58 elementor-widget elementor-widget-image" data-id="5a86b58" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="1000" height="1128" src="https://snyper.net/wp-content/uploads/2023/11/3.3.png" class="attachment-full size-full wp-image-2137" alt="" srcset="https://snyper.net/wp-content/uploads/2023/11/3.3.png 1000w, https://snyper.net/wp-content/uploads/2023/11/3.3-266x300.png 266w, https://snyper.net/wp-content/uploads/2023/11/3.3-908x1024.png 908w, https://snyper.net/wp-content/uploads/2023/11/3.3-768x866.png 768w, https://snyper.net/wp-content/uploads/2023/11/3.3-576x650.png 576w" sizes="(max-width: 1000px) 100vw, 1000px" /> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6525519" data-id="6525519" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-8826ed6 elementor-widget elementor-widget-heading" data-id="8826ed6" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">PROFILE</h3> </div>
</div>
<div class="elementor-element elementor-element-843fc8d elementor-widget elementor-widget-text-editor" data-id="843fc8d" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Customize and manage your storefront to perfection, configure your badges and upgrades, or crowdfund your project<!-- notionvc: 6e66ed67-dcb0-42b9-90d6-fc621056d3b8 --></p> </div>
</div>
<div class="elementor-element elementor-element-4fe02a8 elementor-widget elementor-widget-image" data-id="4fe02a8" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="1000" height="1128" src="https://snyper.net/wp-content/uploads/2023/11/3.4.png" class="attachment-full size-full wp-image-2138" alt="" srcset="https://snyper.net/wp-content/uploads/2023/11/3.4.png 1000w, https://snyper.net/wp-content/uploads/2023/11/3.4-266x300.png 266w, https://snyper.net/wp-content/uploads/2023/11/3.4-908x1024.png 908w, https://snyper.net/wp-content/uploads/2023/11/3.4-768x866.png 768w, https://snyper.net/wp-content/uploads/2023/11/3.4-576x650.png 576w" sizes="(max-width: 1000px) 100vw, 1000px" /> </div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<div class="elementor-section elementor-top-section elementor-element elementor-element-f94baf0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f94baf0" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0a09cce" data-id="0a09cce" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
</div>
</div>
</div>
</div>
<div class="elementor-section elementor-top-section elementor-element elementor-element-6d8534d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d8534d" data-element_type="section" id="pricing">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6330548" data-id="6330548" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
</div>
</div>
</div>
</div>
<section class="elementor-section elementor-top-section elementor-element elementor-element-4d95746 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4d95746" data-element_type="section" id="faq">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0d1724f" data-id="0d1724f" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-0c24f75 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading" data-id="0c24f75" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">FAQs</h2> </div>
</div>
<div class="elementor-element elementor-element-3fa66b1 elementor-widget elementor-widget-bdt-accordion" data-id="3fa66b1" data-element_type="widget" data-widget_type="bdt-accordion.default">
<div class="elementor-widget-container">
<div class="bdt-ep-accordion-container">
<div id="bdt-ep-accordion-3fa66b1" class="bdt-ep-accordion bdt-accordion" data-bdt-accordion="{"collapsible":true,"multiple":false,"transition":"ease-in-out"}" data-settings="{"id":"bdt-ep-accordion-3fa66b1","activeHash":"no","activeScrollspy":null,"hashTopOffset":false,"hashScrollspyTime":false}">
<div class="bdt-ep-accordion-item">
<div class="bdt-ep-accordion-title bdt-accordion-title bdt-flex bdt-flex-middle bdt-flex-between" id="bdt-ep-accordion-which-problem-snyper-is-solving" data-accordion-index="0" data-title="which-problem-snyper-is-solving" role="heading">
<span class="bdt-ep-accordion-icon bdt-flex-align-right" aria-hidden="true">
<span class="bdt-ep-accordion-icon-closed">
<i aria-hidden="true" class="fa-fw ti ti-plus"></i> </span>
<span class="bdt-ep-accordion-icon-opened">
<i aria-hidden="true" class="fa-fw ti ti-minus"></i> </span>
</span>
<span class="bdt-ep-title-text bdt-flex bdt-flex-middle">
Which problem XFT is solving? </span>
</div>
<div class="bdt-ep-accordion-content bdt-accordion-content">
<p>Today, most users on social media create product awareness in some way, but only a handful of people can secure deals with the brands they promote. If you’re a small content creator your options to monetize your lifestyle or create branded content are little to none. Your influence isn’t rewarded. Furthermore, there is no platform that organically integrates your social life within your shopping experience.</p><p>At Snyper, we believe everybody should be rewarded for their influence on others. We reward content creators for driving sales of a product or service, give the control back to the community, and offer a gamified and 360° shopping experience.<!-- notionvc: f0123bd4-c126-42be-afca-00deeeb55101 --></p><p><!-- notionvc: 8160da23-b4c8-4429-a2ec-40a3dbc0686d --></p> </div>
</div>
<div class="bdt-ep-accordion-item">
<div class="bdt-ep-accordion-title bdt-accordion-title bdt-flex bdt-flex-middle bdt-flex-between" id="bdt-ep-accordion-how-do-we-reward-the-content-on-snyper" data-accordion-index="1" data-title="how-do-we-reward-the-content-on-snyper" role="heading">
<span class="bdt-ep-accordion-icon bdt-flex-align-right" aria-hidden="true">
<span class="bdt-ep-accordion-icon-closed">
<i aria-hidden="true" class="fa-fw ti ti-plus"></i> </span>
<span class="bdt-ep-accordion-icon-opened">
<i aria-hidden="true" class="fa-fw ti ti-minus"></i> </span>
</span>
<span class="bdt-ep-title-text bdt-flex bdt-flex-middle">
How do we reward the content on XFT? </span>
</div>
<div class="bdt-ep-accordion-content bdt-accordion-content">
<p>For every purchase made through XFT, we go back in time and compile a list of all the influencers who helped in the sale. <span class="notion-enable-hover" data-token-index="1">Then we order everyone in a list by their actual impact and influence. This is called an interaction score. The higher your interaction score, the higher your reward.</span><!-- notionvc: 2fafebc0-a6c4-4168-b97f-4aabc5914787 --></p> </div>
</div>
<div class="bdt-ep-accordion-item">
<div class="bdt-ep-accordion-title bdt-accordion-title bdt-flex bdt-flex-middle bdt-flex-between" id="bdt-ep-accordion-at-what-stage-is-snyper" data-accordion-index="2" data-title="at-what-stage-is-snyper" role="heading">
<span class="bdt-ep-accordion-icon bdt-flex-align-right" aria-hidden="true">
<span class="bdt-ep-accordion-icon-closed">
<i aria-hidden="true" class="fa-fw ti ti-plus"></i> </span>
<span class="bdt-ep-accordion-icon-opened">
<i aria-hidden="true" class="fa-fw ti ti-minus"></i> </span>
</span>
<span class="bdt-ep-title-text bdt-flex bdt-flex-middle">
At what stage is XFT? </span>
</div>
<div class="bdt-ep-accordion-content bdt-accordion-content">
<p>XFT is currently in the Alpha Testing Phase, which is the first step in testing the app in a controlled environment. We are focusing on key aspects and actively debugging to ensure smooth operation. Private Beta Phase is expected to start soon.<!-- notionvc: b810dd75-bdd8-4895-a0f1-aa5bf33ab514 --><!-- notionvc: 7d0a50a2-1c4b-46da-b1fd-fc3f09c69d1b --></p> </div>
</div>
<div class="bdt-ep-accordion-item">
<div class="bdt-ep-accordion-title bdt-accordion-title bdt-flex bdt-flex-middle bdt-flex-between" id="bdt-ep-accordion-why-is-snyper-web3" data-accordion-index="3" data-title="why-is-snyper-web3" role="heading">
<span class="bdt-ep-accordion-icon bdt-flex-align-right" aria-hidden="true">
<span class="bdt-ep-accordion-icon-closed">
<i aria-hidden="true" class="fa-fw ti ti-plus"></i> </span>
<span class="bdt-ep-accordion-icon-opened">
<i aria-hidden="true" class="fa-fw ti ti-minus"></i> </span>
</span>
<span class="bdt-ep-title-text bdt-flex bdt-flex-middle">
Why is XFT Web3? </span>
</div>
<div class="bdt-ep-accordion-content bdt-accordion-content">
<p>XFT operates on Web3 principles, with all transactions being peer-to-peer and executed through smart contracts. But don’t worry! It’s super user-friendly, so anyone can use it, even if you’re not an expert in crypto or Web3.<!-- notionvc: d7e05c4b-b606-4b43-9c5c-b0f79f5a905d --></p> </div>
</div>
<div class="bdt-ep-accordion-item">
<div class="bdt-ep-accordion-title bdt-accordion-title bdt-flex bdt-flex-middle bdt-flex-between" id="bdt-ep-accordion-are-you-hiring" data-accordion-index="4" data-title="are-you-hiring" role="heading">
<span class="bdt-ep-accordion-icon bdt-flex-align-right" aria-hidden="true">
<span class="bdt-ep-accordion-icon-closed">
<i aria-hidden="true" class="fa-fw ti ti-plus"></i> </span>
<span class="bdt-ep-accordion-icon-opened">
<i aria-hidden="true" class="fa-fw ti ti-minus"></i> </span>
</span>
<span class="bdt-ep-title-text bdt-flex bdt-flex-middle">
Are you hiring? </span>
</div>
<div class="bdt-ep-accordion-content bdt-accordion-content">
<p>Yes! XFT’s team is working with some of the most exciting tools in Web3 and e-commerce, to create a frictionless, internet-native global social marketplace. Interested? Check out our <a class="notion-link-token notion-focusable-token notion-enable-hover" tabindex="0" href="http://snyper.net/talents" rel="noopener noreferrer" data-token-index="1"><span class="link-annotation-unknown-block-id-1522723736">Talents page</span></a>.<!-- notionvc: 684bf44a-7def-467d-93ab-6ab76e595fb8 --></p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-section elementor-top-section elementor-element elementor-element-7d5fdf4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7d5fdf4" data-element_type="section" id="team" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-edfffcb" data-id="edfffcb" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-790f45d elementor-widget elementor-widget-heading" data-id="790f45d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">FOUNDING TEAM</h2> </div>
</div>
<div class="elementor-element elementor-element-55fd9d8 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor" data-id="55fd9d8" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Having a strong founding team is key to XFT’s success.<!-- notionvc: 922e173c-ab38-4594-a1fe-ca91f1c201ea --><!-- notionvc: e71e62c0-ccb7-4ef1-b119-e080960c9c3e --></p> </div>
</div>
<div class="elementor-element elementor-element-255bf21 e-flex e-con-boxed e-con e-parent" data-id="255bf21" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-81ecc9e e-flex e-con-boxed e-con e-child" data-id="81ecc9e" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-bd5b303 e-flex e-con-boxed e-con e-child" data-id="bd5b303" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-98546f4 elementor-widget elementor-widget-image" data-id="98546f4" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://www.linkedin.com/in/dimitriboch/" target="_blank">
<img loading="lazy" decoding="async" width="350" height="525" src="https://snyper.net/wp-content/uploads/2024/02/pp-dimitri-1.png" class="attachment-full size-full wp-image-2876" alt="" srcset="https://snyper.net/wp-content/uploads/2024/02/pp-dimitri-1.png 350w, https://snyper.net/wp-content/uploads/2024/02/pp-dimitri-1-200x300.png 200w" sizes="(max-width: 350px) 100vw, 350px" /> </a>
</div>
</div>
<div class="elementor-element elementor-element-e330678 e-flex e-con-boxed e-con e-child" data-id="e330678" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-141588d elementor-widget-tablet_extra__width-initial elementor-widget elementor-widget-heading" data-id="141588d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Dimitri Boch Zuzek </h2> </div>
</div>
<div class="elementor-element elementor-element-5108034 elementor-widget elementor-widget-heading" data-id="5108034" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h4 class="elementor-heading-title elementor-size-default">Co-Founder, CEO 🇫🇷</h4> </div>
</div>
<div class="elementor-element elementor-element-fc57817 elementor-widget-tablet_extra__width-initial elementor-widget elementor-widget-text-editor" data-id="fc57817" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Founder of 3 community-centric startups, including a key role at a $10M+ exit. Co-founder of a major online radio station w/ 5M+ monthly listeners globally.<!-- notionvc: 088b0380-5ee2-4b8d-9d5e-9b25ac9c4f40 --><br /><!-- notionvc: 6848f819-6535-4c7a-9f95-90d7bde19b91 --></p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-d2ae30f e-flex e-con-boxed e-con e-child" data-id="d2ae30f" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-f7da1db e-flex e-con-boxed e-con e-child" data-id="f7da1db" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-c18091c elementor-widget elementor-widget-image" data-id="c18091c" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://www.linkedin.com/in/rand-ralph-van-rheenen/" target="_blank">
<img loading="lazy" decoding="async" width="350" height="525" src="https://snyper.net/wp-content/uploads/2024/02/pp-randralph-1.png" class="attachment-full size-full wp-image-2877" alt="" srcset="https://snyper.net/wp-content/uploads/2024/02/pp-randralph-1.png 350w, https://snyper.net/wp-content/uploads/2024/02/pp-randralph-1-200x300.png 200w" sizes="(max-width: 350px) 100vw, 350px" /> </a>
</div>
</div>
<div class="elementor-element elementor-element-f347098 e-flex e-con-boxed e-con e-child" data-id="f347098" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cbed17f elementor-widget-tablet_extra__width-initial elementor-widget elementor-widget-heading" data-id="cbed17f" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Rand Ralph Van Rheenen</h2> </div>
</div>
<div class="elementor-element elementor-element-bbda6f0 elementor-widget elementor-widget-heading" data-id="bbda6f0" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h4 class="elementor-heading-title elementor-size-default">Co-Founder, CTO 🇳🇱</h4> </div>
</div>
<div class="elementor-element elementor-element-273806a elementor-widget-tablet_extra__width-initial elementor-widget elementor-widget-text-editor" data-id="273806a" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Successful founder of award-winning SaaS startups. 20+ years of experience in software engineering. Grammy-nominated Music Producer and Songwriter.<!-- notionvc: c315a76f-c41b-45b3-ac84-4e6d33b994d0 --><br /><!-- notionvc: e1d8eac2-eb17-4dc3-8705-806e3f36518e --></p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-a121787 e-flex e-con-boxed e-con e-parent" data-id="a121787" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-32f8f76 e-flex e-con-boxed e-con e-child" data-id="32f8f76" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-46d031a e-flex e-con-boxed e-con e-child" data-id="46d031a" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-2e8536b elementor-widget elementor-widget-image" data-id="2e8536b" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://instagram.com/aviv77.77">
<img loading="lazy" decoding="async" width="350" height="525" src="https://snyper.net/wp-content/uploads/2023/11/luis.jpg" class="attachment-full size-full wp-image-2292" alt="luis" srcset="https://snyper.net/wp-content/uploads/2023/11/luis.jpg 350w, https://snyper.net/wp-content/uploads/2023/11/luis-200x300.jpg 200w" sizes="(max-width: 350px) 100vw, 350px" /> </a>
</div>
</div>
<div class="elementor-element elementor-element-c788e75 e-flex e-con-boxed e-con e-child" data-id="c788e75" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-814e70d elementor-widget-tablet_extra__width-initial elementor-widget elementor-widget-heading" data-id="814e70d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default"><h2 class="elementor-heading-title elementor-size-default elementor-inline-editing pen" data-elementor-setting-key="title" id="ep-348720a" data-pen-placeholder="Type Here..." style="line-height: var(--uicore-typography--h2-h,"1.2"); letter-spacing: var(--uicore-typography--h2-ls,"-0.027em"); text-transform: var(--uicore-typography--h2-t,"none"); font-style: normal;">Luis Miguel Torres</h2></h2> </div>
</div>
<div class="elementor-element elementor-element-5d25083 elementor-widget elementor-widget-heading" data-id="5d25083" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h4 class="elementor-heading-title elementor-size-default"><span style="color: var(--uicore-typography--h4-c,"#070707"); font-family: var(--uicore-typography--h4-f,"Inter"); letter-spacing: var(--uicore-typography--h4-ls,"-0.027em"); text-align: var(--text-align); background-color: rgba(36, 36, 36, 0);">CREATIVE DIRECTOR 🇲🇽</span></h4> </div>
</div>
<div class="elementor-element elementor-element-36daafd elementor-widget-tablet_extra__width-initial elementor-widget elementor-widget-text-editor" data-id="36daafd" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><span style="font-size: inherit; text-align: var(--text-align); background-color: rgba(36, 36, 36, 0); color: var(--uicore-typography--p-c,'#070707'); font-family: var(--uicore-typography--p-f,'Inter'); font-style: var(--uicore-typography--p-st,'normal'); font-weight: var(--uicore-typography--p-w,'600'); letter-spacing: var(--uicore-typography--p-ls,'-0.027em'); text-transform: var(--uicore-typography--p-t,'none');">Multidisciplinary creative designer with 17+ years of experience. Recognized Art Director of Ultra Music Festival.</span></p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-7038c63 e-flex e-con-boxed e-con e-child" data-id="7038c63" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-01761c8 e-flex e-con-boxed e-con e-child" data-id="01761c8" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-54f5244 elementor-widget elementor-widget-image" data-id="54f5244" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://www.linkedin.com/in/noeliahulman/" target="_blank">
<img loading="lazy" decoding="async" width="350" height="525" src="https://snyper.net/wp-content/uploads/2024/02/pp-noelia-1.png" class="attachment-full size-full wp-image-2878" alt="" srcset="https://snyper.net/wp-content/uploads/2024/02/pp-noelia-1.png 350w, https://snyper.net/wp-content/uploads/2024/02/pp-noelia-1-200x300.png 200w" sizes="(max-width: 350px) 100vw, 350px" /> </a>
</div>
</div>
<div class="elementor-element elementor-element-2e2462f e-flex e-con-boxed e-con e-child" data-id="2e2462f" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-c0f2f97 elementor-widget-tablet_extra__width-initial elementor-widget elementor-widget-heading" data-id="c0f2f97" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">