forked from themesberg/landwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
998 lines (976 loc) · 42.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DirectoryHQ</title>
<!-- Meta SEO -->
<meta name="title" content="DirectoryHQ" />
<meta
name="description"
content="Get high-quality leads from premium directories where your actual customers are."
/>
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="English" />
<!-- Social media share -->
<meta property="og:title" content="DirectoryHQ" />
<meta property="og:site_name" content="Stackai" />
<meta
property="og:description"
content="Get high-quality leads from premium directories where your actual customers are."
/>
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" />
<link href="./output.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Y30MMFBQYX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Y30MMFBQYX');
</script>
</head>
<body>
<header class="fixed w-full z-50">
<nav class="border-gray-200 bg-filter py-2.5 dark:bg-gray-900">
<div
class="flex flex-wrap items-center justify-between max-w-screen-xl px-4 mx-auto"
>
<a href="#" class="flex items-center">
<span
class="self-center text-xl font-semibold whitespace-nowrap dark:text-white"
>DirectoryHQ</span
>
</a>
<div class="flex items-center lg:order-2">
<a class="px-3 hidden md:block" href="https://www.producthunt.com/posts/directoryhq?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-directoryhq" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=385459&theme=light" alt="DirectoryHQ - 100+ directories to launch, promote & sell your product. | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
<a
href="#pricing"
class="relative inline-block text-lg group smooth-scroll"
>
<span
class="relative z-10 block px-5 py-3 overflow-hidden font-medium leading-tight text-gray-800 transition-colors duration-300 ease-out border-2 border-gray-900 rounded-lg group-hover:text-white"
>
<span
class="absolute inset-0 w-full h-full px-5 py-3 rounded-lg bg-gray-50"
></span>
<span
class="absolute left-0 w-48 h-48 -ml-2 transition-all duration-300 origin-top-right -rotate-90 -translate-x-full translate-y-12 bg-gray-900 group-hover:-rotate-180 ease"
></span>
<span class="relative">Get database</span>
</span>
<span
class="absolute bottom-0 right-0 w-full h-12 -mb-1 -mr-1 transition-all duration-200 ease-linear bg-gray-900 rounded-lg group-hover:mb-0 group-hover:mr-0"
data-rounded="rounded-lg"
></span>
</a>
</div>
</div>
</nav>
</header>
<!-- Start block -->
<section class="dark:bg-gray-900 w-full flex justify-center flex-col">
<div
class="grid max-w-screen-2xl px-4 pt-20 pb-8 mx-auto lg:gap-8 xl:gap-0 lg:py-16 lg:grid-cols-12 lg:pt-28"
>
<div class="mr-auto place-self-center lg:col-span-12 mt-11">
<div class="max-w-5xl">
<a class="px-3 sm:block md:hidden" href="https://www.producthunt.com/posts/directoryhq?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-directoryhq" target="_blank"><img class="m-auto mb-10" src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=385459&theme=light" alt="DirectoryHQ - 100+ directories to launch, promote & sell your product. | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
<h1
class="text-center mx-auto mb-4 text-[2rem] font-extrabold leading-none tracking-tight md:text-5xl xl:text-6xl dark:text-white"
>
Get
<span class="text-gradient">high-quality leads</span>
from premium directories where your
<span class="text-gradient2">actual customers</span>
are.
</h1>
<p
class="max-w-2xl text-center mx-auto mb-6 font-light text-gray-500 lg:mb-8 md:text-lg lg:text-xl dark:text-gray-400"
>
Explore the database of 100+ premium Software directories with
200M monthly visitors to promote, sell and grow your product.
</p>
<div class="flex items-center justify-center w-full">
<a
href="#pricing"
class="relative inline-block text-lg group smooth-scroll"
>
<span
class="relative z-10 block px-5 py-3 overflow-hidden font-medium leading-tight text-gray-800 transition-colors duration-300 ease-out border-2 border-gray-900 rounded-lg group-hover:text-white"
>
<span
class="absolute inset-0 w-full h-full px-5 py-3 rounded-lg bg-gray-50"
></span>
<span
class="absolute left-0 w-48 h-48 -ml-2 transition-all duration-300 origin-top-right -rotate-90 -translate-x-full translate-y-12 bg-gray-900 group-hover:-rotate-180 ease"
></span>
<span class="relative">Get database</span>
</span>
<span
class="absolute bottom-0 right-0 w-full h-12 -mb-1 -mr-1 transition-all duration-200 ease-linear bg-gray-900 rounded-lg group-hover:mb-0 group-hover:mr-0"
data-rounded="rounded-lg"
></span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- End block -->
<!-- Start block -->
<section class="bg-gray-50 dark:bg-gray-800 mt-8 p-4 sm:p-12 text-center">
<div class="mx-auto" style="max-width: 90%">
<h1
class="mb-4 text-4xl text-center font-extrabold tracking-tight text-gray-900 dark:text-white"
>
Have a sneak peek at
<span class="text-gradient"> 10 directories</span>
</h1>
<p class="m-8 text-center">Get 100+ more in the full version</p>
<iframe
src="https://airtable.com/embed/shrlo8bAjvDmx4ydS?backgroundColor=red&viewControls=on"
frameborder="0"
onmousewheel=""
width="100%"
height="733"
style="background: transparent; border: 1px solid #ccc"
></iframe>
<a
href="#pricing"
class="relative scroll-smooth mt-6 inline-flex items-center justify-center inline-block p-4 px-5 py-3 overflow-hidden font-medium text-indigo-600 rounded-lg shadow-2xl group"
>
<span
class="absolute top-0 left-0 w-40 h-40 -mt-10 -ml-3 transition-all duration-700 bg-red-500 rounded-full blur-md ease"
></span>
<span
class="absolute inset-0 w-full h-full transition duration-700 group-hover:rotate-180 ease"
>
<span
class="absolute bottom-0 left-0 w-24 h-24 -ml-10 bg-purple-500 rounded-full blur-md"
></span>
<span
class="absolute bottom-0 right-0 w-24 h-24 -mr-10 bg-pink-500 rounded-full blur-md"
></span>
</span>
<span class="relative text-white">Get full version</span>
</a>
</div>
</section>
<!-- End block -->
<section class="bg-white dark:bg-gray-900">
<div class="max-w-2xl pt-20 mx-auto p-8">
<h2
class="text-2xl text-center font-extrabold leading-none tracking-tight md:text-3xl xl:text-4xl dark:text-white"
>
<span class="text-gradient">Customer Acquisition</span> is no more a
pain in the SaaS.
</h2>
</div>
<div class="container mx-auto p-4">
<div
class="flex flex-row flex-wrap items-center justify-around gap-4 p-3 sm:p-12"
>
<div class="mt-6 max-w-lg">
<h3 class="text-2xl font-bold">List your product</h3>
<ol
class="p-6 border-l-4 border-blue-700 rounded-lg text-xl px-4 space-y-5 my-7 dark:border-gray-700"
>
<li class="flex space-x-3">
<span class="text-lg font-medium leading-tight text-gray-600">
Free listing in relevant directories for increased visibility
</span>
</li>
<li class="flex space-x-3">
<span class="text-lg font-medium leading-tight text-gray-600"
>Target specific industries and audiences for better
reach</span
>
</li>
<li class="flex space-x-3">
<span class="text-lg font-medium leading-tight text-gray-600"
>Expand your reach with listings in multiple locations</span
>
</li>
</ol>
</div>
<div class="w-[430px] aspect-square">
<img src="./Frame 3.png" alt="List your product" />
</div>
</div>
<div
class="flex flex-row flex-wrap items-center justify-around gap-4 p-3 sm:p-12"
>
<div class="mt-6 max-w-lg lg:order-2">
<h3 class="text-2xl font-bold">Get discovered</h3>
<ol
class="p-6 px-4 border-l-4 border-blue-700 rounded-lg text-xl space-y-5 my-7 dark:border-gray-700"
>
<li class="flex space-x-3">
<span class="text-lg font-medium leading-tight text-gray-600">
Drive high traffic and get discovered by ideal customers
</span>
</li>
<li class="flex space-x-3">
<span class="text-lg font-medium leading-tight text-gray-600"
>Generate quality leads, and optimize your listing with ads
and campaigns.</span
>
</li>
<li class="flex space-x-3">
<span class="text-lg font-medium leading-tight text-gray-600"
>Boost your SEO ranking and get featured in AI search engines.
</span>
</li>
</ol>
</div>
<div class="w-[430px] aspect-square lg:order-1">
<img
class="w-full h-fulf aspect-square"
src="./Frame 2.png"
alt="Get discovered"
/>
</div>
</div>
<div
class="flex flex-row flex-wrap items-center justify-around gap-4 p-3 sm:p-12"
>
<div class="mt-6 max-w-lg">
<h3 class="text-2xl font-bold">Drive sales and Increase revenue</h3>
<ol
class="p-6 border-l-4 border-blue-700 rounded-lg px-4 text-xl space-y-5 my-7 dark:border-gray-700"
>
<li class="flex space-x-3">
<span class="text-lg font-medium leading-tight text-gray-600">
Increase brand awareness and credibility by featuring reviews
and ratings
</span>
</li>
<li class="flex space-x-3">
<span class="text-lg font-medium leading-tight text-gray-600"
>Track your metrics and take informed decisions to dominate
your market</span
>
</li>
<li class="flex space-x-3">
<span class="text-lg font-medium leading-tight text-gray-600"
>Leverage branding, credibility, and market to drive more
sales.
</span>
</li>
</ol>
</div>
<div
class="w-[400px] aspect-square overflow-hidden rounded-2xl shadow-xl"
>
<img
class="w-full h-fulf aspect-square object-cover"
src="./image 3.png"
alt="Get discovered"
/>
</div>
</div>
</div>
</section>
<section class="bg-gray-50 p-6 pb-24">
<h2 class="max-w-5xl mx-auto text-3xl font-extrabold mt-20"></h2>
<h2
class="text-2xl text-center font-extrabold leading-none tracking-tight md:text-3xl xl:text-4xl dark:text-white"
>
Drive Greater ROI with Our Free Add-Ons
</h2>
<div
class="flex items-center justify-center flex-col sm:flex-row mt-16 gap-20"
>
<div
style="box-shadow: 0 15px 45px rgb(16 30 54 / 16%)"
class="w-96 rounded-lg overflow-hidden bg-white"
>
<div class="w-full aspect-video">
<img
class="w-full object-contain mt-[-20px] h-full overflow-hidden"
src="./image 1.png"
alt="User guide to get you started"
/>
</div>
<div class="p-8 text-2xl font-semibold leading-tight">
User guide to get you started
</div>
</div>
<div
style="box-shadow: 0 15px 45px rgb(16 30 54 / 16%)"
class="w-96 rounded-lg overflow-hidden bg-white"
>
<div class="w-full aspect-video">
<img
class="w-full object-contain mt-[-20px] h-full overflow-hidden"
src="./image 3.png"
alt="User guide to get you started"
/>
</div>
<div class="p-8 text-2xl font-semibold leading-tight">
Simple dashboards to manage and track listings
</div>
</div>
</div>
</section>
<!-- Start block -->
<section class="bg-white dark:bg-gray-800">
<div
class="max-w-screen-xl px-4 py-8 mx-auto lg:py-24 lg:px-6"
id="pricing"
>
<div class="max-w-screen-md mx-auto mb-8 text-center lg:mb-12">
<h2
class="mb-4 text-3xl font-extrabold tracking-tight text-gray-900 dark:text-white"
>
Pricing
</h2>
<p
class="mb-5 font-light text-gray-500 sm:text-xl dark:text-gray-400"
>
Grow faster with the right tools
</p>
</div>
<div
class="w-full flex flex-row flex-wrap gap-5 justify-center items-center"
>
<!-- Pricing Card -->
<div
style="
box-shadow: 0 4px 6px -2px rgb(16 24 40 / 3%),
0 11px 16px -4px rgb(16 24 40 / 8%);
border: 1px solid #dddfe3;
"
class="flex overflow-hidden flex-col max-w-md p-6 text-center text-gray-900 bg-white border border-gray-100 rounded-lg shadow dark:border-gray-600 xl:p-8 dark:bg-gray-800 dark:text-white"
>
<div
style="width: inherit"
class="bg-blue-800 ml-[-40px] mr-[-40px] mt-[-34px] text-white md:p-2 p-3"
>
Most popular plan
</div>
<div class="flex items-center flex-col justify-center my-8">
<h3 class="mb-4 text-2xl font-semibold">Pro</h3>
<span class="mr-2 text-5xl font-extrabold"
>$85
<small class="text-gray-500 dark:text-gray-400 text-base"
><del>$175</del></small
></span
>
</div>
<!-- List -->
<ul role="list" class="mb-8 space-y-4 text-left">
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span
>Airtable list of 110+ directories to get listed for
free.</span
>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Lifetime access</span>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span> User guide to get started</span>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>How to guide to optimize your listing</span>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Basic Dashboard to track your metrics and budget</span>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span
>Monthly updates include New directories, changes,
offers</span
>
</li>
</ul>
<a
href="https://directoryhq.lemonsqueezy.com/checkout?cart=dc114aae-b840-4211-9470-6f63adb1fcdb"
target="_blank"
class="inline-flex items-center justify-center h-12 px-6 font-medium tracking-wide text-white transition duration-200 bg-gray-900 rounded-lg hover:bg-gray-800 focus:shadow-outline focus:outline-none"
>
Get it
</a>
</div>
<!-- Pricing Card -->
<div
class="flex flex-col max-w-md p-6 text-center text-gray-900 bg-white border border-gray-100 rounded-lg shadow dark:border-gray-600 xl:p-8 dark:bg-gray-800 dark:text-white"
>
<div class="flex flex-col items-center justify-center my-8">
<h3 class="mb-4 text-2xl font-semibold">Basic</h3>
<span class="mr-2 text-5xl font-extrabold"
>$45
<small class="text-gray-500 dark:text-gray-400 text-base"
><del>$100</del></small
></span
>
</div>
<!-- List -->
<ul role="list" class="mb-8 space-y-4 text-left">
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span
>Airtable list of 110 directories to get listed for
free.</span
>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>Lifetime access</span>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>User guide to get started</span>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-green-500 dark:text-green-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
clip-rule="evenodd"
></path>
</svg>
<span>How to guide to optimize your listing</span>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-red-500 dark:text-red-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707,5.293a1,1,0,0,0-1.414,0L10,8.586,5.707,4.293a1,1,0,0,0-1.414,1.414L8.586,10,4.293,14.293a1,1,0,0,0,1.414,1.414L10,11.414l4.293,4.293a1,1,0,0,0,1.414-1.414L11.414,10Z"
clip-rule="evenodd"
></path>
</svg>
<span>Basic Dashboard to track your metrics and budget</span>
</li>
<li class="flex items-center space-x-3">
<!-- Icon -->
<svg
class="flex-shrink-0 w-5 h-5 text-red-500 dark:text-red-400"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M16.707,5.293a1,1,0,0,0-1.414,0L10,8.586,5.707,4.293a1,1,0,0,0-1.414,1.414L8.586,10,4.293,14.293a1,1,0,0,0,1.414,1.414L10,11.414l4.293,4.293a1,1,0,0,0,1.414-1.414L11.414,10Z"
clip-rule="evenodd"
></path>
</svg>
<span
>Monthly updates include New directories, changes,
offers</span
>
</li>
</ul>
<a
href="https://directoryhq.lemonsqueezy.com/checkout?cart=dc114aae-b840-4211-9470-6f63adb1fcdb"
target="_blank"
class="inline-flex items-center justify-center h-12 px-6 font-medium tracking-wide text-white transition duration-200 bg-gray-900 rounded-lg hover:bg-gray-800 focus:shadow-outline focus:outline-none"
>
Get it
</a>
</div>
<!-- Pricing Card -->
</div>
</div>
</section>
<!-- End block -->
<!-- Start block -->
<section class="bg-gray-50 dark:bg-gray-900">
<div class="max-w-screen-xl px-4 pt-7 pb-8 mx-auto lg:pb-24 lg:px-6">
<h2
class="mb-6 text-3xl font-extrabold tracking-tight text-center text-gray-900 lg:mb-8 lg:text-3xl dark:text-white"
>
Frequently asked questions
</h2>
<div class="max-w-screen-md mx-auto">
<div
id="accordion-flush"
data-accordion="collapse"
data-active-classes="bg-white dark:bg-gray-900 text-gray-900 dark:text-white"
data-inactive-classes="text-gray-500 dark:text-gray-400"
>
<h3 id="accordion-flush-heading-1">
<button
type="button"
class="flex items-center justify-between w-full py-5 font-medium text-left text-gray-900 bg-white border-b border-gray-200 dark:border-gray-700 dark:bg-gray-900 dark:text-white"
data-accordion-target="#accordion-flush-body-1"
aria-expanded="true"
aria-controls="accordion-flush-body-1"
>
<span>What is a “Premium Directory”?</span>
<svg
data-accordion-icon=""
class="w-6 h-6 rotate-180 shrink-0"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</h3>
<div
id="accordion-flush-body-1"
class=""
aria-labelledby="accordion-flush-heading-1"
>
<div class="py-5 border-b border-gray-200 dark:border-gray-700">
<p class="mb-2 text-gray-500 dark:text-gray-400">
Premium Directories are high-quality directories that meet our
criteria, such as visits of more than 5K, domain authority,
safe links, legit contact information, and no spam, ensuring
your listings are seen by your ideal audience.
</p>
</div>
</div>
<h3 id="accordion-flush-heading-2">
<button
type="button"
class="flex items-center justify-between w-full py-5 font-medium text-left text-gray-500 border-b border-gray-200 dark:border-gray-700 dark:text-gray-400"
data-accordion-target="#accordion-flush-body-2"
aria-expanded="false"
aria-controls="accordion-flush-body-2"
>
<span>Can I find directories myself?</span>
<svg
data-accordion-icon=""
class="w-6 h-6 shrink-0"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</h3>
<div
id="accordion-flush-body-2"
class="hidden"
aria-labelledby="accordion-flush-heading-2"
>
<div class="py-5 border-b border-gray-200 dark:border-gray-700">
<p class="mb-2 text-gray-500 dark:text-gray-400">
Yes, you can find directories yourself, but trust us you won’t
like that process. We’ve spent 100+ hours, and sleepless
nights filtering, verifying, and curating this list ensuring
you’ll get a comprehensive list of relevant directories to
promote your product and get customers.
</p>
</div>
</div>
<h3 id="accordion-flush-heading-3">
<button
type="button"
class="flex items-center justify-between w-full py-5 font-medium text-left text-gray-500 border-b border-gray-200 dark:border-gray-700 dark:text-gray-400"
data-accordion-target="#accordion-flush-body-3"
aria-expanded="false"
aria-controls="accordion-flush-body-3"
>
<span
>Do you charge anything else beyond a one-time payment?</span
>
<svg
data-accordion-icon=""
class="w-6 h-6 shrink-0"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</h3>
<div
id="accordion-flush-body-3"
class="hidden"
aria-labelledby="accordion-flush-heading-3"
>
<div class="py-5 border-b border-gray-200 dark:border-gray-700">
<p class="mb-2 text-gray-500 dark:text-gray-400">
No. You only pay once to get lifetime access. We don’t get any
commission either. If you pick “DirectoryHQ + Monthly Updates”
you will get monthly updates for 6 months. Still, for a
one-time payment. Custom solutions come up with custom
pricing.
</p>
</div>
</div>
<h3 id="accordion-flush-heading-4">
<button
type="button"
class="flex items-center justify-between w-full py-5 font-medium text-left text-gray-500 border-b border-gray-200 dark:border-gray-700 dark:text-gray-400"
data-accordion-target="#accordion-flush-body-4"
aria-expanded="false"
aria-controls="accordion-flush-body-4"
>
<span
>Do you guarantee that every directory will accept my listing
or sponsorship offer?
</span>
<svg
data-accordion-icon=""
class="w-6 h-6 shrink-0"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</h3>
<div
id="accordion-flush-body-4"
class="hidden"
aria-labelledby="accordion-flush-heading-4"
>
<div class="py-5 border-b border-gray-200 dark:border-gray-700">
<p class="mb-2 text-gray-500 dark:text-gray-400">
No. The decision to accept a listing or sponsorship offer
ultimately lies with the directory owner or manager. However,
we can assure you that as long as your product is genuine and
doesn't engage in any spammy or malicious practices, your
chances of rejection are close to zero.
</p>
</div>
</div>
<h3 id="accordion-flush-heading-5">
<button
type="button"
class="flex items-center justify-between w-full py-5 font-medium text-left text-gray-500 border-b border-gray-200 dark:border-gray-700 dark:text-gray-400"
data-accordion-target="#accordion-flush-body-5"
aria-expanded="false"
aria-controls="accordion-flush-body-5"
>
<span>How do monthly updates work? </span>
<svg
data-accordion-icon=""
class="w-6 h-6 shrink-0"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</h3>
<div
id="accordion-flush-body-5"
class="hidden"
aria-labelledby="accordion-flush-heading-5"
>
<div class="py-5 border-b border-gray-200 dark:border-gray-700">
<p class="mb-2 text-gray-500 dark:text-gray-400">
Monthly updates include new and relevant directories that we
have added to our list, along with any changes or updates to
existing directories. Next Update: April 15 - 50 New
directories added.
</p>
</div>
</div>
<h3 id="accordion-flush-heading-6">
<button
type="button"
class="flex items-center justify-between w-full py-5 font-medium text-left text-gray-500 border-b border-gray-200 dark:border-gray-700 dark:text-gray-400"
data-accordion-target="#accordion-flush-body-6"
aria-expanded="false"
aria-controls="accordion-flush-body-6"
>
<span
>What if I don't know the process of listing and
promoting?</span
>
<svg
data-accordion-icon=""
class="w-6 h-6 shrink-0"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</h3>
<div
id="accordion-flush-body-6"
class="hidden"
aria-labelledby="accordion-flush-heading-6"
>
<div class="py-5 border-b border-gray-200 dark:border-gray-700">
<p class="mb-2 text-gray-500 dark:text-gray-400">
No problem! We provide a guide to get you started, along with
a how-to guide and a basic metric dashboard to help you
kick-start the process with ease.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End block -->
<section class="cta-gradient w-full px-3 sm:px-6 py-28">
<div class="max-w-5xl mx-auto">
<h3 class="font-extrabold text-4xl">Don't settle for one platform</h3>
<p class="mt-3 text-xl max-w-md mx-auto">
Explore 100+ alternatives to Product Hunt to get your next customer
</p>
</div>
<div class="mt-10">
<a
href="#pricing"
class="inline-flex smooth-scroll items-center justify-center h-12 px-6 font-medium tracking-wide text-white transition duration-200 bg-gray-900 rounded-lg hover:bg-gray-800 focus:shadow-outline focus:outline-none"
>
Get database
</a>
</div>
</section>
<footer class="bg-white dark:bg-gray-800">
<div class="max-w-screen-xl mx-auto pb-6">
<hr
class="my-6 border-gray-200 sm:mx-auto dark:border-gray-700 lg:my-8"
/>
<div class="text-center">
<a
href="#"
class="flex items-center justify-center mb-5 text-2xl font-semibold text-gray-900 dark:text-white"
>
DirectoryHQ
</a>
<ul class="flex justify-center mt-5 space-x-5">
<li>
<a
href="https://twitter.com/__sushil_"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white dark:text-gray-400"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
class="w-6"
>
<path
d="M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23Z"
/>
</svg>
</a>
</li>
<li>
<a
href="mailto:sushil@stackai.co"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white dark:text-gray-400"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-6"
>
<title>Mail</title>
<path
d="M424 80H88a56.06 56.06 0 00-56 56v240a56.06 56.06 0 0056 56h336a56.06 56.06 0 0056-56V136a56.06 56.06 0 00-56-56zm-14.18 92.63l-144 112a16 16 0 01-19.64 0l-144-112a16 16 0 1119.64-25.26L256 251.73l134.18-104.36a16 16 0 0119.64 25.26z"
></path></svg
></a>
</li>
<li>
<a
href="http://linkedin.com/in/sushil-kumar08"
target="_blank"
rel="noreferrer"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white dark:text-gray-400"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="w-6"
>
<title>Logo Linkedin</title>
<path
d="M444.17 32H70.28C49.85 32 32 46.7 32 66.89v374.72C32 461.91 49.85 480 70.28 480h373.78c20.54 0 35.94-18.21 35.94-38.39V66.89C480.12 46.7 464.6 32 444.17 32zm-273.3 373.43h-64.18V205.88h64.18zM141 175.54h-.46c-20.54 0-33.84-15.29-33.84-34.43 0-19.49 13.65-34.42 34.65-34.42s33.85 14.82 34.31 34.42c-.01 19.14-13.31 34.43-34.66 34.43zm264.43 229.89h-64.18V296.32c0-26.14-9.34-44-32.56-44-17.74 0-28.24 12-32.91 23.69-1.75 4.2-2.22 9.92-2.22 15.76v113.66h-64.18V205.88h64.18v27.77c9.34-13.3 23.93-32.44 57.88-32.44 42.13 0 74 27.77 74 87.64z"
></path></svg
></a>
</li>
</ul>
</div>
</div>
</footer>
<a
class="dhq-badge"
target="_blank"
href="https://stackai.co?utm_campaign=brand"
>Powered by stackai.co</a
>
<script src="https://unpkg.com/flowbite@1.4.1/dist/flowbite.js"></script>
<script>
// Smooth scroll on click
const links = document.querySelectorAll(".smooth-scroll");
links.forEach((link) => {
link.addEventListener("click", (event) => {
event.preventDefault();
const href = link.getAttribute("href");
const target = document.querySelector(href);
target.scrollIntoView({
behavior: "smooth",
});
});
});
</script>
</body>
</html>