-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1841 lines (1841 loc) · 122 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><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Mon Feb 24 2025 07:12:29 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="6703d20efee6f064f7c92119" data-wf-site="655b66492a9c0558b79fb28d">
<head>
<meta charset="utf-8">
<title>CDE SEO and Social Marketing Tooling</title>
<meta content="A cutting-edge tool to Power up SEO and Digital Marketing performance. Boost your organic and social performance overnight!" name="description">
<meta content="CDE SEO and Social Marketing Tooling" property="og:title">
<meta content="A cutting-edge tool to Power up SEO and Digital Marketing performance. Boost your organic and social performance overnight!" property="og:description">
<meta content="CDE SEO and Social Marketing Tooling" property="twitter:title">
<meta content="A cutting-edge tool to Power up SEO and Digital Marketing performance. Boost your organic and social performance overnight!" property="twitter:description">
<meta property="og:type" content="website">
<meta content="summary_large_image" name="twitter:card">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="Webflow" name="generator">
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/webflow.css" rel="stylesheet" type="text/css">
<link href="css/content-distribution-engine.webflow.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["Montserrat:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic","Andada Pro:regular,500,600,700,800","Inter:100,200,300,regular,500,600,700,800,900"] }});</script>
<script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
<link href="images/favicon.png" rel="shortcut icon" type="image/x-icon">
<link href="images/webclip.png" rel="apple-touch-icon"><!-- Finsweet Cookie Consent -->
<script async="" src="https://cdn.jsdelivr.net/npm/@finsweet/cookie-consent@1/fs-cc.js" fs-cc-mode="informational"></script>
<!-- Google tag (gtag.js) -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-ZH177GY56B"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZH177GY56B');
</script>
<!-- Google Tag Manager -->
<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-KRFXHHZ5');</script>
<!-- End Google Tag Manager -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "kuciimwaz9");
</script>
<script async="" src="https://tally.so/widgets/embed.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css">
<!-- move the css to head -->
<link href="https://slater.app/4593/8247.css" rel="stylesheet" type="text/css"><!-- keep js in the body -->
<script src="https://unpkg.com/split-type"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/ScrollTrigger.min.js"></script>
<script src="https://slater.app/4593/8246.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<style>
.itemname.filtertab.active {
background:#434DE6;
border-radius:20px;
}
.itemname.filtertab.active .tab-name{
color:white;
}
.itemname.filtertab.active .text-block-17{
color:white;
}
.itemname.filtertab.active .text-block-16{
color:white;
}
.itemname.filtertab.active .div-block-38{
background:white;
border:1px solid white;
}
.itemname.filtertab.active .div-block-18{
color:#374151;
}
.itemname.filtertab.active .text-span-3{
color:white;
}
</style>
<script>
/*document.addEventListener("DOMContentLoaded", function () {
//today
const allBox = document.querySelectorAll(".pricing-plan-wrapper");
const allBtn = document.querySelectorAll(".btns");
const features = document.querySelectorAll(".feature");
for (let i = 0; i < allBtn.length; i++) {
allBtn[i].addEventListener("click", function () {
for(let l = 0; l < allBtn.length; l++){
allBtn[l].style.background = "black";
}
allBtn[i].style.background = "#b16cea";
const getArray = this.getAttribute("filters").split(",");
const feature = this.getAttribute("feature");
for (let j = 0; j < allBox.length; j++) {
allBox[j].style.display = "none";
}
getArray.forEach(item => {
newDisplayer(item, feature);
});
});
}
function newDisplayer(item, feature) {
let featureFound = false;
for (let i = 0; i < features.length; i++) {
const showAttr = features[i].getAttribute('show');
if (showAttr) {
const getArray = showAttr.split(",");
if (getArray.includes(feature)) {
featureFound = true;
features[i].style.display = "flex";
} else {
features[i].style.display = "none";
}
}
}
for (let i = 0; i < allBox.length; i++) {
if (item === allBox[i].getAttribute("itemname")) {
allBox[i].style.display = "flex";
}
}
if (!featureFound) {
console.log("No matching feature found for", feature);
}
}
});*/
</script>
</head>
<body>
<div class="page-wrapper">
<div class="w-layout-blockcontainer navbar-box w-container">
<div data-collapse="small" data-animation="default" data-duration="450" data-easing="ease-out-quart" data-easing2="ease-out-quart" role="banner" class="navbar-outer w-nav">
<div class="navbar-container sdc">
<a href="#" class="navbar-logo-link w-nav-brand"><img src="images/Frame.png" loading="lazy" width="51" alt="" class="image-6"></a>
<nav role="navigation" class="navbar-menu overflow-hidden w-nav-menu">
<a href="#solve-challenge" class="navbar-link new-link w-nav-link">Solve A Business Challenge</a>
<a href="#faq" class="navbar-link new-link w-nav-link">How it Works</a>
<a href="#tally-open=wgNYYd&tally-layout=modal&tally-width=600&tally-hide-title=1&tally-emoji-animation=none&tally-auto-close=4000" class="primary-button navbar-primary-button w-button">Sign Up</a>
</nav>
<div class="navbar_menu-button w-nav-button">
<div class="menu-icon">
<div class="menu-icon_line-top-2"></div>
<div class="menu-icon-line-middle">
<div class="menu-icon-line-middle-inner"></div>
</div>
<div class="menu-icon-line-bottom"></div>
</div>
</div>
</div>
</div>
</div>
<section class="home-hero-section">
<div class="w-layout-blockcontainer container w-container">
<div class="w-layout-grid hero-wrapper">
<div class="relative-block"><img src="images/657a8ac9de7f58f9014f0810_Group.svg" loading="lazy" style="opacity:0" data-w-id="e1f8233b-2392-f07b-d4ea-1ce7704914cc" alt="" class="yellow-arrow">
<div data-w-id="b4a7f203-c1a3-de83-2d4c-eb4a4279ecf3" style="opacity:0" class="vertical-wrapper community-members">
<div class="members-images"><img src="images/65799d19bfb13ef4662ef0b3_Ellipse-2.webp" loading="lazy" alt="" class="_40px-image-with-left-margin"><img src="images/65799d19bfb13ef4662ef131_Ellipse-1.webp" loading="lazy" alt="" class="_40px-image-with-left-margin"><img src="images/65799d19bfb13ef4662ef120_Ellipse-4.webp" loading="lazy" alt="" class="_40px-image-with-left-margin"><img src="images/65799d19bfb13ef4662ef11f_Ellipse-3.webp" loading="lazy" alt="" class="_40px-image-with-left-margin"><img src="images/65799d19bfb13ef4662ef0a2_Ellipse-165-2.webp" loading="lazy" alt="" class="_40px-image-with-left-margin"></div>
</div>
<div class="home-hero-content">
<h1 data-w-id="8c7328d8-cf87-d1f5-4c21-cfd2e3754c00" style="opacity:0" class="home-hero-title">Content Distribution Engine</h1>
<div class="mask">
<p data-w-id="875a18c7-5393-0987-5354-a54fb8f6f799" style="opacity:0" class="semi-paragraph">Powering SEO and Digital <br>Marketing performance</p>
</div>
<div class="margin-top-40px">
<a data-w-id="a633326a-f6f9-c46c-139d-32e88edba41a" style="opacity:0" href="#tally-open=wgNYYd&tally-layout=modal&tally-width=600&tally-hide-title=1&tally-emoji-animation=none&tally-auto-close=4000" class="primary-button w-button">Sign Up Here</a>
</div>
</div>
</div>
<div data-w-id="864dbfd3-a689-b68e-7ece-bc705fbd39bb" style="opacity:0" class="image-wrapper"><img src="images/CDE-with-logo-feature.png" loading="lazy" data-w-id="c559cea0-1da7-ab4a-dcdb-1e613e8c65b4" sizes="(max-width: 479px) 300px, (max-width: 767px) 100vw, 565.99609375px" alt="" srcset="images/CDE-with-logo-feature-p-500.png 500w, images/CDE-with-logo-feature-p-800.png 800w, images/CDE-with-logo-feature-p-1080.png 1080w, images/CDE-with-logo-feature-p-1600.png 1600w, images/CDE-with-logo-feature-p-2000.png 2000w, images/CDE-with-logo-feature-p-2600.png 2600w, images/CDE-with-logo-feature-p-3200.png 3200w, images/CDE-with-logo-feature.png 3712w" class="home-hero-image">
<div data-w-id="95883b4a-1ed0-93e3-8fb4-9161b415dc0e" class="floating-block left-bottom">
<div class="star-icon"></div>
<div class="star-icon"></div>
<div class="star-icon"></div>
<div class="star-icon"></div>
<div class="star-icon"></div>
</div>
<div data-w-id="67b56c8b-d285-be91-d6c8-3f315fb08c1e" class="floating-block bottom-right">
<a href="#targetScroll" class="link-block-2 w-inline-block">
<div class="text-block-9">Social Content Distribution</div>
</a>
</div>
<div data-w-id="0e551fe0-f2f6-11a4-38a3-2e89529bc357" class="floating-block bottom-center">
<a href="#targetScroll" class="link-block-4 w-inline-block">
<div class="text-block-9">Alerting</div>
</a>
</div>
<div data-w-id="94b69fe4-ca55-ad2f-ba86-839703af58d4" class="floating-block bottom-left">
<a href="#targetScroll" class="link-block-3 w-inline-block">
<div class="text-block-9">User Monetisation</div>
</a>
</div>
<div data-w-id="0011db5a-46fe-ee89-eb9b-c4c49f6f0960" class="floating-block top-right">
<a href="#targetScroll" class="link-block w-inline-block">
<div class="text-block-9">Advanced SEO tools</div>
</a>
</div>
</div>
</div>
<section class="welcome">
<div class="w-layout-blockcontainer main-container w-container">
<div class="welcome-contents">
<div class="welcome-sub-heading">
<h2 data-w-id="3e017f9d-e72e-f983-2221-1296e056fee4" style="opacity:0" class="welcome-sub-head">Welcome to the</h2>
</div>
<div class="welcome-heading">
<h2 data-w-id="3e017f9d-e72e-f983-2221-1296e056fee7" style="opacity:0" class="welcome-head"><strong class="bold-text-5">Content Distribution Engine<br></strong></h2>
</div>
<div class="welcome-description">
<p data-w-id="3e017f9d-e72e-f983-2221-1296e056feed" style="opacity:0" class="welcome-para"><strong></strong>Our cutting-edge tool allows you to intelligently select what content to distribute and then automates the posting to the external marketing endpoints to boost SEO and social and paid performance. Say goodbye to manual marketing and welcome a new era of streamlined digital marketing<br></p>
</div>
</div>
</div>
</section>
</div>
</section>
<div class="brix---section container">
<div class="w-layout-blockcontainer container w-container">
<div class="brix---mg-bottom-48px">
<div data-w-id="7fa1b7a9-f41c-b65d-6659-e4fec47c6c6d" style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0" class="brix---inner-container-600px---center">
<div class="brix---text-center">
<div class="brix---mg-bottom-12px">
<div class="brix---color-neutral-800">
<h6 data-w-id="7fa1b7a9-f41c-b65d-6659-e4fec47c6c71" style="opacity:0" class="welcome-head">The Numbers Speak For Themselves</h6>
</div>
</div>
</div>
</div>
</div>
<div data-w-id="7fa1b7a9-f41c-b65d-6659-e4fec47c6c76" style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0" class="w-layout-grid brix---grid-3-columns">
<a data-w-id="7fa1b7a9-f41c-b65d-6659-e4fec47c6c77" href="#" class="brix---card-link-content-left w-inline-block">
<div class="brix---mg-bottom-24px"><img src="images/Icon-7.svg" alt="" class="brix---square-icon"></div>
<div class="brix---color-neutral-800">
<h3 class="brix---heading-h3-size">94%</h3>
</div>
<div class="brix---mg-bottom-24px">
<div class="brix---paragraph-default">
<div class="brix---color-neutral-600">
<p class="paragraph-6">Reduction in time taken to distribute content to marketing endpoints</p>
</div>
</div>
</div>
<div data-w-id="7fa1b7a9-f41c-b65d-6659-e4fec47c6c82" class="brix---link-wrapper read-more-btn">
<div class="brix---color-accent-1">
<div class="brix---text-200-bold">Read more</div>
</div><img src="images/icon-arrow-color-elements-brix-templates.svg" alt="Arrow - Elements Webflow Library - BRIX Templates" class="brix---link-icon-right">
</div>
</a>
<a id="w-node-_7fa1b7a9-f41c-b65d-6659-e4fec47c6c87-f7c92119" href="#" class="brix---card-link-content-left w-inline-block">
<div class="brix---mg-bottom-24px"><img src="images/Icon-8.svg" alt="" class="brix---square-icon"></div>
<div class="brix---color-neutral-800">
<h3 class="brix---heading-h3-size">4.8/5</h3>
</div>
<div class="brix---mg-bottom-24px">
<div class="brix---paragraph-default">
<div class="brix---color-neutral-600">
<p class="paragraph-6">Clients rating who have used the tool</p>
</div>
</div>
</div>
<div data-w-id="7fa1b7a9-f41c-b65d-6659-e4fec47c6c92" class="brix---link-wrapper read-more-btn">
<div class="brix---color-accent-1">
<div class="brix---text-200-bold">Read more</div>
</div><img src="images/icon-arrow-color-elements-brix-templates.svg" alt="Arrow - Elements Webflow Library - BRIX Templates" class="brix---link-icon-right">
</div>
</a>
<a data-w-id="7fa1b7a9-f41c-b65d-6659-e4fec47c6c97" href="#" class="brix---card-link-content-left w-inline-block">
<div class="brix---mg-bottom-24px"><img src="images/Icon-9.svg" alt="" class="brix---square-icon"></div>
<div class="brix---color-neutral-800">
<h3 class="brix---heading-h3-size">2M+</h3>
</div>
<div class="brix---mg-bottom-24px">
<div class="brix---paragraph-default">
<div class="brix---color-neutral-600">
<p class="paragraph-6">Number of posts that have been made to social media in the last 6 months</p>
</div>
</div>
</div>
<div data-w-id="7fa1b7a9-f41c-b65d-6659-e4fec47c6ca2" class="brix---link-wrapper read-more-btn">
<div class="brix---color-accent-1">
<div class="brix---text-200-bold">Read more</div>
</div><img src="images/icon-arrow-color-elements-brix-templates.svg" alt="Arrow - Elements Webflow Library - BRIX Templates" class="brix---link-icon-right">
</div>
</a>
</div>
</div>
</div>
<section class="welcome">
<div class="w-layout-blockcontainer main-container w-container">
<div class="welcome-contents">
<div class="welcome-heading">
<h6 data-w-id="c1a8b9b3-708e-0d36-4909-0a53afbb8e54" style="opacity:0" class="welcome-head">Unlock the Full Potential of Your Digital Marketing</h6>
</div>
<div class="welcome-description">
<p data-w-id="c1a8b9b3-708e-0d36-4909-0a53afbb8e5a" style="opacity:0" class="welcome-para"><strong class="bold-text-6">Our suite of tools empowers your business with cutting-edge digital marketing capabilities, enabling you to amplify your reach, enhance customer engagement, and unlock new revenue streams.</strong><br></p>
<p id="solve-challenge" class="welcome-para"><strong id="f" class="bold-text-6">Each of our features is designed to optimize your content distribution and marketing strategies with precision and efficiency.</strong><br></p>
</div>
</div>
</div>
</section>
<section id="targetScroll" class="filters w-clearfix">
<div class="w-layout-blockcontainer main-container w-container">
<div class="filter-box-wrapper">
<div class="filter-select-fields"></div>
<div class="content-box">
<div class="left-content">
<div itemname="search_surge" class="itemname filtertab">
<div class="tab-button-2">
<div class="tab-btn-name">
<div class="tab-name">Search Surge</div>
<div class="tab-seo-btn">
<div class="text-block-17">Ideal for</div>
<div class="div-block-38">
<div class="text-block-18">SEO</div>
</div>
</div>
</div>
<div class="tab-btn-price">
<div class="text-block-16"><span class="text-span-3">$1499</span> /month </div>
</div>
</div>
</div>
<div itemname="social_pulse" class="itemname filtertab">
<div class="tab-button-2">
<div class="tab-btn-name">
<div class="tab-name">Social Pulse</div>
<div class="tab-seo-btn">
<div class="text-block-17">Ideal for</div>
<div class="div-block-38">
<div class="text-block-18">Performance Marketing</div>
</div>
</div>
</div>
<div class="tab-btn-price">
<div class="text-block-16"><span class="text-span-3">$1499</span> /month </div>
</div>
</div>
</div>
<div itemname="alert_stream" class="itemname filtertab">
<div class="tab-button-2">
<div class="tab-btn-name">
<div class="tab-name">Alert Stream</div>
<div class="tab-seo-btn">
<div class="text-block-17">Ideal for</div>
<div class="div-block-38">
<div class="text-block-18">User Retention</div>
</div>
</div>
</div>
<div class="tab-btn-price">
<div class="text-block-16"><span class="text-span-3">$599</span> /month </div>
</div>
</div>
</div>
<div itemname="market_edge" class="itemname filtertab">
<div class="tab-button-2">
<div class="tab-btn-name">
<div class="tab-name">Market Edge</div>
<div class="tab-seo-btn">
<div class="text-block-17">Ideal for</div>
<div class="div-block-38">
<div class="text-block-18">Monetisation</div>
</div>
</div>
</div>
<div class="tab-btn-price">
<div class="text-block-16"><span class="text-span-3">$799</span> /month </div>
</div>
</div>
</div>
</div>
<div class="right-content">
<div itemname="search_surge" class="tab-faq--wrapper itemname show">
<div class="tab-faq">
<div class="tab-faq-section-top">
<h3 class="tab-faq-top-main-text">Search Surge</h3>
<p class="tab-faq-top-p">Elevate your search engine presence with advanced SEO tools that boost your performance.</p>
</div>
<div class="main-tab-faq">
<h3 class="main-tab-faq-title">What you get?</h3>
<div class="collapsed-content">
<div notshow="ticketing,ecommerce" class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>🚀</strong>Better Indexing</h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Monitor indexing performance and identify content that isn’t indexed yet. Reduce indexing time by up to 80% and double the amount of content Google indexes from your site.<br></p>
</div>
</div>
<div notshow="media" class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text">📈Content Optimisation for Long Tail Search</h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Generate powerful, AI-driven content that enhances long-tail search performance and optimizes relevance for AI search platforms. Ensure every page is crafted to attract the right audience.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text">🗺️Dynamic Sitemaps</h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Generate real-time, bespoke sitemaps for listings, categories, articles, and topics, helping Google index your content faster and improve your visibility.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text">🎯️Smart Internal Linking</h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Automatically create internal links between search results, categories, and detail pages to enhance crawlability and distribute link equity. Use algorithmic logic to prioritize linking high-performing or trending pages.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text">🏆 Multi-Channel Distribution</h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Expand your reach by seamlessly integrating with Google News, Bing, and Google Merchant Center. Ensure your content is automatically submitted to relevant platforms like Google Shopping, increasing your visibility across high-traffic destinations with no extra work.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text">🛠️ Developer-Free SEO Enhancements</h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Abstract SEO logic from the site for easier updates and strategy iterations—no developer required.</p>
</div>
</div>
</div>
</div>
<a href="#" class="tab-faq--btn showusecases w-inline-block">
<div class="text-block-19">View Use Cases</div><img src="images/Eye.png" loading="lazy" alt="" class="eye-icon">
</a>
</div>
<div class="use-cases-div initiallyhidden">
<div class="tab-faq-section-top tab-faq-section-top-2">
<a href="#" class="tab-faq--btn whatyouget w-inline-block">
<div class="text-block-19">What you get?</div>
<h2 class="heading-10 heading-10-2"></h2>
</a>
</div>
<div class="main-tab-faq main-tab-faq-2">
<h3 class="main-tab-faq-title main-tab-faq-title-2">Use Cases for Search Surge</h3>
<div class="collapsed-content div-block-41-2">
<div class="single-tab-faq single-tab-faq-2 newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h2 class="heading-10 heading-10-2 faq-2-icon"></h2>
<h4 class="single-tab-faq-qus-text single-tab-faq-qus-text-2">Double the content you have indexed in under a month</h4>
</div>
<h3 class="heading-11 heading-11-2">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Problem:</div>
<p class="faq-qus-p">Search Engines indexing of new content can be slow or even skipped, depending on your reputation. Often a website with a lot of content will only have<strong> 30-40% of it's sitemaps indexed</strong></p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Solution</div>
<p class="faq-qus-p">The CDE measures indexing performance of all your URLs and builds a feed of all content not yet indexed. This feed can be used to <strong>greatly increase indexation rates</strong> by sending it directly to search engine consoles or publishing it on your platform to show in carousels or internal links.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Result</div>
<p class="faq-qus-p">Get close to<strong> 100% of your content indexed </strong>with dramatic increases over the first few weeks</p>
</div>
</div>
<a href="#" class="lightbox-link-2 w-inline-block w-lightbox">
<div class="tab-faq--btn whatyouget">
<div class="text-block-19">See How You Can Do It</div><img src="images/Icon.png" loading="lazy" alt="" class="eye-icon">
</div>
<script type="application/json" class="w-json">{
"items": [
{
"url": "https://youtube.com/watch?v=vaSxiyIjy40",
"originalUrl": "https://youtube.com/watch?v=vaSxiyIjy40",
"width": 940,
"height": 528,
"thumbnailUrl": "https://i.ytimg.com/vi/vaSxiyIjy40/hqdefault.jpg",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FvaSxiyIjy40%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DvaSxiyIjy40&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FvaSxiyIjy40%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" title=\"YouTube embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script>
</a>
</div>
</div>
<div class="single-tab-faq single-tab-faq-2 newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h2 class="heading-10 heading-10-2 faq-2-icon"></h2>
<h4 class="single-tab-faq-qus-text single-tab-faq-qus-text-2">Place 1st,2nd,3rd,4th and 5th for Long tail and AI searches</h4>
</div>
<h3 class="heading-11 heading-11-2">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Problem:</div>
<p class="faq-qus-p">AI-driven search solutions, such as Google’s AI Overview and chat-based search, are changing the way content is ranked. These solutions primarily <strong>rewrite existing content</strong> rather than generating new insights, meaning they favor sources with structured and enriched data. Websites without long-tail optimized content struggle to rank highly in these evolving search results.<br><br>Additionally, traditional website pages often <strong>lack the depth of content needed</strong> to capture the full range of long-tail search terms. Without additional structured content, many relevant search queries fail to surface your pages in search engines.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Solution</div>
<p class="faq-qus-p">The CDE <strong>automates AI-optimized content generation</strong>, transforming raw data into human-readable, indexable summaries. It creates <strong>new layers of structured content</strong>—such as enriched landing page summaries, average pricing trends, and editorial insights from sources like Wikipedia or POI catalogues. This <strong>significantly expands the range of keywords your site can rank for</strong>, improving search term visibility.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Result</div>
<p class="faq-qus-p">Your pages rank <strong>higher for AI-driven search queries</strong>, significantly increasing visibility in <strong>long-tail and conversational search results</strong>. By generating additional content that wouldn't typically exist on your site, you <strong>capture more search traffic</strong> and ensure broader coverage across search engines.</p>
</div>
</div>
<a href="#" class="lightbox-link-2 w-inline-block w-lightbox">
<div class="tab-faq--btn whatyouget">
<div class="text-block-19">See How You Can Do It</div><img src="images/Icon.png" loading="lazy" alt="" class="eye-icon">
</div>
<script type="application/json" class="w-json">{
"items": [
{
"url": "https://youtube.com/watch?v=epwJbz_HRWs",
"originalUrl": "https://youtube.com/watch?v=epwJbz_HRWs",
"width": 940,
"height": 528,
"thumbnailUrl": "https://i.ytimg.com/vi/epwJbz_HRWs/hqdefault.jpg",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FepwJbz_HRWs%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DepwJbz_HRWs&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FepwJbz_HRWs%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" title=\"YouTube embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script>
</a>
</div>
</div>
<div class="single-tab-faq single-tab-faq-2 newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h2 class="heading-10 heading-10-2 faq-2-icon"></h2>
<h4 class="single-tab-faq-qus-text single-tab-faq-qus-text-2"><strong>Ensure Your Articles Are Indexed Instantly with Automated XML Sitemaps</strong></h4>
</div>
<h3 class="heading-11 heading-11-2">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<div class="single-tab-faq-ans">
<div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Problem:</div>
<p class="faq-qus-p">Search engines rely on sitemaps to efficiently discover and index new content, yet many websites either lack proper sitemap updates or rely on <strong>manual processes</strong>, leading to delays in indexing. Without an up-to-date sitemap, <strong>articles and evergreen content</strong> may remain undiscovered, limiting their visibility in search and Google News.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Solution</div>
<p class="faq-qus-p">The CDE <strong>automatically generates and maintains XML sitemaps</strong> for all article content on your platform. It creates both <strong>standard and Google News-specific sitemaps</strong>, ensuring search engines can promptly find and index your latest content. This process requires <strong>no manual intervention</strong>, keeping your site optimized at all times.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Result</div>
<p class="faq-qus-p"><strong>Faster indexing of all articles</strong> across Google and Bing.<strong>No maintenance required</strong>, as sitemaps are dynamically updated in real-time.<strong>Improved visibility for evergreen content</strong>, classifieds, and e-commerce listings, increasing long-term traffic potential.</p>
</div>
</div>
<a href="#" class="lightbox-link-2 w-inline-block w-lightbox">
<script type="application/json" class="w-json">{
"items": [
{
"url": "https://youtube.com/watch?v=yl7-C0jfFio",
"originalUrl": "https://youtube.com/watch?v=yl7-C0jfFio",
"width": 940,
"height": 528,
"thumbnailUrl": "https://i.ytimg.com/vi/yl7-C0jfFio/hqdefault.jpg",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fyl7-C0jfFio%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dyl7-C0jfFio&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fyl7-C0jfFio%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" title=\"YouTube embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script>
</a>
</div>
</div>
</div>
<div class="single-tab-faq single-tab-faq-2 newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h2 class="heading-10 heading-10-2 faq-2-icon"></h2>
<h4 class="single-tab-faq-qus-text single-tab-faq-qus-text-2"><strong>Easily Export Content in Any Format Without Developer Effort</strong></h4>
</div>
<h3 class="heading-11 heading-11-2">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<div class="single-tab-faq-ans">
<div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Problem:</div>
<p class="faq-qus-p">Marketing and product teams often need <strong>new feed types or custom exports</strong>, but the <strong>development time and resources required</strong> delay or deprioritize these initiatives. This leaves teams <strong>frustrated and unable to experiment</strong>, limiting agility and content distribution opportunities.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Solution</div>
<p class="faq-qus-p">The CDE enables <strong>seamless content export</strong> in multiple formats through a <strong>single integration</strong>, eliminating the need for constant developer involvement. Teams can easily <strong>filter, customize, and generate feeds</strong> in widely used formats, including: RSS, JSON, CSV, XML.<br>New formats can be added as required, ensuring <strong>complete flexibility</strong> for different use cases.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Result</div>
<p class="faq-qus-p"><strong>Faster, hassle-free content exports</strong>, reducing dependency on development teams.<strong>Increased adaptability</strong>, allowing teams to experiment with new channels and formats effortlessly.<strong>Efficient automation</strong>, ensuring content is always structured and ready for distribution.</p>
</div>
</div>
<a href="#" class="lightbox-link-2 w-inline-block w-lightbox">
<script type="application/json" class="w-json">{
"items": [
{
"url": "https://youtube.com/watch?v=yl7-C0jfFio",
"originalUrl": "https://youtube.com/watch?v=yl7-C0jfFio",
"width": 940,
"height": 528,
"thumbnailUrl": "https://i.ytimg.com/vi/yl7-C0jfFio/hqdefault.jpg",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fyl7-C0jfFio%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dyl7-C0jfFio&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fyl7-C0jfFio%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" title=\"YouTube embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div itemname="social_pulse" class="tab-faq--wrapper itemname initiallyhidden">
<div class="tab-faq">
<div class="tab-faq-section-top">
<h3 class="tab-faq-top-main-text">Social Pulse</h3>
<p class="tab-faq-top-p">Amplify your marketing efforts with intelligent tools for content creation and distribution.</p>
</div>
<div class="main-tab-faq">
<h3 class="main-tab-faq-title">What you get?</h3>
<div class="collapsed-content">
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>📢 Multi-Channel Content Distribution</strong></h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Easily distribute your content to over 20 paid and social channels, including Facebook, Instagram, TikTok, and Google Ads. Ensure your content is always present, real-time, and tailored for every platform.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>🤖 AI-Powered Content Creation</strong></h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Leverage AI to automatically generate, rewrite, and optimize text, images, and videos for each destination, including creating video content from image stills for all major social channels. Ensure brand consistency while targeting specific audiences with custom content.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>📊 Data-Driven Marketing</strong></h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Use business intelligence and customer metrics (like NPS scores, lead SLAs, subscription packages and more) to refine your distribution strategy. Tailor your content to drive engagement and meet performance targets.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>🌐 Support for Major Platforms</strong></h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Connect with over 25 key social platforms as well as paid endpoints like Google Dynamic Ads, Meta Paid, Remarketers, and more. Expand your reach without additional manual effort.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>🔄 End-to-End Automation</strong></h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Automate your entire content distribution process—from content generation to publishing—while maintaining complete control. Save time and scale effortlessly.</p>
</div>
</div>
</div>
</div>
<a href="#" class="tab-faq--btn showusecases w-inline-block">
<div class="text-block-19">View Use Cases</div><img src="images/Eye.png" loading="lazy" alt="" class="eye-icon">
</a>
</div>
<div class="use-cases-div initiallyhidden">
<div class="tab-faq-section-top tab-faq-section-top-2">
<a href="#" class="tab-faq--btn whatyouget w-inline-block">
<div class="text-block-19">What you get?</div>
<h2 class="heading-10 heading-10-2"></h2>
</a>
</div>
<div class="main-tab-faq main-tab-faq-2">
<h3 class="main-tab-faq-title main-tab-faq-title-2">Use Cases for Social Pulse</h3>
<div class="collapsed-content div-block-41-2">
<div class="single-tab-faq single-tab-faq-2 newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h2 class="heading-10 heading-10-2 faq-2-icon"></h2>
<h4 class="single-tab-faq-qus-text single-tab-faq-qus-text-2"><strong>Be Selective About Where You Spend Your Ad Budget</strong></h4>
</div>
<h3 class="heading-11 heading-11-2">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<div class="single-tab-faq-ans">
<div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Problem:</div>
<p class="faq-qus-p">Many campaigns <strong>allocate budgets uniformly</strong>, treating all content equally, even when some pieces naturally attract traffic while others struggle. This <strong>leads to overspending on high-performing content</strong> that doesn’t need additional promotion, while failing to support content that requires extra visibility.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Solution</div>
<p class="faq-qus-p">The CDE enables <strong>smart budget allocation</strong> by dynamically managing multiple feeds across multiple campaigns. Instead of a <strong>one-size-fits-all</strong> approach, it <strong>optimizes ad spend</strong> by prioritizing underperforming content while reducing costs on content that already drives engagement organically.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Result</div>
<p class="faq-qus-p"><strong>Improved ad efficiency</strong>, ensuring budget is spent where it delivers the most impact.<br><strong>No wasted spend on content already performing well</strong>, maximizing return on investment.<br><strong>Better outcomes from third-party traffic providers</strong>, focusing promotion on content that needs it most.</p>
</div>
</div>
<a href="#" class="lightbox-link-2 w-inline-block w-lightbox">
<div class="tab-faq--btn whatyouget">
<div class="text-block-19">See How You Can Do It<br></div><img src="images/Icon.png" loading="lazy" alt="" class="eye-icon">
</div>
<script type="application/json" class="w-json">{
"items": [
{
"url": "https://youtube.com/watch?v=WH-b_4Eoojk",
"originalUrl": "https://youtube.com/watch?v=WH-b_4Eoojk",
"width": 940,
"height": 528,
"thumbnailUrl": "https://i.ytimg.com/vi/WH-b_4Eoojk/hqdefault.jpg",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FWH-b_4Eoojk%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DWH-b_4Eoojk&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FWH-b_4Eoojk%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" title=\"YouTube embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script>
</a>
</div>
</div>
</div>
<div class="single-tab-faq single-tab-faq-2 newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h2 class="heading-10 heading-10-2 faq-2-icon"></h2>
<h4 class="single-tab-faq-qus-text single-tab-faq-qus-text-2"><strong>Auto Posting and Formatting for All Social Channels</strong></h4>
</div>
<h3 class="heading-11 heading-11-2">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<div class="single-tab-faq-ans">
<div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Problem:</div>
<p class="faq-qus-p">Manually adapting content for multiple social platforms is <strong>time-consuming and inefficient</strong>. Each platform has <strong>different format requirements</strong> for images, videos, and text, making it difficult to optimize content for maximum engagement. Platforms like <strong>TikTok, YouTube Shorts, and Instagram Reels require video content</strong>, which many businesses struggle to produce from existing assets.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Solution</div>
<p class="faq-qus-p">The CDE uses <strong>Gen AI to automate content adaptation</strong> for every social endpoint. It <strong>auto-selects and crops images</strong> to fit each platform’s specifications, <strong>reformats text</strong> to match different engagement styles, and <strong>generates short-form videos from static images</strong>. This opens up new distribution opportunities on <strong>TikTok, YouTube Shorts, and Instagram Reels</strong>. With <strong>built-in automation</strong>, the CDE <strong>posts simultaneously across multiple platforms</strong>, ensuring content is optimized for every destination.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Result</div>
<p class="faq-qus-p">Content is <strong>formatted perfectly for each platform</strong> without extra manual effort. Brands can <strong>expand their reach to video-first platforms</strong> without additional production costs. Posting across <strong>multiple social and paid channels</strong> becomes effortless, ensuring every piece of content is <strong>fully optimized and distributed at scale</strong>.</p>
</div>
</div>
<a href="#" class="lightbox-link-2 w-inline-block w-lightbox">
<div class="tab-faq--btn whatyouget">
<div class="text-block-19">See How You Can Do It<br></div><img src="images/Icon.png" loading="lazy" alt="" class="eye-icon">
</div>
<script type="application/json" class="w-json">{
"items": [
{
"url": "https://youtube.com/watch?v=QImFcLU-TqE",
"originalUrl": "https://youtube.com/watch?v=QImFcLU-TqE",
"width": 940,
"height": 528,
"thumbnailUrl": "https://i.ytimg.com/vi/QImFcLU-TqE/hqdefault.jpg",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FQImFcLU-TqE%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DQImFcLU-TqE&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FQImFcLU-TqE%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" title=\"YouTube embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script>
</a>
</div>
</div>
</div>
<div class="single-tab-faq single-tab-faq-2 newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h2 class="heading-10 heading-10-2 faq-2-icon"></h2>
<h4 class="single-tab-faq-qus-text single-tab-faq-qus-text-2"><strong>Redistribution of Leads on a Marketplace</strong></h4>
</div>
<h3 class="heading-11 heading-11-2">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<div class="single-tab-faq-ans">
<div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Problem:</div>
<p class="faq-qus-p">Many businesses struggle with <strong>lead distribution inefficiencies</strong>, especially when <strong>smaller players are overshadowed</strong> by higher-paying competition. In marketplaces, small agencies or sellers often have <strong>less content and lower visibility</strong>, leading to <strong>a below-average lead volume</strong> and higher churn rates. Despite this, they remain important for <strong>content diversity and overall marketplace health</strong>.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Solution</div>
<p class="faq-qus-p">The CDE applies <strong>complex, data-driven CPC feed logic</strong> to <strong>rebalance lead allocation</strong> across multiple segments. By <strong>identifying underperforming content</strong>, it <strong>prioritizes lead distribution</strong> to listings or businesses that need more exposure. A dedicated feed ensures that <strong>budget is specifically allocated</strong> to help smaller players compete while maintaining balanced overall performance.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Result</div>
<p class="faq-qus-p">Small agencies or sellers see <strong>dramatic improvements in lead flow</strong>, with a <strong>700% increase in performance</strong> while maintaining cost efficiency. Marketplace balance is improved by <strong>ensuring lead diversity</strong> without increasing total budget allocation.</p>
</div>
</div>
<a href="#" class="lightbox-link-2 w-inline-block w-lightbox">
<div class="tab-faq--btn whatyouget">
<div class="text-block-19">See How You Can Do It<br></div><img src="images/Icon.png" loading="lazy" alt="" class="eye-icon">
</div>
<script type="application/json" class="w-json">{
"items": [
{
"url": "https://youtube.com/watch?v=9p6f2ObCXZU",
"originalUrl": "https://youtube.com/watch?v=9p6f2ObCXZU",
"width": 940,
"height": 528,
"thumbnailUrl": "https://i.ytimg.com/vi/9p6f2ObCXZU/hqdefault.jpg",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2F9p6f2ObCXZU%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D9p6f2ObCXZU&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2F9p6f2ObCXZU%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" title=\"YouTube embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script>
</a>
</div>
</div>
</div>
<div class="single-tab-faq single-tab-faq-2 newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h2 class="heading-10 heading-10-2 faq-2-icon"></h2>
<h4 class="single-tab-faq-qus-text single-tab-faq-qus-text-2"><strong>Facebook Multi-Page Strategy</strong></h4>
</div>
<h3 class="heading-11 heading-11-2">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<div class="single-tab-faq-ans">
<div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Problem:</div>
<p class="faq-qus-p">Many brands struggle to reach and engage niche audiences effectively. Posting to a single main page limits visibility, engagement, and the ability to <strong>target interest-based communities</strong>. Without a structured content distribution strategy, brands miss out on <strong>thousands of potential customer touchpoints across the web</strong>.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Solution</div>
<p class="faq-qus-p">The CDE enables <strong>multi-page and multi-channel distribution</strong>, allowing content to be posted across <strong>hundreds or even thousands of audience-specific groups, pages, and platforms</strong>. In one case, running <strong>50 niche Facebook group pages alongside a main brand page</strong> generated <strong>33x more sessions and 9x more leads</strong> than using just a single page.By automating the creation and distribution of content across <strong>interest-based communities</strong>, such as real estate in specific districts, product enthusiasts, or local event-goers, the CDE ensures <strong>highly relevant content reaches the right people at scale</strong>. This strategy works beyond Facebook—<strong>it can be replicated across social platforms, forums, aggregators, and niche communities</strong>, expanding reach exponentially.</p>
</div>
<div class="faq-single-qus-part">
<div class="faq-qut-title">The Result</div>
<p class="faq-qus-p">Brands gain <strong>thousands of customer touchpoints</strong> across the web with <strong>no limit</strong> to the number of pages or groups that can be connected. Engagement increases while <strong>brand presence scales effortlessly</strong>, all with <strong>automated content distribution and zero additional staff overhead</strong>.</p>
</div>
</div>
<a href="#" class="lightbox-link-2 w-inline-block w-lightbox">
<script type="application/json" class="w-json">{
"items": [
{
"url": "https://youtube.com/watch?v=yl7-C0jfFio",
"originalUrl": "https://youtube.com/watch?v=yl7-C0jfFio",
"width": 940,
"height": 528,
"thumbnailUrl": "https://i.ytimg.com/vi/yl7-C0jfFio/hqdefault.jpg",
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fyl7-C0jfFio%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dyl7-C0jfFio&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fyl7-C0jfFio%2Fhqdefault.jpg&type=text%2Fhtml&schema=youtube\" width=\"940\" height=\"528\" scrolling=\"no\" title=\"YouTube embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"></iframe>",
"type": "video"
}
],
"group": ""
}</script>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div itemname="alert_stream" class="tab-faq--wrapper itemname initiallyhidden">
<div class="tab-faq">
<div class="tab-faq-section-top">
<h3 class="tab-faq-top-main-text">Alert Stream</h3>
<p class="tab-faq-top-p">Keep your audience in the loop with this dynamic alerting and email platform. The service handles the matching of new content with saved alerts in real time, sending of instant alerts as well as batching and scheduling, and communication with third parties</p>
</div>
<div class="main-tab-faq">
<h3 class="main-tab-faq-title">What you get?</h3>
<div class="collapsed-content">
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>🔔 Real-Time Alert Matching</strong></h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Automatically match user alerts with newly available content based on custom criteria, ensuring users receive the most relevant updates instantly.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>📈 Advanced Targeting Strategies</strong></h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Apply sophisticated, data-driven marketing strategies to maximize engagement and retention, far beyond human capacity.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>🚫 Alert Deduplication</strong></h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Identify and eliminate duplicate content using custom rules, ensuring users only receive fresh and relevant alerts.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>⏰ Custom Triggering</strong></h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Set instant, hourly, daily, weekly, or monthly alerts with flexible rules. For example, send alerts only between 8 AM and 10 PM to avoid over-alerting.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>💰 Monetization Opportunities</strong></h4>
</div>
<h3 class="heading-11">+</h3>
<h2 class="heading-12"></h2>
</div>
<div class="single-tab-faq-ans">
<p class="paragraph-21">Promote matching listings within email alerts, creating new revenue streams and boosting conversions.</p>
</div>
</div>
<div class="single-tab-faq newfeature">
<div class="single-tab-faq-qus">
<div class="div-block-40">
<h4 class="single-tab-faq-qus-text"><strong>🔄 Flexible Matching</strong></h4>
</div>
<h3 class="heading-11">+</h3>