-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1152 lines (1067 loc) · 59.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<!--====== Required meta tags ======-->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Find your perfect match and experience the thrill of romance with BoomBoomTalk.xyz, the leading dating website and app.
Join our vibrant community for exciting adventures in love. Sign up now and explore a world of endless possibilities in the realm of dating">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--====== Title ======-->
<title>Boom Boom Talk</title>
<!-- <title>Spotmies App Landing HTML Template</title> -->
<!--====== Favicon Icon ======-->
<link rel="shortcut icon" href="assets/pictures/bbtlogo.png" type="image/png">
<!--====== Bootstrap css ======-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!--====== Fontawesome css ======-->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!--====== Magnific Popup css ======-->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!--====== Magnific Popup css ======-->
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<!--====== Slick css ======-->
<link rel="stylesheet" href="assets/css/slick.css">
<!--====== Default css ======-->
<link rel="stylesheet" href="assets/css/custom-animation.css">
<link rel="stylesheet" href="assets/css/default.css">
<!--====== Style css ======-->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!--====== PRELOADER PART START ======-->
<div class="loader-wrap">
<div class="preloader">
<div class="preloader-close">Preloader Close</div>
</div>
<div class="layer layer-one"><span class="overlay"></span></div>
<div class="layer layer-two"><span class="overlay"></span></div>
<div class="layer layer-three"><span class="overlay"></span></div>
</div>
<!--====== PRELOADER PART ENDS ======-->
<!--====== OFFCANVAS MENU PART START ======-->
<div class="off_canvars_overlay">
</div>
<div class="offcanvas_menu">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="offcanvas_menu_wrapper">
<div class="canvas_close">
<a href="javascript:void(0)"><i class="fa fa-times"></i></a>
</div>
<div class="offcanvas-brand text-center mb-40">
<img src="assets/pictures/bbtlogo.png" alt="">
</div>
<div id="menu" class="text-left ">
<ul class="offcanvas_main_menu">
<li class="menu-item-has-children active">
<a href="#">Home</a>
<!-- <ul class="sub-menu">
<li><a href="index.html">Home 1</a></li>
<li><a href="index-2.html">Home 2</a></li>
<li><a href="index-3.html">Home 3</a></li>
<li><a href="index-4.html">Home 4</a></li>
<li><a href="index-5.html">Home 5</a></li>
<li><a href="index-6.html">Home 6</a></li>
<li><a href="index-7.html">Home 7</a></li>
<li><a href="index-8.html">Home 8</a></li>
<li><a href="index-9.html">Home 9</a></li>
</ul> -->
</li>
<li class="menu-item-has-children active">
<a href="#service">Benifits</a>
</li>
<li class="menu-item-has-children active">
<a href="#features">Key Features</a>
</li>
<!-- <li class="menu-item-has-children active">
<a href="#testimonial">Testimonial</a>
</li> -->
<!-- <li class="menu-item-has-children active">
<a href="#">News</a>
<ul class="sub-menu">
<li><a href="index.html">news page</a></li>
<li><a href="index-2.html">Single News</a></li>
</ul> -->
</li>
<li class="menu-item-has-children active">
<a href="#contact">Contact</a>
</li>
</ul>
</div>
<div class="offcanvas-social">
<ul class="text-center">
<li><a href="$"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="$"><i class="fab fa-twitter"></i></a></li>
<li><a href="$"><i class="fab fa-instagram"></i></a></li>
<li><a href="$"><i class="fab fa-dribbble"></i></a></li>
</ul>
</div>
<div class="footer-widget-info">
<!-- <ul>
<li><a href="#"><i class="fal fa-envelope"></i> support@spotmies.com</a></li>
<li><a href="#"><i class="fal fa-phone"></i> +(642) 342 762 44</a></li>
<li><a href="#"><i class="fal fa-map-marker-alt"></i> 442 Belle Terre St Floor 7, San Francisco, AV 4206</a></li>
</ul> -->
<ul>
<li><b>Boomboom talk llc</b></li>
<li>San José, Escazú, San Rafael,</li>
<li>del Centro Comercial La Paco 300 metros norte,</li>
<li> Plaza Florencia, local diez.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!--====== OFFCANVAS MENU PART ENDS ======-->
<!--====== PART START ======-->
<header class="spotmies-header-area spotmies-header-3-area spotmies-sticky">
<div class="container">
<div class="header-nav-box header-nav-box-3">
<div class="row align-items-center">
<div class="col-lg-2 col-md-4 col-sm-5 col-6 order-1 order-sm-1">
<div class="spotmies-logo-box">
<a href="#">
<img src="assets/pictures/bbtlogo.png" alt="">
</a>
</div>
</div>
<div class="col-lg-6 col-md-1 col-sm-1 order-3 order-sm-2">
<div class="spotmies-header-main-menu">
<ul>
<li>
<a href="">Home</a>
<!-- <i class="fal fa-angle-down"></i>
<ul class="sub-menu">
<li><a href="index.html">Home 1</a></li>
<li><a href="index-2.html">Home 2</a></li>
<li><a href="index-3.html">Home 3</a></li>
<li><a href="index-4.html">Home 4</a></li>
<li><a href="index-5.html">Home 5</a></li>
<li><a href="index-6.html">Home 6</a></li>
<li><a href="index-7.html">Home 7</a></li>
<li><a href="index-8.html">Home 8</a></li>
<li><a href="index-9.html">Home 9</a></li>
<li><a href="index-10.html">Home 10</a></li>
<li><a href="index-rtl.html">Home Rtl</a></li>
<li><a href="index-dark.html">Home Dark</a></li>
</ul> -->
</li>
<li>
<a href="#service">Benifits</a>
</li>
<li>
<a href="#features">Key Features</a>
<!--<i class="fal fa-angle-down"></i>
<ul class="sub-menu">
<li><a href="about-us.html">About Us 1</a></li>
<li><a href="about-us-2.html">About Us 2</a></li>
<li><a href="error.html">Error</a></li>
<li><a href="shop.html">shop</a></li>
<li><a href="shop-details.html">Shop Details</a></li>
</ul> -->
</li>
<!-- <li>
<a href="#">News <i class="fal fa-angle-down"></i></a>
<ul class="sub-menu">
<li><a href="news.html">News Page</a></li>
<li><a href="single-news.html">Single News</a></li>
</ul>
</li> -->
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
<div class="col-lg-4 col-md-7 col-sm-6 col-6 order-2 order-sm-3">
<div class="spotmies-btn-box text-right">
<!-- <a class="login-btn" href="#"><i class="fal fa-user"></i> Login</a> -->
<a class="main-btn ml-30"
href="https://play.google.com/store/apps/details?id=com.boom_boom_talk">Get Started</a>
<div style="color: black;" class="toggle-btn ml-30 canvas_open d-lg-none d-block">
<i class="fa fa-bars"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!--====== PART ENDS ======-->
<!--====== APPIE HERO PART START ======-->
<section class="spotmies-hero-area spotmies-hero-4-area">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5">
<div class="spotmies-hero-content spotmies-hero-content-4">
<!-- <span>30 Days Free Trial</span> -->
<h1 class="spotmies-title" style="color: white;">Embrace Love's Journey</h1>
<p style="color: azure;">Limitless opportunities to find your ONE</p>
<a class="main-btn"
href="https://play.google.com/store/apps/details?id=com.boom_boom_talk">Download Now</a>
</div>
</div>
<div class="col-lg-7">
<div class="spotmies-hero-thumb spotmies-hero-thumb-4">
<img src="assets/pictures/pic1.png" alt="">
<div class="hero-dot">
<img src="assets/images/hero-dot.png" alt="">
</div>
</div>
</div>
</div>
</div>
<div class="hero-shape-1">
<img src="assets/images/shape/shape-10.png" alt="">
</div>
</section>
<!-- <section class="spotmies-hero-area spotmies-hero-3-area">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="spotmies-hero-content text-center">
<h1 class="spotmies-title">Discover.Connect. Love </h1>
<p>Limitless opportunities to find your ONE</p> -->
<!-- <div class="hero-btns">
<a class="main-btn" href="#">Get a Quote</a>
<a class="spotmies-video-popup" href="https://www.youtube.com/watch?v=EE7NqzhMDms"><i class="fas fa-play"></i> Play Video</a>
</div> -->
<!-- <div class="thumb mt-0 wow animated fadeInUp" data-wow-duration="2000ms" data-wow-delay="400ms">
<img src="assets/pictures/pic1.png" alt="">
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--====== APPIE HERO PART ENDS ======-->
<!--====== APPIE SERVICES PART START ======-->
<section class="spotmies-service-area spotmies-service-3-area pt-60 pb-100" id="service">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="spotmies-section-title text-center">
<h3 class="spotmies-title">Benefits</h3>
<p>"Love Beyond Boundaries: Unleash the Power of Meaningful Connections!"</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="spotmies-single-service spotmies-single-services-3 text-center mt-30 wow animated fadeInUp"
data-wow-duration="2000ms" data-wow-delay="200ms">
<div class="icon">
<img src="assets/pictures/icon1.gif" alt="">
</div>
<h4 class="spotmies-title">Cross-Border Connections</h4>
<p>Global dating platform fosters connections, transcending borders and cultures.</p>
<!-- <a href="#">Read More <i class="fal fa-arrow-right"></i></a> -->
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="spotmies-single-service spotmies-single-services-3 text-center mt-30 item-2 wow animated fadeInUp"
data-wow-duration="2000ms" data-wow-delay="400ms" style="height: 350px;">
<div class="icon">
<img src="assets/pictures/icon2.png" alt="">
</div>
<h4 class="spotmies-title">Trust & Transparency</h4>
<p>Blockchain fosters dating trust through transparent, auditable transactions & interactions.
</p>
<!-- <a href="#">Read More <i class="fal fa-arrow-right"></i></a> -->
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="spotmies-single-service spotmies-single-services-3 text-center mt-30 item-3 wow animated fadeInUp"
data-wow-duration="2000ms" data-wow-delay="600ms">
<div class="icon">
<img src="assets/pictures/icon3.gif" alt="">
</div>
<h4 class="spotmies-title">Incentivized Engagement</h4>
<p>Blockchain builds dating trust via transparent, auditable interactions & transactions.</p>
<!-- <a href="#">Read More <i class="fal fa-arrow-right"></i></a> -->
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="spotmies-single-service spotmies-single-services-3 text-center mt-30 item-4 wow animated fadeInUp"
data-wow-duration="2000ms" data-wow-delay="800ms" style="height: 350px;">
<div class="icon">
<img src="assets/pictures/icon4.png" alt="">
</div>
<h4 class="spotmies-title">Privacy & Security</h4>
<p>Web 3 tech ensures secure data, empowers user control, avoids breaches. </p>
<!-- <a href="#">Read More <i class="fal fa-arrow-right"></i></a> -->
</div>
</div>
</div>
</div>
</section>
<!--====== APPIE SERVICES PART ENDS ======-->
<!--====== APPIE FUN FACT PART START ======-->
<!-- <section class="spotmies-fun-fact-area">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="spotmies-fun-fact-box wow animated fadeInUp" data-wow-duration="2000ms" data-wow-delay="400ms">
<div class="row r">
<div class="col-lg-6">
<div class="spotmies-fun-fact-content">
<h3 class="title">Get started with Spotmies Template.</h3>
<p>The app provides design and digital marketing, applied arts can include industrial design</p>
<div class="row">
<div class="col-sm-4">
<div class="spotmies-fun-fact-item">
<h4 class="title">700k</h4>
<span>App Downloads</span>
</div>
</div>
<div class="col-sm-4">
<div class="spotmies-fun-fact-item">
<h4 class="title">476+</h4>
<span>Average Review</span>
</div>
</div>
<div class="col-sm-4">
<div class="spotmies-fun-fact-item">
<h4 class="title">30M</h4>
<span>Active Users</span>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="spotmies-fun-fact-play">
<a class="spotmies-video-popup" href="https://www.youtube.com/watch?v=EE7NqzhMDms"><i class="fas fa-play"></i></a>
<img src="assets/images/fun-fact-thumb.png" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!--====== APPIE FUN FACT PART ENDS ======-->
<!--====== APPIE ABOUT 3 PART START ======-->
<section class="spotmies-about-3-area pt-100 pb-100" id="features">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="spotmies-about-thumb-3 wow animated fadeInLeft" data-wow-duration="2000ms"
data-wow-delay="400ms">
<img src="assets/pictures/pic2.png" alt="">
</div>
</div>
<div class="col-lg-6">
<div class="spotmies-traffic-title">
<h3 class="title">Key Features</h3>
<!-- <p>He nicked it tickety boo harry the cras bargy chap mush spiffing spend a penny the full monty
burke butty.</p> -->
</div>
<div class="row">
<div class="col-sm-6">
<div class="spotmies-traffic-service mb-30">
<div class="icon">
<img style="height: 40px; width: 40px;" src="assets/pictures/icon6.png" alt="">
</div>
<h5 class="title">Decentralized Identity Verification</h5>
<p>Implement a decentralized identity verification system using blockchain technology.
Users can securely verify their identity and create a trusted profile.</p>
</div>
</div>
<div class="col-sm-6">
<div class="spotmies-traffic-service item-2 mb-30">
<div class="icon">
<img style="height: 40px; width: 40px;" src="assets/pictures/icon5.png" alt="">
</div>
<h5 class="title">
Smart Contract-Based Matchmaking</h5>
<p>Utilize smart contracts to facilitate matchmaking between users based on specific
criteria, preferences, and compatibility algorithms.</p>
</div>
</div>
<!-- <div class="col-lg-12">
<div class="traffic-btn mt-50">
<a class="main-btn" href="#">Learn More <i class="fal fa-arrow-right"></i></a>
</div>
</div> -->
</div>
</div>
</div>
<div class="row align-items-center mt-100 flex-column-reverse flex-lg-row">
<div class="col-lg-6">
<div class="spotmies-traffic-title">
<!-- <h3 class="title">Browse over 40k Apps over the world</h3> -->
<!-- <p>He nicked it tickety boo harry the cras bargy chap mush spiffing spend a penny the full monty burke butty.</p> -->
</div>
<div class="row">
<div class="col-sm-6">
<div class="spotmies-traffic-service mb-30 item-3">
<div class="icon">
<img style="height: 40px; width: 40px;" src="assets/pictures/icon7.png" alt="">
</div>
<h5 class="title">Crypto Wallet Integration</h5>
<p> This feature enables seamless transactions within the dating app ecosystem, such as
purchasing premium features or tipping other users</p>
</div>
</div>
<div class="col-sm-6">
<div class="spotmies-traffic-service item-2 mb-30 item-4">
<div class="icon">
<img style="height: 40px; width: 40px;" src="assets/pictures/icon8.png" alt="">
</div>
<h5 class="title">Decentralized Data Storage</h5>
<p>Leverage decentralized storage solutions, such as IPFS to store user data securely.
It reduces the risk of data breaches and ensures user control over their personal
information.</p>
</div>
</div>
<!-- <div class="col-lg-12">
<div class="traffic-btn mt-50">
<a class="main-btn" href="#">Learn More <i class="fal fa-arrow-right"></i></a>
</div>
</div> -->
</div>
</div>
<div class="col-lg-6">
<div class="spotmies-about-thumb-3 text-right wow animated fadeInRight" data-wow-duration="2000ms"
data-wow-delay="400ms">
<img src="assets/pictures/pic3.png" alt="">
</div>
</div>
</div>
</div>
</section>
<!--====== APPIE ABOUT 3 PART ENDS ======-->
<!--====== APPIE SHOWCASE PART START ======-->
<section class="spotmies-showcase-area ">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="spotmies-section-title text-center">
<h3 class="spotmies-title">Creative app showcase</h3>
<p>The app provides the pepole to make matchmaking.</p>
</div>
</div>
</div>
<div class="row spotmies-showcase-slider">
<div class="col-lg-3">
<div class="spotmies-showcase-item mt-30">
<a class="spotmies-image-popup" href="assets/pictures/screen1.png"><img
src="assets/pictures/screen1.png" alt=""></a>
</div>
</div>
<div class="col-lg-3">
<div class="spotmies-showcase-item mt-30">
<a class="spotmies-image-popup" href="assets/pictures/screen2.png"><img
src="assets/pictures/screen2.png" alt=""></a>
</div>
</div>
<div class="col-lg-3">
<div class="spotmies-showcase-item mt-30">
<a class="spotmies-image-popup" href="assets/pictures/login.png"><img
src="assets/pictures/login.png" alt=""></a>
</div>
</div>
<div class="col-lg-3">
<div class="spotmies-showcase-item mt-30">
<a class="spotmies-image-popup" href="assets/pictures/screen3.png"><img
src="assets/pictures/screen3.png" alt=""></a>
</div>
</div>
<div class="col-lg-3">
<div class="spotmies-showcase-item mt-30">
<a class="spotmies-image-popup" href="assets/pictures/screen4.png"><img
src="assets/pictures/screen4.png" alt=""></a>
</div>
</div>
</div>
</div>
<div class="showcase-shape-1">
<img src="assets/images/shape/shape-14.png" alt="">
</div>
<div class="showcase-shape-2">
<img src="assets/images/shape/shape-13.png" alt="">
</div>
<div class="showcase-shape-3">
<img src="assets/images/shape/shape-12.png" alt="">
</div>
<div class="showcase-shape-4">
<img src="assets/images/shape/shape-15.png" alt="">
</div>
</section>
<!--====== APPIE SHOWCASE PART ENDS ======-->
<!--====== APPIE DOWNLOAD 3 PART START ======-->
<section class="spotmies-hero-area spotmies-hero-6-area">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="spotmies-hero-thumb-6">
<div class="thumb wow animated fadeInUp" data-wow-duration="1000ms" data-wow-delay="600ms">
<img src="assets/pictures/download.png" alt="">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="spotmies-hero-content spotmies-hero-content-6">
<!-- <span>Welcome To Creative App.</span> -->
<h1 class="spotmies-title">
Get started now.</h1>
<!-- <p>Lost the plot so I said nancy boy I don't want no agro bleeder bum bag easy peasy cheesed off cheers ruddy.</p> -->
<p>Boom Boom Talk is at the forefront of digital dating technology. Learn about our cutting-edge
Web3 integration features and how they can enhance your dating experience.</p>
<ul>
<!-- <li><a href="#"><i class="fab fa-apple"></i> <span>Available on the <span>App Store</span></span></a></li> -->
<li><a class="item-2"
href="https://play.google.com/store/apps/details?id=com.boom_boom_talk"><i
class="fab fa-google-play"></i> <span>Available on the
<span>Google Play</span></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="spotmies-download-3-area pt-100" id="download">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="spotmies-section-title text-center">
<h3 class="spotmies-title">Download app today!</h3>
<p>Download app for Andraoid today — it's free.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="spotmies-download-3-box mt-30 mr-20 wow animated fadeInLeft" data-wow-duration="2000ms" data-wow-delay="200ms">
<div class="content">
<h4 class="title">Android</h4>
<p>Download app for Android today — it's free.</p>
<a class="main-btn" href="#"><i class="fab fa-google-play"></i>Download for Android</a>
</div>
<div class="thumb text-center">
<img src="assets/images/download-thumb-1.png" alt="">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="spotmies-download-3-box mt-30 ml-20 wow animated fadeInRight" data-wow-duration="2000ms" data-wow-delay="400ms">
<div class="content">
<h4 class="title">iOS & iPadOS</h4>
<p>Download app for iOS today — it's free.</p>
<a class="main-btn main-btn-2" href="#"><i class="fab fa-apple"></i>Download for iOS</a>
</div>
<div class="thumb text-right">
<img src="assets/images/download-thumb-2.png" alt="">
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--====== APPIE DOWNLOAD 3 PART ENDS ======-->
<!--====== ABOUT-US PART START ======-->
<div class="spotmies-faq-8-area pt-100 pb-100">
<div class="container">
<div class="row">
<div class="col-lg-5">
<div class="spotmies-section-title">
<h3 class="spotmies-title">How it works</h3>
<p>Welcome to Boom Boom Talk, where love awaits you! We've designed our platform to make your
journey to finding that special someone as effortless and enjoyable as possible. Here's how
it works:</p>
</div>
<div class="faq-accordion wow fadeInRight mt-30" data-wow-duration="1500ms">
<div class="accrodion-grp wow fadeIn" data-wow-duration="1500ms" data-grp-name="faq-accrodion">
<div class="accrodion active ">
<div class="accrodion-inner">
<div class="accrodion-title">
<h4> Register</h4>
</div>
<div class="accrodion-content">
<div class="inner">
<p>Enjoy unlimited changes to finding your dream partner by registering with
the ultimate dating app.</p>
</div>
<!-- /.inner -->
</div>
</div>
<!-- /.accrodion-inner -->
</div>
<div class="accrodion ">
<div class="accrodion-inner">
<div class="accrodion-title">
<h4>Connect</h4>
</div>
<div class="accrodion-content">
<div class="inner">
<p>Explore various ways to connect with people across the world to find your
life partner.</p>
</div>
<!-- /.inner -->
</div>
</div>
<!-- /.accrodion-inner -->
</div>
<div class="accrodion ">
<div class="accrodion-inner">
<div class="accrodion-title">
<h4>Chat</h4>
</div>
<div class="accrodion-content">
<div class="inner">
<p>Enjoy unending chatting while expressing your thoughts and feelings from
lighthearted to serious discussions.
</p>
</div>
<!-- /.inner -->
</div>
</div>
<!-- /.accrodion-inner -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="faq-play-box">
<!-- <div class="play-btn">
<a class="spotmies-video-popup" href="https://www.youtube.com/watch?v=EE7NqzhMDms"><i
class="fas fa-play"></i></a>
</div>
<div class="faq-play-counter">
<div class="box-1">
<h4 class="title">700k</h4>
<span>App Downloads</span>
</div>
<div class="box-1 box-2">
<h4 class="title">700k</h4>
<span>App Downloads</span>
</div>
</div> -->
</div>
</div>
<!--====== ABOUT-US PART ENDS ======-->
<!-- Contact Start -->
<section class="contact-section" id="contact">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="contact--info-area">
<h3>Get in touch</h3>
<p>
Looking for help? Fill the form and start a new adventure.
</p>
<div class="single-info">
<h5>Headquaters</h5>
<p>
<i class="fal fa-home"></i>
744 New York Ave, Brooklyn, Kings,<br> New York 10224
</p>
</div>
<div class="single-info">
<h5>Phone</h5>
<p>
<i class="fal fa-phone"></i>
(+642) 245 356 432<br>
(+420) 336 476 328
</p>
</div>
<div class="single-info">
<h5>Support</h5>
<p>
<i class="fal fa-envelope"></i>
bisy@support.com<br>
help@education.com
</p>
</div>
<div class="ab-social">
<h5>Follow Us</h5>
<a class="fac" href="#"><i class="fab fa-facebook-f"></i></a>
<a class="twi" href="#"><i class="fab fa-twitter"></i></a>
<a class="you" href="#"><i class="fab fa-youtube"></i></a>
<!-- <a class="lin" href="#"><i class="fab fa-linkedin-in"></i></a> -->
</div>
</div>
</div>
<div class="col-md-8">
<div class="contact-form">
<h4>Let’s Connect</h4>
<!-- <p>Integer at lorem eget diam facilisis lacinia ac id massa.</p> -->
<form
action="https://script.google.com/macros/s/AKfycbwTTZewWvJlYT9dPlryEfA31mkLTcOahBQc0-e8aRRbyX0U87CmMkgTHbvk3ssvPvqw/exec"
method="post" class="row" id="sheetdb-form">
<div class="col-md-6">
<input class="i1" type="text" name="Firstname" placeholder="First Name">
</div>
<div class="col-md-6">
<input class="i2" type="text" name="Lastname" placeholder="Last Name">
</div>
<div class="col-md-6">
<input class="i3" type="email" name="Email" placeholder="Email Address">
</div>
<div class="col-md-6">
<input class="i4" type="number" name="Phone" placeholder="Phone Number">
</div>
<div class="col-md-12">
<input class="i5" type="text" name="Subject" placeholder="Subject">
</div>
<div class="col-md-12">
<textarea class="i6" name="Message" placeholder="How can we help?"></textarea>
</div>
<div class="col-md-6">
<div class="condition-check">
<input id="terms-conditions" type="checkbox">
<label for="terms-conditions">
I agree to the <a href="#">Terms & Conditions</a>
</label>
</div>
</div>
<div class="col-md-6 text-right">
<input type="submit" name="submit" value="Send Message">
</div>
</form>
<script>
var form = document.getElementById("sheetdb-form");
var select = document.querySelector(".i1");
var select2 = document.querySelector(".i2");
var select3 = document.querySelector(".i3");
var select4 = document.querySelector(".i4");
var select5 = document.querySelector(".i5");
var select6 = document.querySelector(".i6");
form.addEventListener("submit", e => {
e.preventDefault();
fetch(form.action, {
method: "POST",
body: new FormData(document.getElementById("sheetdb-form")),
}).then(
response => response.json()
)
.then(
select.value = "",
select2.value = "",
select3.value = "",
select4.value = "",
select5.value = "",
select6.value = "",
)
});
</script>
</div>
</div>
</div>
</div>
</section>
<!-- Contact End -->
<!--====== APPIE BLOG 3 PART START ======-->
<!-- <section class="spotmies-blog-3-area pt-90 pb-100">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="spotmies-section-title text-center">
<h3 class="spotmies-title">Latest blog posts</h3>
<p>The app provides design and digital marketing.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="spotmies-blog-item-3 mt-30">
<div class="thumb">
<img src="assets/images/blog-4.jpg" alt="">
</div>
<div class="content">
<h5 class="title"><a href="#">How to Improve Your App Store Position</a></h5>
<div class="meta-item">
<ul>
<li><i class="fal fa-clock"></i> July 14, 2022</li>
<li><i class="fal fa-comments"></i> July 14, 2022</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="spotmies-blog-item-3 mt-30">
<div class="thumb">
<img src="assets/images/blog-5.jpg" alt="">
</div>
<div class="content">
<h5 class="title"><a href="#">Introducing New App Design for our iOS App</a></h5>
<div class="meta-item">
<ul>
<li><i class="fal fa-clock"></i> July 14, 2022</li>
<li><i class="fal fa-comments"></i> July 14, 2022</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="spotmies-blog-item-3 mt-30">
<div class="thumb">
<img src="assets/images/blog-6.jpg" alt="">
</div>
<div class="content">
<h5 class="title"><a href="#">Engineering job is Becoming More interesting.</a></h5>
<div class="meta-item">
<ul>
<li><i class="fal fa-clock"></i> July 14, 2022</li>
<li><i class="fal fa-comments"></i> July 14, 2022</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="spotmies-blog-item-3 mt-30">
<div class="thumb">
<img src="assets/images/blog-7.jpg" alt="">
</div>
<div class="content">
<h5 class="title"><a href="#">20 Myths About Mobile Applications</a></h5>
<div class="meta-item">
<ul>
<li><i class="fal fa-clock"></i> July 14, 2022</li>
<li><i class="fal fa-comments"></i> July 14, 2022</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="blog-btn text-center mt-60">
<a class="main-btn" href="#">View All Posts <i class="fal fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</section>
-->
<!--====== APPIE BLOG 3 PART ENDS ======-->
<!--====== APPIE PROJECT 3 PART START ======-->
<!-- <section class="spotmies-project-3-area">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="spotmies-project-3-box d-block d-md-flex justify-content-between align-items-center wow animated fadeInUp" data-wow-duration="2000ms" data-wow-delay="400ms">
<h4 class="title">Start your project <br> with Spotmies.</h4>
<a class="main-btn" href="#">Let’s Talk</a>
</div>
</div>
</div>
</div>
</section> -->
<!--====== APPIE PROJECT 3 PART ENDS ======-->
<!--====== APPIE FAQ PART START ======-->
<section class="spotmies-faq-area pt-35 pb-95">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="spotmies-section-title text-center">
<h3 class="spotmies-title">Frequently asked questions</h3>
<!-- <p>Different layouts and styles for team sections.</p> -->
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="faq-accordion wow fadeInRight mt-30" data-wow-duration="1500ms">
<div class="accrodion-grp wow fadeIn" data-wow-duration="1500ms" data-grp-name="faq-accrodion">
<div class="accrodion active ">
<div class="accrodion-inner">
<div class="accrodion-title">
<h4>What is a Web 3 dating app?</h4>
</div>
<div class="accrodion-content">
<div class="inner">
<p>A Web 3 dating app is built on decentralized web technologies that
utilize blockchain and cryptocurrencies to provide users with enhanced
security, privacy, and control over their data.
</p>
</div><!-- /.inner -->
</div>
</div><!-- /.accrodion-inner -->
</div>
<div class="accrodion ">
<div class="accrodion-inner">
<div class="accrodion-title">
<h4>How does the cryptocurrency aspect work in the <br> dating app?</h4>
</div>
<div class="accrodion-content">
<div class="inner">
<p>The cryptocurrency aspect of the dating app allows users to make
transactions, such as sending or receiving tokens, as a form of value
exchange within the platform. It can be used for various purposes like
unlocking premium features, tipping other users, or incentivizing
certain actions like verifying profiles
</p>
</div><!-- /.inner -->
</div>
</div><!-- /.accrodion-inner -->
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="faq-accordion wow fadeInRight mt-30" data-wow-duration="1500ms">
<div class="accrodion-grp wow fadeIn" data-wow-duration="1500ms" data-grp-name="faq-accrodion">
<div class="accrodion ">
<div class="accrodion-inner">
<div class="accrodion-title">
<h4>How can I acquire cryptocurrency to use within the <br> dating app?</h4>
</div>
<div class="accrodion-content">
<div class="inner">
<p>Cryptocurrency can typically be acquired through cryptocurrency exchanges
or peer-to-peer trading platforms. Users can purchase cryptocurrencies
using traditional currencies (fiat) or exchange them for other
cryptocurrencies they already own. </p>
</div><!-- /.inner -->
</div>
</div><!-- /.accrodion-inner -->
</div>
<div class="accrodion ">
<!-- <div class="accrodion-inner">
<div class="accrodion-title">
<h4>Where do I usually find FAQs in a page?</h4>
</div>
<div class="accrodion-content">
<div class="inner">
<p>Naff Oxford vagabond in my flat chinwag blatant grub tomfoolery that I
bits and bobs up the duff cras boot bevvy no biggie.</p>
</div> -->
<!-- /.inner -->
<!-- </div> -->
<!-- </div> -->
<!-- /.accrodion-inner -->
</div>
</div>