-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
968 lines (910 loc) · 36.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/desktop.css" />
<link rel="stylesheet" href="./css/tablet.css" />
<link rel="stylesheet" href="./css/mobile.css" />
<title>Clone "Mindset"</title>
</head>
<body>
<!-- header -->
<header>
<!-- navigation -->
<nav>
<a href="#">
<img id="nav-logo" src="./assets/logo-white.png" alt="Logo" />
</a>
<!-- for desktop -->
<ul>
<li><a href="#about">About</a></li>
<li><a href="#artists">Artists</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#reviews">Reviews</a></li>
<li><a href="#">Join Now</a></li>
<li><a href="#">Shop</a></li>
</ul>
<!-- for tablet, mobile -->
<img
id="hamburger-menu"
src="./assets/icons/hamburger-menu.png"
alt="Menu"
/>
</nav>
<div class="linear-gradient-container">
<section class="header-info-text-container fade-in">
<h2 class="title">Self-Care,<br />Made Easy</h2>
<p class="content">
Mindset makes daily self-care and wellness easy, accessible, and a
priority for people worldwide through authentic storytelling and
story sharing.
</p>
<div class="store-platform-container">
<img
class="app-store"
src="./assets/app-store.svg"
alt="Get it on Apple Store"
/>
<img
class="google-play"
src="./assets/google-play.png"
alt="Get it on Google Play"
/>
</div>
</section>
<img
id="header-img"
src="./assets/header-image.png"
alt="Header Image"
/>
</div>
</header>
<main>
<!-- Featured in -->
<section class="featured-in-container">
<h5 class="featured-in-title">Featured in</h5>
<div class="brand-container fade-in">
<img src="./assets/featured-in/time.svg" alt="time" />
<img
src="./assets/featured-in/the-hollywood-reporter.svg"
alt="the-hollywood-reporter"
/>
<img src="./assets/featured-in/billboard.svg" alt="billboard" />
<img src="./assets/featured-in/teen-vogue.svg" alt="teen-vogue" />
<img src="./assets/featured-in/forbes.svg" alt="forbes" />
<img
src="./assets/featured-in/associated-press.svg"
alt="associated-press"
/>
<img src="./assets/featured-in/tech-crunch.svg" alt="tech-crunch" />
</div>
</section>
<!-- Our Partners -->
<section class="partners-container">
<div class="partners-left">
<h4 class="partners-title">OUR PARTNERS</h4>
<h2 class="partners-heading">
Partnered with<br />music's biggest<br />names
</h2>
<div class="partners-grid-container fade-in">
<div class="partners-item">
<img
class="partner-img"
src="https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84318dbd93480b3bbbcf8eda95"
alt="partner-img-1"
/>
<div class="partner-name-text">SEVENTEEN</div>
</div>
<div class="partners-item">
<img
class="partner-img"
src="https://i.scdn.co/image/ab6761610000e5eb8eb5e57e526ceb14f06ea203"
alt="partner-img-2"
/>
<div class="partner-name-text">IKON</div>
</div>
<div class="partners-item">
<img
class="partner-img"
src="https://i.scdn.co/image/ab676161000051747fd16327c86d500f83be1d6a"
alt="partner-img-3"
/>
<div class="partner-name-text">(G)I-DLE</div>
</div>
<div class="partners-item">
<img
class="partner-img"
src="https://www.rollingstone.com/wp-content/uploads/2023/05/Summer-Walker-postpartum-depression.jpg?w=1581&h=1054&crop=1"
alt="partner-img-4"
/>
<div class="partner-name-text">Summer Walker</div>
</div>
<div class="partners-item">
<img
class="partner-img"
src="https://res.cloudinary.com/sagacity/image/upload/c_crop,h_2140,w_3211,x_640,y_1119/c_limit,dpr_2.625,f_auto,fl_lossy,q_80,w_412/0118-amine-white-background_cavjp0.jpg"
alt="partner-img-5"
/>
<div class="partner-name-text">Aminé</div>
</div>
<div class="partners-item">
<img
class="partner-img"
src="https://media.glamour.com/photos/5a38357aec9b1c5996a291b4/4:3/w_3748,h_2811,c_limit/julia-michaels.jpg"
alt="partner-img-6"
/>
<div class="partner-name-text">Julia Michaels</div>
</div>
</div>
</div>
<div class="partners-right">
<picture>
<source
srcset="./assets/our-partners-video-still-cut.webp"
type="image/webp"
/>
<img
src="./assets/our-partners-video-still-cut.png"
alt="Our Partner Still Cut"
/>
</picture>
</div>
</section>
<!-- Celebrity Mindsets -->
<section id="artists" class="celebrity-mindsets-container">
<div class="section-header-container">
<h2 class="section-main-header">Celebrity Mindsets</h2>
<h4 class="section-sub-header">
Listen to artists share their truths
</h4>
</div>
<div class="cards-grid-container fade-in">
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/62f3f0aa98e3d81fee7158bd_eric%202-p-500.png"
alt="celebrity-img-1"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/62f3f046ed276304de74785c_SOYEON%202-p-500.png"
alt="celebrity-img-2"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/63d1648c94e035a382f196b4_RAISA_Card.png"
alt="celebrity-img-3"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/63be004c48f0a91fe8717608_VERNON_Card.png"
alt="celebrity-img-4"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/62f3f06ff4e3f74513edb12d_MINNIE%202-p-500.png"
alt="celebrity-img-5"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/6523d1f56c483559b7b66e67_HANI_Card.png"
alt="celebrity-img-6"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/63d1649a2aed92a391fbe719_MINGYU_Card.png"
alt="celebrity-img-7"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/63be005f3e08793f823b44bf_B.I_Card.png"
alt="celebrity-img-8"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/63be005848236625dc26fd58_JOSHUA_Card.png"
alt="celebrity-img-9"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/63be0037f4ec8b32082fc997_ToriKelly_Card.png"
alt="celebrity-img-10"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/6523d1e486080394d9d106ce_WONWOO_Card.png"
alt="celebrity-img-11"
/>
<img
src="https://cdn.prod.website-files.com/62f31a570b52a65c200ba31f/6523d215897d5728850c190f_TheRose_Card.png"
alt="celebrity-img-12"
/>
</div>
</section>
<!-- What is Mindset? -->
<div id="about" class="what-is-mindset-container">
<section class="what-is-mindset-left fade-in">
<h2 class="explanation-main-header">WHAT IS MINDSET?</h2>
<p class="explanation-sub-header-paragraph">
Mindset is a daily self-care and wellness platform with a library of
authentic and intimate audio collections from your favorite artists.
</p>
<br />
<p class="explanation-sub-header-paragraph">
In a hyper-connected world where we feel more isolated than ever,
Mindset is flipping the script by harnessing the magnetic power of
fame to create space where we feel safe to be seen.
</p>
<br />
<p class="explanation-sub-header-paragraph">
Like a smile, vulnerability is contagious. When we share our truth
fearlessly, we shine light into darkness and reveal how much more
there is that unites us than divides us.
</p>
</section>
<div class="what-is-mindset-right">
<iframe src="https://www.youtube.com/embed/WS4WvDLXu2k"> </iframe>
</div>
</div>
<!-- Mindset Features -->
<section id="features" class="section-header-container">
<h2 class="section-main-header">Mindset Features</h2>
</section>
<!-- CELEBRITY MINDSETS -->
<section class="mindset-features-container">
<div class="image-box">
<img
src="https://assets-global.website-files.com/608847171490fda51d0d1b67/64ccad732f3c378a27a2838f_%5BCollage%20900x900%5D-p-500.jpg"
alt="Celebrity Mindset"
/>
</div>
<div class="explanation-box fade-in">
<h2 class="explanation-main-header">CELEBRITY MINDSETS</h2>
<p class="explanation-sub-header-paragraph">
Sometimes we don’t need advice. We just need to hear we are not the
only one.
</p>
<br />
<p class="explanation-sub-header-paragraph">
Feel inspired as you listen to the stories and life lessons of the
people you admire the most. As you listen to Celebrity Mindsets,
you’ll be reminded about the importance of self-care and that you
are not alone in your challenges. Discover how they dealt with
setbacks, overcame adversity, and challenged the status quo to get
to where they are today.
</p>
<br />
<p class="explanation-sub-header-paragraph">
Let their personal experiences inspire you on your own journey.
</p>
<br />
<p class="explanation-sub-header-paragraph">
- Hours of impactful audio content - 100% exclusive content <br />
- Access to an intimate community - Text transcripts of each episode
</p>
</div>
</section>
<div class="division"></div>
<!-- DAILY CHECK-IN -->
<section class="mockup-container">
<div class="mockup-container-text-part fade-in">
<h2 class="explanation-main-header">DAILY CHECK-IN</h2>
<p class="explanation-sub-header-paragraph">
The Daily Check-In feature is a quick and easy 5-minute daily
routine that makes practicing self-care and wellness simple and
effortless.
</p>
<br />
<p class="explanation-sub-header-paragraph">
Make self-care a daily habit today.
</p>
</div>
<div class="mockup-container-img-part">
<img
class="mockup-img-phone"
src="https://cdn.prod.website-files.com/608847171490fda51d0d1b67/650131d29bc2394435309522_Today%20(Custom)%20(1).png"
alt="Daily Check In"
/>
</div>
</section>
<div class="division"></div>
<!-- DAILY REFLECTIONS -->
<section class="mockup-container">
<div class="mockup-container-img-part">
<img
class="mockup-img-phone"
src="https://cdn.prod.website-files.com/608847171490fda51d0d1b67/650131d29e22f8b18ccb62aa_Community%20(Custom)%20(1).png"
alt="Daily Reflections"
/>
</div>
<div class="mockup-container-text-part fade-in">
<h2 class="explanation-main-header">DAILY REFLECTIONS</h2>
<p class="explanation-sub-header-paragraph">
Share your experiences and feelings with others who can truly
relate. Read others' stories and feel less alone in your own
challenges.
</p>
<br />
<p class="explanation-sub-header-paragraph">
It's time to share your own stories. We all have experiences that
evoke a powerful reaction inside us. Whether we're moved to tears or
laughter, the emotions that these experiences evoke are worth
sharing with others.
</p>
<br />
<p class="explanation-sub-header-paragraph">
The Daily Reflections feature is a place to recount one of those
moments, reflect, and be inspired by others.
</p>
</div>
</section>
<div class="division"></div>
<!-- EXPERT-LED ADVICE -->
<section class="mockup-container">
<div class="mockup-container-text-part fade-in">
<h2 class="explanation-main-header">EXPERT-LED ADVICE</h2>
<p class="explanation-sub-header-paragraph">
Mindset's Expert-Led Content offers expert guidance and tools to
support your mental wellness.
</p>
<br />
<p class="explanation-sub-header-paragraph">
Our exclusive library is created in partnership with mental health
professionals and professors.
</p>
<br />
<p class="explanation-sub-header-paragraph">
Don't let life get the best of you. Take control today with expert
advice and guidance.
</p>
</div>
<div class="mockup-container-img-part">
<img
class="mockup-img-phone"
src="https://cdn.prod.website-files.com/608847171490fda51d0d1b67/650131d28cbc0c9efa722f6d_Discover%20(Custom)%20(1).png"
alt="Expert Led Advice"
/>
</div>
</section>
<div class="division"></div>
<!-- DAILY QUOTES -->
<section class="mockup-container">
<div class="mockup-container-img-part">
<img
class="mockup-img-phone"
src="https://cdn.prod.website-files.com/608847171490fda51d0d1b67/650131d2b272cde8cc38c89b_Quote%20(Custom)%20(1).png"
alt="Daily Quotes"
/>
</div>
<div class="mockup-container-text-part fade-in">
<h2 class="explanation-main-header">DAILY QUOTES</h2>
<p class="explanation-sub-header-paragraph">
Start your day with a daily dose of inspiration to motivate,
challenge and inspire you to live your best life each and every day.
</p>
</div>
</section>
<div class="division"></div>
<!-- DISCORD COMMUNITY -->
<section class="mockup-container">
<div class="mockup-container-text-part fade-in">
<h2 class="explanation-main-header">DISCORD COMMUNITY</h2>
<p class="explanation-sub-header-paragraph">
Connect with members of the Mindset community from all over the
world.
</p>
<br />
<p class="explanation-sub-header-paragraph">
As Mindset grows, we want to provide a supportive environment for
you to share your experiences, be inspired by each other, and
connect with other Mindset members. Mindset's Discord Community is a
digital safe space of over 50k members where we can all come
together as one community, feel understood, and enjoy each other's
presence.
</p>
</div>
<div class="mockup-container-img-part">
<img
class="mockup-img-labtop"
src="https://assets-global.website-files.com/608847171490fda51d0d1b67/62f2ff1a7568b4837a850d26_DiscordCommunity-p-1080.webp"
alt="Discord Community"
/>
</div>
</section>
<div class="division"></div>
<!-- Try for free today! -->
<section class="try-free-container">
<div class="section-header-container">
<h2 class="section-main-header">Try for free today!</h2>
<h4 class="section-sub-header">
Making daily self-care easy, accessible, and a priority for people
worldwide.
</h4>
</div>
<div class="try-free-mockup-container fade-in">
<img
class="try-free-mockup first-mockup"
src="https://cdn.prod.website-files.com/608847171490fda51d0d1b67/650131d23002e84b7ff13d81_Artists%20(Custom)%20(1).png"
alt="Phone Mockup 1"
/>
<img
class="try-free-mockup second-mockup"
src="https://cdn.prod.website-files.com/608847171490fda51d0d1b67/650131d2cfd5a0a5e24ac1c2_Artist%20Page%20(Custom)%20(1).png"
alt="Phone Mockup 2"
/>
<img
class="try-free-mockup third-mockup"
src="https://cdn.prod.website-files.com/608847171490fda51d0d1b67/650131d29bc2394435309522_Today%20(Custom)%20(1).png"
alt="Phone Mockup 3"
/>
<img
class="try-free-mockup second-mockup"
src="https://cdn.prod.website-files.com/608847171490fda51d0d1b67/650131d29e22f8b18ccb62aa_Community%20(Custom)%20(1).png"
alt="Phone Mockup 4"
/>
<img
class="try-free-mockup first-mockup"
src="https://cdn.prod.website-files.com/608847171490fda51d0d1b67/650131d2c8bf8aa9d494e5b4_Immersive%20(Custom)%20(1).png"
alt="Phone Mockup 5"
/>
</div>
</section>
<!-- What Users Think -->
<section id="reviews" class="what-users-think-container">
<div class="section-header-container">
<h2 class="section-main-header">What Users Think</h2>
</div>
<!-- Reviews -->
<div class="review-list-container fade-in">
<!-- Review 1 -->
<div class="review-item-container">
<div>
<div class="star-container">
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
</div>
<p class="review-title">Comforting content</p>
<p class="review-content">
The Mindset app is like going to a safe place with friends. The
content is so comforting and personal that it helps me feel
grounded and reassured that I'm not alone, and gives a feeling
of confidence that I can take on anything even if its hard.
</p>
</div>
<div class="reviewer-container">
<img
class="reviewer-img"
src="./assets/reviewer/reviewer-1.webp"
alt="Reviewer 1"
/>
<div class="reviewer-name">Debbie Moffat</div>
</div>
</div>
<!-- Review 2 -->
<div class="review-item-container">
<div>
<div class="star-container">
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
</div>
<p class="review-title">My favorite app!</p>
<p class="review-content">
Mindset is the best thing. As someone who struggles a lot with
their mental health, it's great to have a place like this where
you can go and get advice by listening to others' stories.
</p>
</div>
<div class="reviewer-container">
<img
class="reviewer-img"
src="./assets/reviewer/reviewer-2.webp"
alt="Reviewer 2"
/>
<div class="reviewer-name">Dicte Rejmers</div>
</div>
</div>
<!-- Review 3 -->
<div class="review-item-container">
<div>
<div class="star-container">
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
</div>
<p class="review-title">Best way to brighten your day</p>
<p class="review-content">
There have been many points in life where I’ve been “down in the
dumps” and I always turn back to Mindset to cheer me up. Being
able to listen to influential peoples' life stories and what
they’ve been through helps me assure myself that I’m not alone.
</p>
</div>
<div class="reviewer-container">
<img
class="reviewer-img"
src="./assets/reviewer/reviewer-3.webp"
alt="Reviewer 3"
/>
<div class="reviewer-name">Lauren Ambrozy</div>
</div>
</div>
<!-- Review 4 -->
<div class="review-item-container">
<div>
<div class="star-container">
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
</div>
<p class="review-title">Wonderful community!</p>
<p class="review-content">
Mindset has such a wonderful community associated with it and by
engaging in similar struggles and upbringings, I am able to find
a community that I enjoy spending time with and also being able
to share about life difficulties. Very easy to use too!
</p>
</div>
<div class="reviewer-container">
<img
class="reviewer-img"
src="./assets/reviewer/reviewer-4.webp"
alt="Reviewer 4"
/>
<div class="reviewer-name">Tiffany Truong</div>
</div>
</div>
<!-- Review 5 -->
<div class="review-item-container">
<div>
<div class="star-container">
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
</div>
<p class="review-title">Perfect way to unwind</p>
<p class="review-content">
Amazing content, Well organized, and easy to operate, the
Mindset app appeals to both new and returning fans of the
featured artists. I use the episodes to calm me down while
walking to school and I always feel more centered after each
episode.
</p>
</div>
<div class="reviewer-container">
<img
class="reviewer-img"
src="./assets/reviewer/reviewer-5.webp"
alt="Reviewer 5"
/>
<div class="reviewer-name">Camryn Bazan</div>
</div>
</div>
<!-- Review 6 -->
<div class="review-item-container">
<div>
<div class="star-container">
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
<img class="star" src="./assets/icons/star.png" alt="Star" />
</div>
<p class="review-title">Road to a better me</p>
<p class="review-content">
I’m glad that I was able to come across such an amazing app.
Mindset has been helping me grow in ways that I didn’t know I
could. It shows us that everyone is going through something in
life and you are not alone.
</p>
</div>
<div class="reviewer-container">
<img
class="reviewer-img"
src="./assets/reviewer/reviewer-6.webp"
alt="Reviewer 6"
/>
<div class="reviewer-name">Evelin Hernandez</div>
</div>
</div>
</div>
</section>
<!-- Frequently Asked Questions -->
<section class="faq-container">
<div class="section-header-container fade-in">
<h2 class="section-main-header">Frequently Asked Questions</h2>
</div>
<div class="faq-list-container">
<div class="qna-container">
<button class="question-container accordion">
<span class="question-text">What is Mindset?</span>
<img
class="accordion-arrow"
src="assets/icons/bottom-arrow.png"
width="25"
height="25"
alt="Arrow"
/>
</button>
<div class="answer-text accordion-content">
Mindset is a daily self-care app designed to make daily self-care
easy, accessible, and normalized through storytelling and story
sharing.
<div class="division division-faq-gap"></div>
</div>
</div>
<div class="qna-container">
<button class="question-container accordion">
<span class="question-text">How does Mindset work?</span>
<img
class="accordion-arrow"
src="assets/icons/bottom-arrow.png"
width="25"
height="25"
alt="Arrow"
/>
</button>
<div class="answer-text accordion-content">
Mindset offers daily stories, reflections, and guided meditations
that are tailored to your specific needs and goals, including
sleep stories and soundscapes. It also includes exclusive content
and stories from today's biggest artists and public figures, as
well as expert-led courses with licensed professionals.
Additionally, Mindset includes a signature daily check-in
experience that makes taking care of your mental wellness easy
each day.
<div class="division division-faq-gap"></div>
</div>
</div>
<div class="qna-container">
<button class="question-container accordion">
<span class="question-text">
How can I benefit from using Mindset?
</span>
<img
class="accordion-arrow"
src="assets/icons/bottom-arrow.png"
width="25"
height="25"
alt="Arrow"
/>
</button>
<div class="answer-text accordion-content">
Mindset can help you improve your mental and emotional health,
reduce stress and anxiety, increase self-awareness and
self-confidence, and promote a positive outlook on life.
<div class="division division-faq-gap"></div>
</div>
</div>
<div class="qna-container">
<button class="question-container accordion">
<span class="question-text">Is Mindset free?</span>
<img
class="accordion-arrow"
src="assets/icons/bottom-arrow.png"
width="25"
height="25"
alt="Arrow"
/>
</button>
<div class="answer-text accordion-content">
While some features of Mindset are available for free, a paid
subscription is required to access exclusive celebrity content and
personalized features. However, you can still use the app freely
without paying and get access to several celebrity episodes and a
range of self-care practices and stories.
<div class="division division-faq-gap"></div>
</div>
</div>
<div class="qna-container">
<button class="question-container accordion">
<span class="question-text">
Can I cancel my Mindset subscription anytime?
</span>
<img
class="accordion-arrow"
src="assets/icons/bottom-arrow.png"
width="25"
height="25"
alt="Arrow"
/>
</button>
<div class="answer-text accordion-content">
Yes, you can cancel your subscription anytime. You will continue
to have access to Mindset until the end of your current billing
period.
<div class="division division-faq-gap"></div>
</div>
</div>
<div class="qna-container">
<button class="question-container accordion">
<span class="question-text"
>How do I contact Mindset support?</span
>
<img
class="accordion-arrow"
src="assets/icons/bottom-arrow.png"
width="25"
height="25"
alt="Arrow"
/>
</button>
<div class="answer-text accordion-content">
You can reach out to Mindset support through the app or by
emailing [email protected]. Our team will be happy to assist
you with any questions or concerns.
<div class="division division-faq-gap"></div>
</div>
</div>
<div class="qna-container">
<button class="question-container accordion">
<span class="question-text">Can I use Mindset on desktop?</span>
<img
class="accordion-arrow"
src="assets/icons/bottom-arrow.png"
width="25"
height="25"
alt="Arrow"
/>
</button>
<div class="answer-text accordion-content">
No, Mindset is only available on mobile devices at the moment.
<div class="division division-faq-gap"></div>
</div>
</div>
<div class="qna-container">
<button class="question-container accordion">
<span class="question-text">
Is Mindset available on both iOS and Android?
</span>
<img
class="accordion-arrow"
src="assets/icons/bottom-arrow.png"
width="25"
height="25"
alt="Arrow"
/>
</button>
<div class="answer-text accordion-content">
Yes, you can find and download the "Mindset by DIVE Studios" app
in both the Apple App Store and Google Play Store for iOS and
Android devices, respectively.
<div class="division division-faq-gap"></div>
</div>
</div>
</div>
</section>
<div class="division"></div>
<!-- Stay up to date with Mindset -->
<section class="subscribe-container fade-in">
<h6 class="title">Stay up to date with Mindset</h6>
<p class="content">
Be the first to know about new Collections and features, and receive
notes from your favorite artists sent straight to your inbox.
</p>
<form class="button-container-general">
<input type="text" placeholder="Enter your email" />
<button type="submit">Subscribe</button>
</form>
<form class="button-container-mobile">
<input type="text" placeholder="Enter your email" />
<button type="submit">Subscribe</button>
</form>
</section>
</main>
<!-- Footer -->
<footer>
<div class="info-container">
<div class="logo-container">
<img class="logo" src="./assets/logo-white.png" alt="Logo" />
<img
class="app-store"
src="./assets/app-store.svg"
alt="Get it on Apple Store"
/>
<img
class="google-play"
src="./assets/google-play.png"
alt="Get it on Google Play"
/>
</div>
<div class="menu-container">
<div class="menu-category">EXPLORE</div>
<div class="menu-item">
<a href="#">Gift A Subscription</a>
</div>
<div class="menu-item">
<a href="#">Careers</a>
</div>
</div>
<div class="menu-container">
<div class="menu-category">COMPANY</div>
<div class="menu-item">
<a href="#">About</a>
</div>
<div class="menu-item">
<a href="#">Support</a>
</div>
</div>
<div class="menu-container">
<div class="menu-category">ABOUT</div>
<div class="menu-item">
<a href="#">Terms & Conditions</a>
</div>
<div class="menu-item">
<a href="#">Privacy policy</a>
</div>
<div class="sns-container-large-screen">
<img
class="sns-item"
src="./assets/icons/sns/instagram.svg"
alt="Instagram"
/>
<img class="sns-item" src="./assets/icons/sns/x.svg" alt="X" />
<img
class="sns-item"
src="./assets/icons/sns/youtube.svg"
alt="Youtube"
/>
<img
class="sns-item"
src="./assets/icons/sns/facebook.svg"
alt="Facebook"
/>
<img
class="sns-item"
src="./assets/icons/sns/tiktok.svg"
alt="Tiktok"
/>
</div>
</div>
<div class="sns-container-small-screen">
<img
class="sns-item"
src="./assets/icons/sns/instagram.svg"
alt="Instagram"
/>
<img class="sns-item" src="./assets/icons/sns/x.svg" alt="X" />
<img
class="sns-item"
src="./assets/icons/sns/youtube.svg"
alt="Youtube"
/>
<img
class="sns-item"
src="./assets/icons/sns/facebook.svg"
alt="Facebook"
/>
<img
class="sns-item"
src="./assets/icons/sns/tiktok.svg"
alt="Tiktok"
/>
</div>
</div>
<div class="division-container">
<div class="division"></div>
</div>
<div class="copyright-text">
© 2021 Mindset by DIVE Studios. All rights reserved.
</div>
</footer>
<script>
document.addEventListener("DOMContentLoaded", function () {
const fadeInElements = document.querySelectorAll(".fade-in");
const observer = new IntersectionObserver((entries, observer) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add("show");
observer.unobserve(entry.target);
}
});
});
fadeInElements.forEach((element) => {
observer.observe(element);
});
});
</script>
</body>
</html>