-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.html
More file actions
1002 lines (901 loc) · 31.7 KB
/
Copy pathpricing.html
File metadata and controls
1002 lines (901 loc) · 31.7 KB
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">
<head>
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<title>Document</title>
<style>
#navbar {
border: 0px solid red;
display: flex;
width: 80%;
height: 50px;
margin: auto;
background-color: white;
}
#navbar.sticky {
padding: 40px 100px;
}
#navbar>div {
display: flex;
justify-content: space-between;
}
#navbar>div:nth-child(2) {
border: 0px solid red;
width: 70%;
font-family: "Noto sans", sans-serif;
display: flex;
color: #30564c;
margin-left: 70px;
justify-content: space-between;
cursor: pointer;
align-items: center;
}
#navbar>div:nth-child(3) {
border: 0px solid red;
width: 40%;
margin-left: 400px;
justify-content: space-between;
}
#navbar>div>img {
padding: 10px;
cursor: pointer;
}
.btn1 {
border: 2px solid #00c66b;
border-radius: 5px;
color: #00c66b;
font-weight: bolder;
padding: 8px;
margin-right: 10px;
background-color: white;
height: 45px;
margin: auto;
width: 120px
}
#navbar>div:nth-child(3)>a>p {
text-align: center;
margin: auto;
font-family: "Noto sans", sans-serif;
color: #686f76;
font-weight: bolder;
font-size: 15px;
margin-top: 15px;
}
#navbar>div:nth-child(3)>a>p:hover {
color: #00c66b;
}
button:hover {
background-color: #00c66b;
color: white;
cursor: pointer;
}
button+p:hover {
color: #00c66b;
cursor: pointer;
}
div>h4:hover {
color: #00c66b;
}
div>a>h4:hover {
color: #00c66b;
}
a {
color: #30564c;
text-decoration: none;
}
#dropdown1 {
position: relative;
display: inline-block;
}
#dropcont1 {
display: none;
position: absolute;
min-width: 250px;
z-index: 1;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
border-radius: 5px;
background-color: white;
}
#dropcont1 a {
font-size: 14px;
line-height: 20px;
display: block;
padding: 10px 20px;
}
#dropcont1 a:hover {
color: #00c66b
}
#dropdown1:hover #dropcont1 {
display: block;
}
#dropdown1:hover #dropbtn1 {
color: #00c66b;
}
#dropbtn1:hover {
color: #00c66b;
}
#dropdown2 {
position: relative;
display: inline-block;
}
#dropcont2 {
display: none;
position: absolute;
min-width: 250px;
z-index: 1;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
border-radius: 5px;
background-color: white;
}
#dropcont2 a {
font-size: 14px;
line-height: 20px;
display: block;
padding: 10px 20px;
}
#dropcont2 a:hover {
color: #00c66b
}
#dropdown2:hover #dropcont2 {
display: block;
}
#dropdown2:hover #dropbtn2 {
color: #00c66b;
}
#dropbtn2:hover {
color: #00c66b;
}
#dropdown {
position: relative;
display: inline-block;
}
#dropcont {
display: none;
position: absolute;
min-width: 900px;
z-index: 1;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
border-radius: 5px;
background-color: white;
}
#dropcont a {
font-size: 14px;
line-height: 20px;
display: block;
padding: 10px 20px;
}
#dropcont a:hover {
color: #00c66b
}
#dropdown:hover #dropcont {
display: block;
}
#dropdown:hover #dropbtn {
color: #00c66b;
}
#dropbtn:hover {
color: #00c66b;
}
#parent{
display: flex;
padding:20px;
}
#parent>div{
width:100%;
margin-left: 20px;
}
.q{
font-size:15px ;
font-family: sans-serif;
line-height:20px ;
font-weight: 600;
}
.q:hover{
color: #00c66b;
}
.hub:hover{
color: #00c66b;
}
#ttop{
margin-top:10px;
background-color: #113831;
}
#ttop>div{
border:0px solid red;
background-color: #113831;
padding:50px;
width:55%;
text-align: center;
margin:auto
}
#ttop>div>h1{
color:#ffffff ;
font-family: sans-serif;
font-size:44px ;
line-height:48px ;
font-weight:800;
}
#ttop>div>h3{
color:#ffffff ;
font-family: sans-serif;
font-size:21px ;
line-height:30px ;
font-weight:400;
}
#ttop>div>p{
color:#00c66b ;
font-family: sans-serif;
font-size:16px ;
line-height:20px ;
font-weight:400;
}
#pricards{
border:0px solid red;
width:80%;
display: flex;
margin:auto
}
#pricards>div{
border:2px solid #e8f8f2;
width:20%;
background-color: #e8f8f2;
justify-content: space-around;
padding:20px;
margin:auto;
border-radius: 15px;
}
#pricards>div:hover{
box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
#pricards>div>button{
border:2px solid #00c66b;
background-color: #00c66b ;
width:240px;
padding:10px;
border-radius: 5px;
color:white;
font-weight: bold;
}
#pricards>div>button:hover{
background-color: white;
color:#00c66b;
border:2px solid #00c66b;
}
#pricards>div:nth-child(1)>button{
margin-top: 38px;
}
.ntg>div>a{
display: flex;
}
a:hover{
color:#00c66b
}
.ntg>div>a>img{
margin-top: 4px;
height:40px;
margin-right: 5px;
}
#pricards>div>h1{
color:#113831;
font-family: sans-serif;
font-size:28px ;
font-weight:800 ;
line-height:24px ;
}
h4>p>i{
color: #00c66b;
}
#imgsec{
padding-top: 80px;
border:0px solid red;
display: flex;
width:60%;
margin:auto;
}
#imgsec>div{
width:30%;
height:310px;
margin:auto;
justify-content: space-around;
}
#imgsec>div>img{
width:100%;
border-radius: 10px;
}
#imgsec>div>p{
color:#333333 ;
font-family: sans-serif;
font-size:14px ;
font-weight:600 ;
line-height:22px ;
}
span{
color:#109160;
}
#mainin{
background-color: #2e5e55;
padding:40px;
}
#main>div>h1{
border:0px solid red;
width:60%;
text-align: center;
margin: auto;
color: white;
font-size: 40px;
font-family: sans-serif;
line-height: 24px;
font-weight: 700;
}
#quote{
border:0px solid red;
background-color: #174c43;
padding:60px
}
#quote>div>div{
border:0px solid red;
display: flex;
width:70%;
margin:auto;
background-color: #174c43;
margin-top: 20px;
justify-content: space-around;
}
#ne{
width:12%;
height:120px;
border-radius: 120px;
}
#nee{
width:200px;
height:20px;
margin-top:55px;
margin-left: 50px;
}
#quote>div>p{
border:0px solid red;
width:60%;
margin: auto;
color: white;
font-size: 24px;
font-family: sans-serif;
line-height: 30px;
font-weight: 300;
}
#ma>h1{
color: white;
font-size: 20px;
font-family: sans-serif;
line-height: 20px;
font-weight: 600;
}
#ma>p{
color: white;
font-size: 17px;
font-family: sans-serif;
line-height: 21px;
font-weight: 400;
}
#ma{
border:0px solid red;
width:30%;
margin-left:-120px
}
#i{
width:50px;
margin-top: -1000px;
}
#FAQ{
padding-top:50px;
border:0px solid red;
display: flex;
width:70%;
margin:auto;
}
#FAQ>div:nth-child(2){
border:0px solid red;
width:40%;
margin-left:90px
}
#FAQ>div{
justify-content: space-between;
}
#m{
width:330px;
}
#faq{
width:50%;
padding:10px
}
#faq>h1{
color: #174c43;
font-size: 38px;
font-family: sans-serif;
line-height: 44px;
font-weight: 700;
}
#faq>h2{
color: #174c43;
font-size: 24px;
font-family: sans-serif;
line-height: 32px;
font-weight: 700;
}
#faq>p,li{
color: #5f5f5f;
font-size: 16px;
font-family: sans-serif;
line-height: 24px;
font-weight: 400;
}
.hcolor{
color: #174c43;
font-size: 24px;
font-family: sans-serif;
line-height: 32px;
font-weight: 700;
}
.txt{
color: #5f5f5f;
font-size: 16px;
font-family: sans-serif;
line-height: 24px;
font-weight: 400;
}
#FAQ1{
width:35%;
margin-left:240px
}
#fot{
margin-top: 50px;
border:0px solid red;
padding:60px;
background-color: #e8f8f2;
}
#fot>div{
border:0px solid red;
width:50%;
margin:auto;
text-align: center;
}
#fot>div>h1{
color: #133d36;
font-size: 40px;
font-family: sans-serif;
line-height: 46px;
font-weight: 800;
}
.cs{
border:2px solid #00c66b;
padding:10px;
color: #00c66b;
border-radius: 6px;
font-weight: bold;
background-color: white;
}
.cs:hover{
background-color: #00c66b;
color:white
}
#ftop{
display: flex;
width:80%;
justify-content: space-around;
margin:auto;
margin-top: 20px;
}
.tom{
color: #7d7d7d;
font-family: sans-serif;
font-size:14px ;
line-height:22px ;
font-weight: 700
}
.ty{
color: #7d7d7d;
font-family: sans-serif;
font-size:14px ;
line-height:22px ;
font-weight: 400
}
.ty:hover{
color: #00c66b;
cursor: pointer;
}
footer>div>i{
color:#5f5f5f;
font-family: sans-serif;
font-size:14px ;
line-height:20px ;
font-weight: 400
}
#malafoot>div:nth-child(2)>a>img{
width:25px;
}
#malafoot>div:nth-child(2){
margin-left:-50px
}
#malafoot{
display: flex;
justify-content: space-around;
}
#malafoot>div:nth-child(1)>a>img{
width:120px;
cursor:pointer;
}
#mata{
display: flex;
border:0px solid red;
background-color: #133d36;
justify-content: space-around;
}
#mata>h6{
color:rgba(255, 255, 255, 0.5);
font-family: sans-serif;
font-size:13px ;
line-height:20px ;
font-weight: 400
}
#navbar>div>a>img{
padding-top:10px;
width:115px
}
</style>
</head>
<body>
<div id="navbar">
<div>
<a href="index.html"><img src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/5fd8f444e5106349b4570e0b_lately-nav-logo.svg"
alt=""></a>
</div>
<div>
<a href="/headingsection.html"></a>
<div id="dropdown">
<h4 id="dropbtn">Product <i class="fa-solid fa-angle-down"></i></h4>
<div id="dropcont">
<div id="parent">
<div>
<h2 class="q">PARTNERS & INTEGRATIONS</h2>
<p class="w">Find social media platform integrations and content extensions to enhance your AI content creation experience.</p>
<h3 class="hub">HubSpot Social</h3>
<h3 class="hub">Hootsuite</h3>
<h3 class="hub">UpContent</h3>
</div>
<div>
<h2 class="q">AI CONTENT WRITER</h2>
<p class="w">Automatically writes and pre-tests content for your social media programs</p>
<h2 class="q">SOCIAL ANALYTICS</h2>
<p class="w">Informs your content strategy and make your content more engaging with content analytics</p>
</div>
<div>
<h2 class="q">SOCIAL MEDIA MARKETING</h2>
<p class="w">Everything you need to scale your social media marketing program</p>
<h2 class="q">SOCIAL SELLING</h2>
<p class="w">Extend your social content across executives, sales, employees, franchises, and more</p>
</div>
<div>
<h2 class="q">VIDEO AUTOGENERATOR</h2>
<p class="w">Turn your company videos into bite-sized social media video clips and social media posts</p>
<h2 class="q">PARENT ACCOUNTS</h2>
<p class="w">Easily manage parent-child social media accounts</p>
</div>
</div>
</div>
</div>
<div id="dropdown1">
<h4 id="dropbtn1">Resources <i class="fa-solid fa-angle-down"></i></h4>
<div id="dropcont1">
<a href="">Customor Stories</a>
<a href="">Lately Office hours signin</a>
<a href="">Lately LIVE replays</a>
<a href="">How to Postion ANYTHING</a>
<a href="">Ebooks</a>
<a href="">Blog</a>
<a href="">Help Center</a>
</div>
</div>
<div id="dropdown2">
<h4 id="dropbtn2">Company <i class="fa-solid fa-angle-down"></i></h4>
<div id="dropcont2">
<a href="https://www.lately.ai/company/about">About</a>
<a href="">Team Lately</a>
<a href="">Press & News</a>
<a href="">Lately Professional Services</a>
<a href="">Contact Us</a>
</div>
</div>
<a href="pricing.html">
<h4>Pricing</h4>
</a>
</div>
<div>
<a target="_blank" href="getstarted.html" style="text-decoration:none"><button class="btn1">GET
STARTED</button></a>
<a href="login.html" style="text-decoration:none;color:#00c66b">
<p>LOG IN</p>
</a>
</div>
</div>
<div id="ttop">
<div>
<h1>Lately Pricing & Plans</h1>
<h3>Repurpose any longform text, audio or video into dozens of social posts - including matching audiograms or video clips.</h3>
<p>(Save up to 30% on any annual plan with AI that won't blow out your wallet!)</p>
</div>
</div>
<div id="pricards">
<div>
<h1>Startly</h1>
<div class="ntg">
<div>
<a href="https://www.youtube.com/watch?v=vRczqA7bLgY"><img src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/62cc683f72640f7652a4d646_watch_play.png" alt="">
<p>Watch startly in action!</p></a>
</div>
</div>
<!-- <div id="bomb"> -->
<h1>$14/month</h1>
<i>billed annually</i>
<p>For individuals. Text only.</p>
<p><i>7-day free trial</i></p>
<button>TRY FOR FREE NOW</button>
<!-- </div> -->
<div>
<h4>Startly includes:</h4>
<p><i class="fa-solid fa-circle-check"></i> Generate dozens of social posts from text
</p>
<p><i class="fa-solid fa-circle-check"></i> AI learning for one brand voice</p>
<p><i class="fa-solid fa-circle-check"> </i> AI-recommended hashtags</p>
<p><i class="fa-solid fa-circle-check"></i> Single-user</p>
<p><i class="fa-solid fa-circle-check"></i> Email support</p>
<p><i class="fa-solid fa-circle-check"></i> Multi-regional/client campaign governance</p>
<p><i class="fa-solid fa-circle-check"></i> Add additional users for $30/mo/user</p>
</div>
</div>
<div>
<h1>Litely</h1>
<div class="ntg">
<div>
<a href="https://www.youtube.com/watch?v=vRczqA7bLgY"><img src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/62cc683f72640f7652a4d646_watch_play.png" alt="">
<p>Watch startly in action!</p></a>
</div>
</div>
<h1>$39/month</h1>
<i>billed annually</i>
<p>For small businesses. Text, video & audio.</p>
<p><i>7-day free trial</i></p>
<button>TRY FOR FREE NOW</button>
<div>
<h4>Litely includes everything in Startly plus:</h4>
<p><i class="fa-solid fa-circle-check"></i> Generate dozens of social posts from video, audio or text
</p>
<p><i class="fa-solid fa-circle-check"></i> Results include matching video clips or audiograms</p>
<p><i class="fa-solid fa-circle-check"> </i> AI-recommended hashtags</p>
<p><i class="fa-solid fa-circle-check"></i> AI learning for one brand voice</p>
<p><i class="fa-solid fa-circle-check"></i> AI-recommended hashtags</p>
<p><i class="fa-solid fa-circle-check"></i> AI-assisted scheduling and publishing</p>
</div>
</div>
<div>
<h1>Professionally</h1>
<div class="ntg">
<div>
<a href="https://www.youtube.com/watch?v=vRczqA7bLgY"><img src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/62cc683f72640f7652a4d646_watch_play.png" alt="">
<p>Watch startly in action!</p></a>
</div>
</div>
<h1>$99/month</h1>
<i>billed annually</i>
<p>For teams. Text, video, audio & advanced editing features.</p>
<p><i>7-day free trial</i></p>
<button>TRY FOR FREE NOW</button>
<div>
<h4>Professionally includes everything in Litely plus:</h4>
<p><i class="fa-solid fa-circle-check"></i> Video & Audio transcript editing
</p>
<p><i class="fa-solid fa-circle-check"></i> Video & Audio captioning</p>
<p><i class="fa-solid fa-circle-check"> </i> Add video intros/outros</p>
<p><i class="fa-solid fa-circle-check"></i> AI-recommended keywords</p>
<p><i class="fa-solid fa-circle-check"></i> Unlimited posts</p>
<p><i class="fa-solid fa-circle-check"></i> Includes up to 3 users</p>
<p><i class="fa-solid fa-circle-check"></i> Add additional users for $30/mo/user</p>
</div>
</div>
<div>
<h1>Enterprisely</h1>
<div class="ntg">
<div>
</div>
</div>
<i>Request a Demo</i>
<p>For enterprise businesses. Employee advocacy, parent/child dashboards and performance engagement analytics at scale.</p>
<button>TRY FOR FREE NOW</button>
<div>
<h4>Enterprisely includes everything in Professionally plus:</h4>
<p><i class="fa-solid fa-circle-check"></i> Generate dozens of social posts
</p>
<p><i class="fa-solid fa-circle-check"></i> AI learning for multiple brand/employee voices</p>
<p><i class="fa-solid fa-circle-check"> </i> Employee advocacy/social selling syndication</p>
<p><i class="fa-solid fa-circle-check"></i> Multi-regional/client campaign governance</p>
<p><i class="fa-solid fa-circle-check"></i> Omni-analytics</p>
<p><i class="fa-solid fa-circle-check"></i> Advanced AI training</p>
<p><i class="fa-solid fa-circle-check"></i> Advanced scheduling suite</p>
<p><i class="fa-solid fa-circle-check"></i> Customizable marketing calendar</p>
<p><i class="fa-solid fa-circle-check"></i> Includes up to 3 users</p>
</div>
</div>
</div>
<div id="imgsec">
<div>
<img src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/6318d0aa4a2c8342ebdc729a_hub_hoot-p-500.png" alt="">
<p>Already have Hootsuite,<span>Hootsuite Amplify or HubSpot Marketing Hub</span> ? Awesome. We integrate with them, too.</p>
</div>
<div>
<img src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/62741da191fed80058a34875_pricing2-p-500.png" alt="">
<p>Want to generate from content in a language other than English? Just ask!</p>
</div>
<div>
<img src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/6274254a502a7a424b88694c_pricing3-p-500.png" alt="">
<p>Don't have text to generate from? Our Discover Articles feature will find it for you! Powered by UpContent.</p>
</div>
</div>
<div id="main">
<div id="mainin">
<h1>Powered by AI <span>Loved by humans.</span> </h1>
</div>
<div id="quote">
<img id="i" src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/5fd7b374b200124961cb94ac_home-quote-icon.png" alt="">
<div>
<p>“Lately's ability to <span>learn and contextually identify key moments</span> for social media is <span>crucial</span> for anyone who wants to scale their content output.”</p>
<div>
<img id="ne" src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/6000a9b70d1e28af64a0646f_1517402220129.jpeg" alt="">
<div id="ma">
<h1>May Niu</h1>
<p>International Media Strategist,
VaynerMedia</p>
</div>
<img id="nee" src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/6000ae53329164a22a76b350_logo_vayner_white-p-500.png" alt="">
</div>
</div>
</div>
</div>
<div id="FAQ">
<div id="faq">
<h1>FAQ</h1>
<h2>What kind of longform content does Lately's AI generate from?</h2>
<p>Run any kind of longform content through Lately's AI and we'll slice it up into dozens of high-performing social posts. Lately's AI will also create social posts on its own, based on the longform content you feed it, using a writing model it creates uniquely for your voice or brand. Everything it creates is tailored uniquely for your voice or brand and designed specifically to engage your target audience.</p>
<ul>
<li>Works with any longform text, audio and video...
</li>
<li>Works with earned, owned or found media…</li>
<li>Works with podcasts, webinars, blogs and more!</li>
</ul>
</div>
<div>
<img id="m" src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/61c1fcb478083ac00ef63308_heart.png" alt="">
</div>
</div>
<div id="FAQ1">
<div>
<h2 class="hcolor">Does Lately's AI generate social posts from video and audio?</h2>
<p class="txt">Yes! Lately's AI generates social posts from text, video and audio. </p>
<ul>
<li class="txt">From text, we'll generate dozens of social posts. </li>
<li class="txt">From audio, we'll generate a transcript and dozens of social posts with matching audiograms.</li>
<li class="txt">From video, we'll generate a transcript, and dozens of posts with matching video clips.</li>
</ul>
</div>
<div>
<h2 class="hcolor">Does Lately create social posts on its own?</h2>
<p class="txt">Yes! In addition to slicing up text, video and audio into dozens of social posts that contain the highest possible performing quotes - including matching video or audio clips – Lately also creates social posts on its own, based on whatever longform content you feed it. Everything it creates is tailored uniquely for your voice or brand and designed specifically to engage your target audience. Just look for the “Lately AI Original” badge!</p>
</div>
<div>
<h2 class="hcolor">Can I publish directly from Lately?</h2>
<p class="txt">Yes! You can schedule and publish directly from any Lately plan to Twitter, Facebook, Instagram, LinkedIn and YouTube with our full, on-premise scheduling and publishing suite.</p>
</div>
<div>
<h2 class="hcolor">What publishing platforms does Lately integrate with?</h2>
<p class="txt">Lately integrates with <b><span>Hootsuite, Hootsuite Amplify</span></b> and <b><span>HubSpot Marketing Hub</span></b>, making it easy to publish our AI-generated content right from those platforms. More integration partners coming soon! If you have questions about how to connect your Lately account with your <b><span>Hootsuite, Hootsuite Amplify</span></b> or <b><span>HubSpot Marketing Hub</span></b> account, <span>just ask!</span> </p>
</div>
<div>
<h2 class="hcolor">What if I have a publishing platform that Lately doesn't yet integrate with?</h2>
<p class="txt">First, complain to that company that they should integrate with us ASAP! In the meantime, download your AI-generated results into a CSV spreadsheet and upload to wherever you wish.</p>
</div>
<div>
<h2 class="hcolor">Are there additional integrations?</h2>
<p class="txt">You betcha. In addition to <b><span>Hootsuite, Hootsuite Amplify</span></b> and <b><span>HubSpot Marketing Hub</span></b>, Lately also integrates with <b>UpContent</b>, <b>Grammarly</b> and <b>Bitly</b>.</p>
</div>
<div>
<h2 class="hcolor">Does Lately include employee advocacy tools?</h2>
<p class="txt">It sure does. You can syndicate Lately's AI-generated content to unlimited employee or brand accounts via our Enterprisely plan. Want a demo? Just ask! share optimal content with a Parent Account Add-On to any Enterprisely plans. Plus get advanced A.I. insights to power-boost meaningful engagement, enterprisewide.</p>
</div>
<div>
<h2 class="hcolor">Is there nonprofit pricing available?</h2>
<p class="txt">Yeppers, but only for annual contract deals. <b><span>Request a call with a Lately AI advocate to learn more.</span></b> </p>
</div>
<div>
<h2 class="hcolor">How does the AI work?</h2>
<p class="txt">Aha. The most fun question. Read all about it here.</p>
</div>
</div>
<div id="fot">
<div>
<h1>Ready to add that AI zing that'll make your social posts zoom?</h1>
<a href="getstarted.html"><button class="cs">GET STARTED</button></a> <button class="cs">SEE HOW IT WORKS</button>
</div>
</div>
<footer>
<div id="ftop">
<div>
<h3 class="tom">COMPANY</h3>
<a href="https://www.lately.ai/company/about"><p class="ty">About</p></a>
<p class="ty">Leadership</p>
<p class="ty">Professional Services</p>
<p class="ty">Press & News</p>
<p class="ty">Contact Us</p>
<h3 class="tom">PARTNERS & INTEGRATIONS</h3>
<p class="ty">HubSpot Marketing Hub</p>
<p class="ty">Hootsuite</p>
<p class="ty">UpContent</p>
</div>
<div>
<h3 class="tom">PRODUCT</h3>
<p class="ty">Pricing</p>
<p class="ty">Product Overview</p>
<p class="ty">AI Social Content Writer</p>
<p class="ty">Social Media Marketing</p>
<p class="ty">Social Selling</p>
<p class="ty">Social Media Analytics</p>
<p class="ty">Sample AI Autogenerator</p>
<p class="ty">Autogenerator Chrome Extension</p>
<p class="ty">Parent Accounts</p>
</div>
<div>
<h3 class="tom">RESOURCES</h3>
<p class="ty">Customer Stories</p>
<p class="ty">Ebooks</p>
<p class="ty">Blog</p>
<p class="ty">Help Center</p>
<h3 class="tom">LATELY OFFICE HOURS</h3>
<p class="ty">Lately Office Hours Sign-Up</p>
<p class="ty">Lately LIVE Replays</p>
<p class="ty">How to Position ANYTHING</p>
<p class="ty">Lately 101</p>
</div>
<div>
<h3 class="tom">INDUSTRIES</h3>
<i>Every Size</i>
<p class="ty">Global Enterprises</p>
<p class="ty">Franchises</p>
<p class="ty">Small Businesses</p>
<i>Every Industry</i>
<p class="ty">Technology</p>
<p class="ty">Professional Services</p>
<p class="ty">Financial Services</p>
<p class="ty">Media & Entertainment</p>
<p class="ty">News & Public Agencies</p>
<p class="ty">Consumer Brands</p>
<p class="ty">Education</p>
<p class="ty">Healthcare & Pharma</p>
<p class="ty">Social Media Agencies</p>
</div>
</div>
<div id="malafoot">
<div>
<a href="index.html"><img src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/5fd7e81a75428f60b5ff0d00_lately-footer-logo.svg" alt=""></a>
</div>
<div>
<a href="https://www.facebook.com/LatelyAI/"><img class="z" src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/5fd7ea98ca57d5a01f8b06ac_lately-footer-facebook-icon.svg" alt=""></a>
<a href="https://twitter.com/LatelyAI"><img class="z" src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/5fd7ea98d033dccb4e0c5c8a_lately-footer-twitter-icon.svg" alt=""></a>
<a href="https://www.linkedin.com/company/latelyai/"><img class="z" src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/5fd7ea98a46fb9298adb10cf_lately-footer-linkedin-icon.svg" alt="" ></a>
<a href="https://www.instagram.com/LatelyAI/"><img class="z" src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/5fd7ea981e42d6cdd21dc804_lately-footer-instagram-icon.svg" alt="" ></a>
<a href="https://www.youtube.com/LatelyAI"><img class="z" src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/5fd7ea98d97acfb972a65b4a_lately-footer-youtube-icon.svg" alt="" ></a>
<a href="https://lately.us6.list-manage.com/subscribe?u=394b90fbf3c246b1fbbc04d87&id=ad9e7691eb"><img class="z" src="https://global-uploads.webflow.com/5fd3c52ce5bc147a1f007ca4/5fd7ea98852e65824bc54cf9_lately-footer-email-icon.svg" alt="" ></a>
</div>
</div>
<div id="mata">
<h6>Terms ● Privacy</h6>
<h6>Copyright © 2022 Lately, Inc. Stone Ridge, NY, USA</h6>
</div>
</footer>