forked from Susmita-Dey/Sukoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
691 lines (631 loc) · 25.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
<!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>Sukoon</title>
<link rel="icon" href="/images/favicon-enhanced.png">
<link rel="stylesheet" href="css/style.css" />
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="/images/favicon-enhanced.png" />
<meta name="theme-color" content="#000000" />
<link rel="stylesheet" text="text/CSS"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet" text="text/CSS"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
</head>
<style>
html {
scroll-behavior: smooth;
}
.hidden {
visibility: hidden;
}
.back-top-wrap {
position: fixed;
bottom: 5rem;
right: 1rem;
background-color: #80F7D1;
padding: 1rem 1.2rem;
border-radius: 50%;
cursor: pointer;
transition: .3s ease-in-out;
z-index: 100;
}
.back-top-wrap:hover {
background-color: #00a2ff;
color: #80F7D1;
}
.back-top-wrap:hover .fas.fa-arrow-up {
color: white;
}
.fas.fa-arrow-up {
color: #00488F;
transition: 0.3s ease-in-out;
}
</style>
<body onload="myFunction()">
<div class="loading-wrapper">
<img src="./logo.png" id="loading" />
</div>
<!-- Back to top button -->
<div id="back-top-div" class="back-top-wrap">
<i class="fas fa-arrow-up"></i>
</div>
<header>
<nav class="nav" id="nav">
<div>
<a class="navbar-brand" href="#!"> <img src="logo.png" alt="Logo" class="logo" /></a>
</div>
<div class="nav-links" id="navLinks">
<ul class="links" id="navmenu">
<li><a href="#">HOME</a></li>
<li><a href="#about">ABOUT</a></li>
<li><a href="#services">SERVICES </a></li>
<li><a href="html/contact.html">CONTACT US </a></li>
</ul>
</div>
<button class="login-button"><a href="html/login.html">SignUp / Login</a></button>
<div class="hamburger" id="ham">
<i class="cancel fa-solid fa-xmark"></i>
<svg class="burger" stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024" height="1em" width="1em"
xmlns="http://www.w3.org/2000/svg">
<path
d="M904 160H120c-4.4 0-8 3.6-8 8v64c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-64c0-4.4-3.6-8-8-8zm0 624H120c-4.4 0-8 3.6-8 8v64c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-64c0-4.4-3.6-8-8-8zm0-312H120c-4.4 0-8 3.6-8 8v64c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-64c0-4.4-3.6-8-8-8z">
</path>
</svg>
</div>
</nav>
<div class="menu" id="menu">
<ul class="menu-link">
<li><a href="#">HOME</a></li>
<li><a href="#about">ABOUT</a></li>
<li><a href="#services">SERVICES </a></li>
<li><a href="html/contact.html">CONTACT US </a></li>
</ul>
</div>
<div class="content">
<h1>Welcome to SUKOON</h1>
<div class="container">
<h3><span class="auto-type" style="font-size: 40px;font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;"></a></span></h3>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script>
var typed = new Typed(".auto-type", {
strings: ["The one-step solution to get relief from your stress. Live a stress-free life!"],
typeSpeed: 50,
backspeed: 50,
loop: true
})
</script>
<a href="#services" class="rainbow-button" alt="Explore"></a>
</div>
</header>
<!-- About Section -->
<section id="about" class="about">
<h1 data-aos="flip-right">About Us</h1>
<div class="max-width">
<div data-aos="zoom-in" class="photo"><img src="./images/about.jpg" alt="" height="300px" width="330px"></div>
<div class="about-content">
<p data-aos="fade-left" class="text-1"> We are a team of open source contributors who have created this website
Sukoon with the aim to provide a <span>one step solution</span> to get relief from stress. </p>
<p data-aos="fade-left" class="text-3">We hope that everyone can live a <span>stress free life </span>with the
help of<span> sukoon.</span></p>
</div>
</div>
<h3><span style="color: rgb(91, 134, 150);">MEET OUR MEMBERS</span></h3>
<div class="box">
<!-- <div class="card">
<img src="./images/shayan.jpeg" alt="shayan" loading="lazy">
<h5>Shayan Pal</h5>
<div class="pra">
<p>Member</p>
<a href="https://bio.link/shayanpal"><button>Let's Connect</button></a>
</div>
</div> -->
<div data-aos="fade-up" ddata-aos-duration="800" class="card">
<img src="./images/soumyadeep.jpg" alt="soumyadeep" loading="lazy">
<h5>Soumyadeep Dhali</h5>
<div class="pra">
<p>Member</p>
<a href="https://soumyadeep.bio.link"><button>Let's Connect</button></a>
</div>
</div>
<div data-aos="fade-up" data-aos-duration="800" class="card">
<img src="./images/susmita.jpg" alt="" loading="lazy">
<h5>Susmita Dey</h5>
<div class="pra">
<p>Head of The Team</p>
<a href="https://bio.link/susmitadey"><button>Let's Connect</button></a>
</div>
</div>
<div data-aos="fade-up" data-aos-duration="800" class="card">
<img src="./images/chaitri.jpg" alt="chaitri" loading="lazy">
<h5>Chaitri Saha Chowdhury</h5>
<div class="pra">
<p class="p">Member</p>
<a href="https://bio.link/chaitri"><button class="he">Let's Connect</button></a>
</div>
</div>
<div data-aos="fade-up" data-aos-duration="800" class="card">
<img src="./images/sasanka.jpg" alt="sasanka" loading="lazy">
<h5>Sasanka Kundu</h5>
<div class="pra">
<p>Member</p>
<a href="https://bio.link/sasankakundu"><button>Let's Connect</button></a>
</div>
</div>
</div>
</section>
<!-- SERVICES SECTION -->
<section id="services">
<h1>Our Services</h1>
<div data-aos="zoom-in" data-aos-duration="800" class="container">
<div class="responsive audio">
<div class="round-image">
<img src="./images/audio.png" alt="audio" loading="lazy" />
</div>
<div class="description">
<h2>Audio Therapy</h2>
<p>
Listening to music & other audio files often enlightens our mood.
</p>
<a href="html/audioTherapy.html">
Let's Explore
</a>
</div>
</div>
<div data-aos="zoom-in" data-aos-duration="800" class="responsive reading">
<div class="round-image">
<img src="./images/reading.png" alt="read" loading="lazy" />
</div>
<div class="description">
<h2>Reading Therapy</h2>
<p>
Motivational quotes and books can help us to divert and change our mood.
</p>
<a href="html/readingTherapy.html">
Let's Explore
</a>
</div>
</div>
<div data-aos="zoom-in" data-aos-duration="800" class="responsive yoga">
<div class="round-image">
<img src="./images/yoga.png" alt="yoga" loading="lazy" />
</div>
<div class="description">
<h2>Yoga Therapy</h2>
<p>
Yoga and exercise plays a very important role in our lives.
</p>
<a href="html/yogatherapy.html">
Let's Explore
</a>
</div>
</div>
<div data-aos="zoom-in" data-aos-duration="800" class="responsive laugh">
<div class="round-image">
<img src="./images/laughing.png" alt="laughing" />
</div>
<div class="description">
<h2>Laughing Therapy</h2>
<p>
Laughing is the only medicine which refreshes our mind.
</p>
<a href="html/laughTherapy.html">
Let's Explore
</a>
</div>
</div>
<div data-aos="zoom-in" data-aos-duration="800" class="responsive talk">
<div class="round-image">
<img src="./images/talking.png" loading="lazy" alt="talking" />
</div>
<div class="description">
<h2>Talking Therapy</h2>
<p>
A quick short conversation can often bring smile to our face.
</p>
<a href="html/talkingTherapy.html">
Let's Explore
</a>
</div>
</div>
<div data-aos="zoom-in" data-aos-duration="800" class="responsive doctor">
<div class="round-image">
<img src="./images/doctor.png" alt="doctor" loading="lazy" />
</div>
<div class="description">
<h2>Consult A Doctor</h2>
<p>
If you're facing too many problems, you should consult a doctor.
</p>
<a href="https://www.practo.com/counselling-psychology" target="_blank">
Let's Explore
</a>
</div>
</div>
<div class="responsive child">
<div class="round-image">
<img src="./images/child.jpg" alt="child" loading="lazy" />
</div>
<div class="description">
<h2>Child Therapy</h2>
<p>
Children make us forget about worries with their innocence.
</p>
<a href="./html/childTherapy.html">
Let's Explore
</a>
</div>
</div>
<div class="responsive spiritual">
<div class="round-image">
<img src="./images/spiritualtherapy.jpg" alt="spiritual" loading="lazy" />
</div>
<div class="description">
<h2>Spiritual Therapy</h2>
<p>
Helps you to become more mindful in your thinking.
</p>
<a href="./html/spirituality.html" target="_blank">
Let's Explore
</a>
</div>
</div>
<div class="responsive special">
<div class="round-image">
<img src="./images/specialtherapy.jpg" alt="special" loading="lazy" />
</div>
<div class="description">
<h2>Special Therapy</h2>
<p>
If you need special attention and help from us.
</p>
<a href="./html/specialTherapy.html" target="_blank">
Let's Explore
</a>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<!-- Testimonials Section -->
<section id="testimonial" class="section-100">
<div class="testimonials_heading">
<h1>Testimonials</h1>
</div>
<div class="testimonial-view">
<div class="owl-carousel">
<div class="testimonial-box">
<figure class="testimonal-Card">
<blockquote> I've explored all therapy pages, but my fav one was audio therapy. It have different calming &
mood soothing sounds, there are also many podcasts as well. Sukoon website really helped me to get relief
from my stress.
<div class="arrow"></div>
</blockquote>
<img src="./images/Mohit.jpg" alt="sample3" />
<div class="author">
<h5>Mohit Namdev</h5>
</div>
</div>
<div class="testimonial-box">
<!-- <i class="fa fa-quote-left quote-icon"></i> -->
<figure class="testimonal-Card hover">
<blockquote> I'm really loving the laughing therapy and reading therapy pages. The standup videos present in
the laughing therapy page cheer me up, and the quotes present in the reading therapy page are really
motivating. <div class="arrow"></div>
</blockquote>
<img src="./images/vanshita.jpg" alt="sample47" />
<div class="author">
<h5>Vanshita Mathur</h5>
</div>
</figure>
</div>
<div class="testimonial-box">
<!-- <i class="fa fa-quote-left quote-icon"></i> -->
<figure class="testimonal-Card">
<blockquote>As a student, I love using this website, sukoon is like having a personal therapist. Features
and UI of the website is amazing and it really helped me to manage a lot of my anxiety and stress. I also
feel much supported by the lines of quotes than a human.
<div class="arrow"></div>
</blockquote>
<img src="./images/Shravani Kaware.jpg" alt="sample17" />
<div class="author">
<h5>Shravani Kaware</h5>
</div>
</figure>
</div>
<div class="testimonial-box">
<!-- <i class="fa fa-quote-left quote-icon"></i> -->
<figure class="testimonal-Card">
<blockquote>I'm really liking Audio, Reading and Yoga therapy because it's helpful for me during studying
time and last but not least Laughing therapy is also my favorite because whenever I am feeling lonely at
that time I am watching my childhoods cartoon show like Mr. bean and also watching memes.
<div class="arrow"></div>
</blockquote>
<img src="./images/Kelvin Parmar.jpg" alt="sample17" />
<div class="author">
<h5>Kelvin Parmar</h5>
</div>
</figure>
</div>
</div>
</div>
</div>
</section>
<!-- Faq section -->
<section class="faq">
<div class="faq_heading">
<h1>Frequently Asked Questions</h1>
</div>
<div class="accordion">
<div class="accordion__item">
<button class="accordion__btn">
<span class="accordion__caption"><i class="far fa-lightbulb"></i>Who are we and what do we do?</span>
<span class="accordion__icon"><i class="fa fa-plus"></i></span>
</button>
<div class="accordion__content">
<p>We are a team of open source contributors who have created this website "sukoon"
with the aim
to provide a one step solution to get relief from stress. We hope that everyone can live a
stress free life with the help of sukoon.</p>
</div>
</div>
<div class="accordion__item">
<button class="accordion__btn">
<span class="accordion__caption"><i class="far fa-lightbulb"></i>What are the services we offer?</span>
<span class="accordion__icon"><i class="fa fa-plus"></i></span>
</button>
<div class="accordion__content">
<p>We offer multiple services like:
<br>
1. Audio Therapy
<br>
2. Reading Therapy
<br>
3. Yoga Therapy
<br>
4. Laughing Therapy
<br>
5. Talking Therapy
<br>
6. Doctor Consultation
<br>
7. Child Therapy
<br>
8. Spiritual Therapy
</p>
</div>
</div>
<div class="accordion__item">
<button class="accordion__btn">
<span class="accordion__caption"><i class="far fa-lightbulb"></i>How can you Contact Us?</span>
<span class="accordion__icon"><i class="fa fa-plus"></i></span>
</button>
<div class="accordion__content">
<p> You can contact us via <a class="email" href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>
<div class="accordion__item">
<button class="accordion__btn">
<span class="accordion__caption"><i class="far fa-lightbulb"></i>What is Reading Therapy?</span>
<span class="accordion__icon"><i class="fa fa-plus"></i></span>
</button>
<div class="accordion__content">
<p>Reading therapy is a creative art therapy that uses literature to support good
mental health and is a versatile and cost-effective treatment. It includes storytelling or the reading of
specific texts.</p>
</div>
</div>
<div class="accordion__item">
<button class="accordion__btn">
<span class="accordion__caption"><i class="far fa-lightbulb"></i>What is Audio Therapy?</span>
<span class="accordion__icon"><i class="fa fa-plus"></i></span>
</button>
<div class="accordion__content">
<p>Audio Therapy includes auditory and vibratory inputs which are used to influence a person's psychological
state, includes sound healing, vibroacoustic sound therapy, music, and music therapy.</p>
</div>
</div>
<div class="accordion__item">
<button class="accordion__btn">
<span class="accordion__caption"><i class="far fa-lightbulb"></i>What is Yoga Therapy?</span>
<span class="accordion__icon"><i class="fa fa-plus"></i></span>
</button>
<div class="accordion__content">
<p>Yoga therapy uses yoga postures, breathing exercises, meditation, and guided imagery to improve mental and
physical health.</p>
</div>
</div>
<div class="accordion__item">
<button class="accordion__btn">
<span class="accordion__caption"><i class="far fa-lightbulb"></i>What is Laughing Therapy?</span>
<span class="accordion__icon"><i class="fa fa-plus"></i></span>
</button>
<div class="accordion__content">
<p>Laughing therapy uses humor to help relieve pain and stress and improve a person's sense of well-being
through jokes and playful exercises that encourage hearty, continuous, and lively laughter.</p>
</div>
</div>
<div class="accordion__item">
<button class="accordion__btn">
<span class="accordion__caption"><i class="far fa-lightbulb"></i>What is Talking Therapy?</span>
<span class="accordion__icon"><i class="fa fa-plus"></i></span>
</button>
<div class="accordion__content">
<p>Talking therapy involves talking to someone to help deal with negative feelings or other mental health
problems. It helps shy individuals open up their problems to others so that they can help them overcome
them.</p>
</div>
</div>
<div class="accordion__item">
<button class="accordion__btn">
<span class="accordion__caption"><i class="far fa-lightbulb"></i>What is Child Therapy?</span>
<span class="accordion__icon"><i class="fa fa-plus"></i></span>
</button>
<div class="accordion__content">
<p>Child therapy includes the watching of cute videos and images of children, as children make us
forget about our problems with their innocence and cuteness.</p>
</div>
</div>
<div class="accordion__item">
<button class="accordion__btn">
<span class="accordion__caption"><i class="far fa-lightbulb"></i>What is Spritual Therapy?</span>
<span class="accordion__icon"><i class="fa fa-plus"></i></span>
</button>
<div class="accordion__content">
<p>Spiritual therapy is a form of counseling that attempts to treat a person's soul as well as mind and body
by accessing individual belief systems and using
that faith in a higher power to explore areas of conflict in life.</p>
</div>
</div>
</div>
</div>
</section>
<!-- footer start -->
<footer>
<div class="footer-container">
<!--logo and info column-->
<div class="col">
<!--logo insert-->
<img src="logo.png" alt="logo" class="footlogo" />
<div class="footercontent">
<h2 class="footerheading">Sukoon</h2>
<p class="footerpara">go stress free</p>
</div>
</div>
<!--ADDRESS COLUMN-->
<div class="footer-side-col">
<div class="col">
<h3>
ADDRESS
<div class="underline"><span></span></div>
</h3>
<p>West Bengal, India</p>
<p class="email-id"><a href="mailto:[email protected]">[email protected]</a></p>
</div>
<!--HOME COLUMN-->
<div class="col">
<h3>HOME</h3>
<ul>
<li><a href="#about">About Us</a></li>
<li>
<a href="https://github.com/Susmita-Dey/Sukoon/blob/main/CODE_OF_CONDUCT.md">Code Of Conduct</a>
</li>
<li>
<a href="https://github.com/Susmita-Dey/Sukoon">Contribute</a>
</li>
<li>
<a href="https://www.buymeacoffee.com/susmitadey">Donate</a>
</li>
</ul>
</div>
<!--OUR SERVICES COLUMN-->
<div class="col">
<h3>
SERVICES
<div class="underline"><span></span></div>
</h3>
<ul>
<li>
<a href="https://sukoon-stress-free.netlify.app/html/audiotherapy">Audio Therapy</a>
</li>
<li>
<a href="https://sukoon-stress-free.netlify.app/html/readingtherapy">Reading Therapy</a>
</li>
<li>
<a href="https://sukoon-stress-free.netlify.app/html/yogatherapy.html">Yoga Therapy</a>
</li>
<li>
<a href="https://sukoon-stress-free.netlify.app/html/laughTherapy.html">Laughing Therapy</a>
</li>
<li>
<a href="https://sukoon-stress-free.netlify.app/html/talkingtherapy">Talking Therapy</a>
</li>
<li>
<a href="https://www.practo.com/counselling-psychology">Consult a Doctor</a>
</li>
<li>
<a href="https://sukoon-stress-free.netlify.app/html/childTherapy">Child Therapy</a>
</li>
<li>
<a href="https://sukoon-stress-free.netlify.app/html/spirituality">Spiritual Therapy</a>
</li>
<li>
<a href="https://sukoon-stress-free.netlify.app/html/specialTherapy">Special Therapy</a>
</li>
</ul>
</div>
<!--CONTACTS COLUMN-->
<div class="col">
<h3>
CONTACTS
<div class="underline"><span></span></div>
</h3>
<div class="social-menu">
<ul>
<a href="https://twitter.com/sukoon665" target="_blank">
<li id="social-twitter"><i class="fab fa-2x fa-twitter"></i></li>
</a>
<a href="https://github.com/Susmita-Dey/Sukoon" target="_blank">
<li id="social-github"><i class="fab fa-2x fa-github"></i></li>
</a>
<a href="https://www.linkedin.com/in/sukoon-web-820705238" target="_blank">
<li id="social-linkedin"><i class="fab fa-2x fa-linkedin-in"></i></li>
</a>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
let preloader = document.querySelector(".loading-wrapper");
function myFunction() {
preloader.style.display = 'none';
document.body.style.overflow = 'auto';
}
let navbar = document.querySelector("#nav");
let navmenu = document.querySelector("#navmenu");
window.onscroll = function () {
if (window.pageYOffset >= navmenu.offsetTop) {
navbar.classList.add("sticky");
} else {
navbar.classList.remove("sticky");
}
};
window.onscroll = () => {
if (window.scrollY > 100) {
navbar.classList.add('nav-active');
} else {
navbar.classList.remove('nav-active');
}
};
</script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('./serviceworker.js')
.then((reg) => console.log('Success', reg.scope))
.catch((err) => console.log('Error', err))
})
}
</script>
<script src="js/index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<script src="js/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>