-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
826 lines (717 loc) · 46.8 KB
/
home.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
<!doctype html>
<html lang="en" dir="ltr" data-bs-theme="auto">
<head>
<!-- Include JavaScript for color modes -->
<script src="./assets/js/color-modes.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Update the 'content' attribute to reflect the actual content description -->
<meta name="description" content="your_description_goes_here">
<!-- Modify the 'content' attribute to include appropriate keywords -->
<meta name="keywords" content="your_keywords_goes_here">
<meta name="author" content="tigmatemplate">
<meta name="generator" content="Bootstrap">
<!-- Change the text within the <title> tag to match the webpage's content -->
<title> your_title_goes_here </title>
<!--
Set the website's favicon and Apple touch icon using the files in the assets/logo folder. You can change these files to your own icons by replacing them with the same names and sizes.
Be careful if you change the site.webmanifest file, as you need to update the src attribute of the icons array to match the new path of your icon files. Otherwise, your icons may not display correctly on some devices.
-->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/logo/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/logo/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/logo/favicon-16x16.png">
<link rel="icon" type="image/x-icon" href="./assets/logo/favicon.ico">
<link rel="manifest" href="./assets/logo/site.webmanifest">
<!-- Stylesheets -->
<link rel="stylesheet" href="./assets/libraries/glide/css/glide.core.min.css">
<link rel="stylesheet" href="./assets/libraries/aos/aos.css">
<link rel="stylesheet" href="./assets/css/main.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
<!-- Open Graph Meta Tags for Social Sharing -->
<!-- Update the 'title' and 'description' content below to enhance social sharing -->
<meta property="og:title" content="your_title_goes_here">
<meta property="og:description" content="your_description_goes_here">
<!-- Update with actual absolute image URL like: https://example.com/main.jpg -->
<meta property="og:image" content="your_absolute_image_url_goes_here">
<!-- Update with the absolute URL of the content like: https://example.com/index.html -->
<meta property="og:url" content="your_absolute_content_url_goes_here">
<!-- Update with the type of object you’re sharing. (e.g., article, website, etc.) -->
<meta property="og:type" content="website">
<!-- Defines the content language -->
<meta property="og:locale" content="en_US">
<!-- X/Twitter Card Meta Tags for Social Sharing -->
<meta name="twitter:card" content="summary_large_image">
<!-- Update with your X/Twitter handle -->
<meta name="twitter:site" content="@yourtwitterhandle">
<!-- Update the 'title' and 'description' content below to enhance social sharing -->
<meta name="twitter:title" content="your_title_goes_here">
<meta name="twitter:description" content="your_description_goes_here">
<!-- Update with actual absolute image URL like: https://example.com/main.jpg -->
<meta name="twitter:image" content="your_absolute_image_url_goes_here">
<!--
The following line specifies the canonical URL for this page.
Replace your_canonical_url_goes_here with the actual canonical URL if needed like: https://example.com/index.html
Or just remove it!!!!
-->
<link rel="canonical" href="your_canonical_url_goes_here">
</head>
<body>
<!-- loader-wrapper -->
<div class="loader-wrapper">
<div class="spinner-border text-primary p-5" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<!-- header top -->
<header class="navigation position-absolute w-100 bg-body-tertiary shadow border-bottom border-light border-opacity-10 rounded-bottom-3 rounded-bottom-sm-4">
<nav class="navbar navbar-expand-xl" aria-label="Offcanvas navbar large">
<div class="container py-1">
<a href="./index.html" class="navbar-brand">
<img src="./assets/logo/logo.png" height="40" alt="logo">
</a>
<div class="dropdown ms-3 order-last">
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
<symbol id="check2" viewBox="0 0 16 16">
<path d="M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z"/>
</symbol>
<symbol id="circle-half" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 0 8 1v14zm0 1A8 8 0 1 1 8 0a8 8 0 0 1 0 16z"/>
</symbol>
<symbol id="moon-stars-fill" viewBox="0 0 16 16">
<path d="M6 .278a.768.768 0 0 1 .08.858 7.208 7.208 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277.527 0 1.04-.055 1.533-.16a.787.787 0 0 1 .81.316.733.733 0 0 1-.031.893A8.349 8.349 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.752.752 0 0 1 6 .278z"/>
<path d="M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.734 1.734 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.734 1.734 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.734 1.734 0 0 0 1.097-1.097l.387-1.162zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732L13.863.1z"/>
</symbol>
<symbol id="sun-fill" viewBox="0 0 16 16">
<path d="M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z"/>
</symbol>
</svg>
<button class="btn btn-primary text-white btn-sm rounded dropdown-toggle d-flex align-items-center"
id="bd-theme" type="button" aria-expanded="false" data-bs-toggle="dropdown"
aria-label="Toggle theme (auto)">
<svg fill="currentColor" class="bi my-1 theme-icon-active" width="1em" height="1em"><use href="#circle-half"></use></svg>
<span class="visually-hidden" id="bd-theme-text">Toggle theme</span>
</button>
<ul class="p-1 dropdown-menu dropdown-menu-end dropdown-menu-hover end-0 rounded-3 shadow bg-body-tertiary"
style="--bs-dropdown-min-width: 9rem;" aria-labelledby="bd-theme-text">
<li style="color: var(--bs-tertiary-bg);">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor"
class="mt-n1 d-inline-block position-absolute top-0 end-0 translate-middle" viewBox="0 0 16 16">
<path class="carret-dropdown-path" d="m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z"/>
</svg>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center rounded-1" data-bs-theme-value="light" aria-pressed="false">
<svg fill="currentColor" class="bi me-2 theme-icon" width="1em" height="1em"><use href="#sun-fill"></use></svg>
Light
<svg fill="currentColor" class="bi ms-auto d-none active-check" width="1em" height="1em"><use href="#check2"></use></svg>
</button>
</li>
<li>
<button type="button" class="my-1 dropdown-item d-flex align-items-center rounded-1" data-bs-theme-value="dark" aria-pressed="false">
<svg fill="currentColor" class="bi me-2 theme-icon" width="1em" height="1em"><use href="#moon-stars-fill"></use></svg>
Dark
<svg fill="currentColor" class="bi ms-auto d-none active-check" width="1em" height="1em"><use href="#check2"></use></svg>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center rounded-1 active" data-bs-theme-value="auto" aria-pressed="true">
<svg fill="currentColor" class="bi me-2 theme-icon" width="1em" height="1em"><use href="#circle-half"></use></svg>
Auto
<svg fill="currentColor" class="bi ms-auto d-none active-check" width="1em" height="1em"><use href="#check2"></use></svg>
</button>
</li>
</ul>
</div>
<button class="navbar-toggler ms-auto" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar2" aria-controls="offcanvasNavbar2" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="offcanvas offcanvas-end border-0 rounded-start-0 rounded-start-sm-4" tabindex="-1" id="offcanvasNavbar2" aria-labelledby="offcanvasNavbar2Label">
<div class="offcanvas-header" style="padding: 2rem 2rem 1.5rem 2rem;">
<h5 class="offcanvas-title m-0" id="offcanvasNavbar2Label">
<a class="navbar-brand" href="javascript:;">
<img src="./assets/logo/logo.png" height="32" alt="logo">
</a>
</h5>
<button type="button" class="btn-close text-body-emphasis" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav align-items-xl-center flex-grow-1 column-gap-4 row-gap-4 row-gap-xl-2">
<li class="nav-item ms-xl-auto">
<a href="./home.html" class="px-3 text-body-emphasis bg-body-secondary-hover nav-link rounded-3 text-base leading-6 fw-semibold" aria-current="page">
Home
</a>
</li>
<li class="nav-item">
<a href="./services.html" class="px-3 text-body-emphasis bg-body-secondary-hover nav-link rounded-3 text-base leading-6 fw-semibold">
Services
</a>
</li>
<li class="nav-item">
<a href="./about.html" class="px-3 text-body-emphasis bg-body-secondary-hover nav-link rounded-3 text-base leading-6 fw-semibold">
About
</a>
</li>
<li class="nav-item">
<div class="dropdown">
<button class="btn w-100 text-start dropdown-toggle px-3 text-body-emphasis bg-body-secondary-hover nav-link rounded-3 text-base leading-6 fw-semibold" type="button" data-bs-toggle="dropdown" aria-expanded="false">
Blog
</button>
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-hover end-0 text-sm shadow bg-body-tertiary" style="--bs-dropdown-min-width: 9rem;">
<li class="d-none d-xl-block" style="color: var(--bs-tertiary-bg);">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor"
class="mt-n1 d-inline-block position-absolute top-0 end-0 translate-middle" viewBox="0 0 16 16">
<path class="carret-dropdown-path" d="m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z"/>
</svg>
</li>
<li>
<a class="dropdown-item text-body-emphasis bg-body-secondary-hover py-2 text-base leading-6 fw-semibold" href="./blog.html">
Blog page
</a>
</li>
<li>
<a class="dropdown-item text-body-emphasis bg-body-secondary-hover py-2 text-base leading-6 fw-semibold" href="./blog-post.html">
Blog post
</a>
</li>
<li>
<a class="dropdown-item text-body-emphasis bg-body-secondary-hover py-2 text-base leading-6 fw-semibold" href="./blog-author.html"> Author page
</a>
</li>
</ul>
</div>
</li>
<li class="nav-item ms-xl-auto">
<a href="./contact.html" class="px-3 text-body-emphasis bg-body-secondary-hover border nav-link rounded-3 text-base leading-6 fw-semibold text-center">
Contact us
</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<!-- header body -->
<div class="overflow-hidden position-relative">
<img src="./assets/img/bg/bg1.jpg" class="position-absolute z-n1 top-0 h-100 w-100 object-fit-cover" alt="Meeting">
<div class="overlay position-absolute z-n1 top-0 h-100 w-100 bg-dark"
style="opacity: 0.85; mix-blend-mode: multiply; filter: contrast(1.15) brightness(0.85);">
</div>
<div class="container">
<div class="min-vh-100 row align-items-center">
<div class="col-12 col-xl-8">
<div class="pt-9 pt-md-10 pt-xl-11 pb-7 pb-md-8 pb-xl-9 max-w-2xl mx-auto mx-xl-0">
<div class="mt-4 pt-2">
<div class="text-center text-xl-start">
<h1 class="m-0 text-white tracking-tight text-6xl fw-bold" data-aos-delay="0" data-aos="fade" data-aos-duration="3000">
Experience Ultimate Cleanliness
</h1>
<p class="m-0 mt-4 text-white text-lg leading-8" data-aos-delay="100" data-aos="fade" data-aos-duration="3000">
No more worries about laundry! Let our professional crew at Freshen Laundry Service take the task off your hands.
</p>
<div class="mt-4 pt-3 d-flex align-items-center justify-content-center justify-content-xl-start column-gap-3">
<a href="javascript:;" class="btn btn-lg btn-primary text-white text-sm fw-semibold" data-aos-delay="200" data-aos="fade" data-aos-duration="3000">
Contact us
</a>
<a href="javascript:;" class="btn btn-lg text-white icon-link icon-link-hover bg-secondary-hover text-sm leading-6 fw-semibold" data-aos-delay="300" data-aos="fade" data-aos-duration="3000">
Learn more
<span class="bi align-self-start left-to-right" aria-hidden="true">→</span>
<span class="bi align-self-start right-to-left" aria-hidden="true">←</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-xl-4">
<div class="pt-3 pt-md-4 pt-xl-12 pb-2 pb-md-3 pb-xl-6">
<!-- Button trigger modal -->
<a class="video-play-button video-btn-modal position-relative" href="javascript:;"
data-bs-toggle="modal" data-bs-target="#videoModal"
data-bs-src="https://www.youtube.com/embed/EX0TcLgOPv0">
<span class="top-50 start-50 translate-middle"></span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Modal to embed vidoes!! -->
<div class="modal fade" id="videoModal" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-xl modal-dialog-centered">
<div class="modal-content border-0" style="border-radius: 0.75rem;">
<div class="modal-header border-0 p-0">
<button type="button" class="btn-close bg-white border position-absolute top-0 end-0 translate-middle me-n3 me-sm-n5 mt-n4 rounded-circle p-2" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body p-0">
<div class="ratio ratio-16x9">
<iframe class="embed-responsive-item iframeVideo" style="border-radius: 0.75rem;" allow="autoplay"></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- services -->
<div class="overflow-hidden py-7 py-sm-8 py-xl-9 bg-body-tertiary">
<div class="container">
<div>
<div class="mx-auto max-w-2xl text-center">
<h2 class="m-0 text-primary-emphasis text-base leading-7 fw-semibold">
Our services
</h2>
<p class="m-0 mt-2 text-body-emphasis text-4xl tracking-tight fw-bold">
Convenient Laundry Services in NYC
</p>
<p class="m-0 mt-4 text-body text-lg leading-8">
Experience the power of eco-friendly laundry with our premium detergents
</p>
</div>
</div>
<div>
<div class="row row-cols-1 row-cols-xl-3 gy-5 gx-xl-4 mt-1 justify-content-center justify-content-xl-between">
<div class="col pt-5 pt-xl-4">
<div class="max-w-xl mx-auto mx-xl-0" data-aos-delay="0" data-aos="fade" data-aos-duration="1000">
<div class="ratio" style="--bs-aspect-ratio: 66.66%;">
<img src="./assets/img/bg/bg2.jpg" class="object-fit-cover rounded-3" alt="Service image" loading="lazy">
</div>
<h3 class="m-0 mt-4 text-body-emphasis text-lg leading-6 fw-semibold">
Eco-Friendly Dry Cleaning
</h3>
<!-- Remove line-clamp-2 if you need more lines or add line-clamp-3 -->
<p class="m-0 mt-3 text-body-secondary line-clamp-2 text-sm leading-6">
Safely clean your delicate garments with our eco-friendly dry cleaning services, leaving them fresh and free from harsh chemicals.
</p>
</div>
</div>
<div class="col pt-5 pt-xl-4">
<div class="max-w-xl mx-auto mx-xl-0" data-aos-delay="100" data-aos="fade" data-aos-duration="1000">
<div class="ratio" style="--bs-aspect-ratio: 66.66%;">
<img src="./assets/img/bg/bg3.jpg" class="object-fit-cover rounded-3" alt="Service image" loading="lazy">
</div>
<h3 class="m-0 mt-4 text-body-emphasis text-lg leading-6 fw-semibold">
Wash & Fold Service
</h3>
<!-- Remove line-clamp-2 if you need more lines or add line-clamp-3 -->
<p class="m-0 mt-3 text-body-secondary line-clamp-2 text-sm leading-6">
Save time by letting us handle your laundry needs with our efficient wash & fold service, ensuring your clothes are clean and neatly folded.
</p>
</div>
</div>
<div class="col pt-5 pt-xl-4">
<div class="max-w-xl mx-auto mx-xl-0" data-aos-delay="200" data-aos="fade" data-aos-duration="1000">
<div class="ratio" style="--bs-aspect-ratio: 66.66%;">
<img src="./assets/img/bg/bg4.jpg" class="object-fit-cover rounded-3" alt="Service image" loading="lazy">
</div>
<h3 class="m-0 mt-4 text-body-emphasis text-lg leading-6 fw-semibold">
Same-Day Pickup & Delivery
</h3>
<!-- Remove line-clamp-2 if you need more lines or add line-clamp-3 -->
<p class="m-0 mt-3 text-body-secondary line-clamp-2 text-sm leading-6">
Forget about waiting – our same-day pickup and delivery service ensures your laundry is promptly picked up, cleaned, and returned to you on time.
</p>
</div>
</div>
</div>
</div>
<div class="text-center pt-7">
<a href="javascript:;" class="btn btn-lg btn-primary text-white icon-link icon-link-hover text-sm leading-6 fw-semibold">
Learn more
<span class="bi align-self-start left-to-right" aria-hidden="true">→</span>
<span class="bi align-self-start right-to-left" aria-hidden="true">←</span>
</a>
</div>
</div>
</div>
<!-- About Us -->
<div class="overflow-hidden py-7 py-sm-8 py-xl-9">
<div class="container">
<div class="row gy-5 align-items-center justify-content-between">
<div class="col-12 col-xl-5 order-last">
<div class="mx-auto max-w-2xl">
<h2 class="m-0 text-primary-emphasis text-base leading-7 fw-semibold">
About Us
</h2>
<p class="m-0 mt-2 text-body-emphasis text-4xl tracking-tight fw-bold">
Making laundry a breeze, one clean garment at a time.
</p>
<p class="m-0 mt-4 text-body-secondary text-lg leading-8">
Welcome to Freshen, your premier laundry service in New York, NY. We are dedicated to providing top-quality, convenient, and affordable laundry solutions to our valued customers.
</p>
<div class="mt-4">
<a href="javascript:;" class="icon-link icon-link-hover text-decoration-none text-sm leading-6 fw-bold">
Learn more
<span class="bi align-self-start left-to-right" aria-hidden="true">→</span>
<span class="bi align-self-start right-to-left" aria-hidden="true">←</span>
</a>
</div>
</div>
</div>
<div class="col-12 col-xl-6">
<div class="mx-auto max-w-2xl">
<div class="ratio ratio-4x3" data-aos-delay="0" data-aos="fade" data-aos-duration="3000">
<img src="./assets/img/bg/bg5.jpg" class="object-fit-cover rounded-3" alt="about us" loading="lazy">
</div>
</div>
</div>
</div>
<!-- big image -->
<div class="ratio ratio-16x9 mt-7 mt-sm-8 mt-xl-9">
<img src="./assets/img/bg/bg6.jpg" class="object-fit-cover rounded-3" alt="presentation" loading="lazy">
</div>
</div>
</div>
<!-- Testimonials -->
<div class="overflow-hidden py-7 py-sm-8 py-xl-9 bg-body-secondary">
<div class="container">
<div id="carouselExampleIndicators" class="carousel slide pb-5">
<div class="carousel-indicators mb-0">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="mx-auto max-w-4xl text-center">
<img class="mx-auto" src="./assets/img/clients/logo1.png" height="48" alt="Client Company" loading="lazy">
<figure class="m-0 mt-5">
<blockquote class="text-center fw-semibold text-body-emphasis text-2xl leading-9">
<p class="m-0">
“ Freshen is fantastic! Their laundry service is top-notch, and the staff is friendly and professional. I was impressed by the quality of their work and their attention to detail. Thank you, Freshen, for taking care of my laundry needs! ”
</p>
</blockquote>
<figcaption class="m-0 mt-5">
<img class="mx-auto rounded-circle" width="40" height="40" src="./assets/img/small-team/st1.jpg" alt="Clinet Name" loading="lazy">
<div class="mt-3 d-flex align-items-center justify-content-center text-base">
<div class="fw-semibold text-body-emphasis">John Bond</div>
<svg viewBox="0 0 2 2" width="3" height="3" aria-hidden="true" class="mx-3 text-body-emphasis" fill="currentColor">
<circle cx="1" cy="1" r="1" />
</svg>
<div class="text-body-secondary">CEO of Aven</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="carousel-item">
<div class="mx-auto max-w-4xl text-center">
<img class="mx-auto" src="./assets/img/clients/logo2.png" height="48" alt="Client Company" loading="lazy">
<figure class="m-0 mt-5">
<blockquote class="text-center fw-semibold text-body-emphasis text-2xl leading-9">
<p class="m-0">
“ Freshen is fantastic! Their laundry service is top-notch, and the staff is friendly and professional. I was impressed by the quality of their work and their attention to detail. Thank you, Freshen, for taking care of my laundry needs! ”
</p>
</blockquote>
<figcaption class="m-0 mt-5">
<img class="mx-auto rounded-circle" width="40" height="40" src="./assets/img/small-team/st2.jpg" alt="Client name" loading="lazy">
<div class="mt-3 d-flex align-items-center justify-content-center text-base">
<div class="fw-semibold text-body-emphasis">Judith Bond</div>
<svg viewBox="0 0 2 2" width="3" height="3" aria-hidden="true" class="mx-3 text-body-emphasis" fill="currentColor">
<circle cx="1" cy="1" r="1" />
</svg>
<div class="text-body-secondary">CEO of Circle</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="carousel-item">
<div class="mx-auto max-w-4xl text-center">
<img class="mx-auto" src="./assets/img/clients/logo3.png" height="48" alt="Client Company" loading="lazy">
<figure class="m-0 mt-5">
<blockquote class="text-center fw-semibold text-body-emphasis text-2xl leading-9">
<p class="m-0">
“ Freshen is fantastic! Their laundry service is top-notch, and the staff is friendly and professional. I was impressed by the quality of their work and their attention to detail. Thank you, Freshen, for taking care of my laundry needs! ”
</p>
</blockquote>
<figcaption class="m-0 mt-5">
<img class="mx-auto rounded-circle" width="40" height="40" src="./assets/img/small-team/st3.jpg" alt="Client name" loading="lazy">
<div class="mt-3 d-flex align-items-center justify-content-center text-base">
<div class="fw-semibold text-body-emphasis">Alex Bond</div>
<svg viewBox="0 0 2 2" width="3" height="3" aria-hidden="true" class="mx-3 text-body-emphasis" fill="currentColor">
<circle cx="1" cy="1" r="1" />
</svg>
<div class="text-body-secondary">CEO of Amara</div>
</div>
</figcaption>
</figure>
</div>
</div>
</div>
<button class="carousel-control-prev d-none d-xl-inline" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="prev">
<span class="carousel-control-prev-icon rtl-flip" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next d-none d-xl-inline" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="next">
<span class="carousel-control-next-icon rtl-flip" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
<!-- Client -->
<div class="overflow-hidden py-6 py-sm-7 py-xl-8 bg-body-tertiary">
<div class="container">
<div class="max-w-2xl">
<h2 class="m-0 text-primary-emphasis text-base leading-7 fw-semibold">
Our Clients
</h2>
<div class="m-0 mt-2 text-body-emphasis text-4xl tracking-tight fw-bold">
We're fortunate to have incredible clients.
</div>
</div>
<div class="mt-4">
<div class="glide glideHighLinear">
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides align-items-center">
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/clients/logo1.png" class="img-fluid" alt="clients">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/clients/logo2.png" class="img-fluid" alt="clients">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/clients/logo3.png" class="img-fluid" alt="clients">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/clients/logo4.png" class="img-fluid" alt="clients">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/clients/logo5.png" class="img-fluid" alt="clients">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/clients/logo6.png" class="img-fluid" alt="clients">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/clients/logo7.png" class="img-fluid" alt="clients">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/clients/logo8.png" class="img-fluid" alt="clients">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/clients/logo9.png" class="img-fluid" alt="clients">
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Contact us -->
<div id="contact-us" class="overflow-hidden py-7 py-sm-8 py-xl-9">
<div class="container">
<div class="row gy-5 gx-sm-5">
<div class="col-12 col-xl-5 pt-4">
<div class="mx-auto max-w-2xl">
<h2 class="m-0 text-primary-emphasis text-base leading-7 fw-semibold">
Get in touch
</h2>
<p class="m-0 mt-2 text-body-emphasis text-3xl tracking-tight fw-bold">
Have any questions or need assistance? Contact us today!
</p>
</div>
<div class="mx-auto max-w-2xl mt-6">
<form class="row g-4 needs-validation" id="myForm" novalidate>
<div class="col-md-6">
<label for="nameForm" class="form-label text-sm">
Full name
<span class="text-danger-emphasis">*</span>
</label>
<input type="text" class="form-control form-control-sm" name="nameForm" id="nameForm" required>
<div class="invalid-feedback text-xs">
Please enter your full name.
</div>
</div>
<div class="col-md-6">
<label for="emailForm" class="form-label text-sm">
Email address
<span class="text-danger-emphasis">*</span>
</label>
<input type="email" class="form-control form-control-sm" name="emailForm" id="emailForm" required>
<div class="invalid-feedback text-xs">
Please enter your email address.
</div>
</div>
<div class="col-md-6">
<label for="phoneForm" class="form-label text-sm">
Phone number
<span class="text-danger-emphasis">*</span>
</label>
<input type="text" class="form-control form-control-sm" name="phoneForm" id="phoneForm" required>
<div class="invalid-feedback text-xs">
Please enter your phone number.
</div>
</div>
<div class="col-md-6">
<label for="subjectForm" class="form-label text-sm">
Subject
<span class="text-danger-emphasis">*</span>
</label>
<input type="text" class="form-control form-control-sm" name="subjectForm" id="subjectForm" required>
<div class="invalid-feedback text-xs">
Please enter a subject for your message.
</div>
</div>
<div class="mb-3">
<label for="messageForm" class="form-label text-sm">
Your message
<span class="text-danger-emphasis">*</span>
</label>
<textarea class="form-control form-control-sm" name="messageForm" id="messageForm" rows="3" required></textarea>
<div class="invalid-feedback text-xs">
Please enter a message.
</div>
</div>
<div class="col-12">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck" required>
<label class="form-check-label text-sm" for="gridCheck">
I agree to the terms & conditions and privacy policy
<span class="text-danger-emphasis">*</span>
</label>
<div class="invalid-feedback text-xs">
Please agree to the terms & conditions and privacy policy.
</div>
</div>
</div>
<div class="col-12 text-center pt-3">
<button type="submit" class="btn btn-lg btn-primary text-white text-sm fw-semibold" id="sendMessage">
Send message
</button>
</div>
<!-- Alert message -->
<div class="col-12" id="yourMessageIsSent"></div>
</form>
</div>
</div>
<div class="d-none d-xl-block col-12 col-xl-7" data-aos-delay="0" data-aos="fade" data-aos-duration="3000">
<div class="h-100 position-relative ms-xxl-5">
<div class="position-absolute top-0 end-0 bottom-0 start-0 z-n1 rounded-5">
<img src="./assets/img/bg/bg7.jpg" class="w-100 h-100 rounded-3 object-fit-cover" loading="lazy" alt="Image description">
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="overflow-hidden py-6 py-sm-7 py-xl-8 bg-body-tertiary">
<div class="container">
<div class="row gy-5">
<div class="col-12 col-xl-6">
<div class="pb-3 max-w-lg position-relative">
<form method="post" target="_blank" novalidate class="mc-embedded-subscribe-form">
<h2 class="text-body-emphasis leading-6 text-4xl tracking-tight fw-bold">
Subscribe to our newsletter.
</h2>
<p class="m-0 mt-3 text-body-secondary text-lg leading-8">
Experience the ease of code deployment with just a click. Simplify your development tasks, and increase productivity.
</p>
<div class="mt-4 mb-2 d-flex flex-column flex-sm-row w-100 gap-2 js-form-inputs">
<label for="emailSubscribe1" class="visually-hidden">Email address</label>
<input type="email" name="EMAIL" id="emailSubscribe1" value="" class="form-control leading-6 text-sm max-w-xl" placeholder="Enter your email">
<button type="submit" name="subscribe" class="btn btn-primary text-white fw-semibold text-sm">Subscribe</button>
</div>
<!-- This div is related to Mailchimp integration and handled by a function in our scripts.js file, so no need to worry about it. -->
<div style="position: absolute; left: -5000px;" aria-hidden="true">
<input type="text" class="js-validate-robot" name="b_a4752870f583bb49a02427b3c_143fa46c21" tabindex="-1" value="">
</div>
<!-- response -->
<div class="js-subscribe-response"></div>
</form>
</div>
</div>
<div class="col-12 col-xl-6">
<div class="row row-cols-1 row-cols-sm-2 gx-3 gy-5">
<div class="d-flex flex-column align-items-start">
<div class="p-2 bg-body-tertiary rounded-3 border">
<svg class="text-body-emphasis" width="24" height="24" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 012.25-2.25h13.5A2.25 2.25 0 0121 7.5v11.25m-18 0A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75m-18 0v-7.5A2.25 2.25 0 015.25 9h13.5A2.25 2.25 0 0121 11.25v7.5m-9-6h.008v.008H12v-.008zM12 15h.008v.008H12V15zm0 2.25h.008v.008H12v-.008zM9.75 15h.008v.008H9.75V15zm0 2.25h.008v.008H9.75v-.008zM7.5 15h.008v.008H7.5V15zm0 2.25h.008v.008H7.5v-.008zm6.75-4.5h.008v.008h-.008v-.008zm0 2.25h.008v.008h-.008V15zm0 2.25h.008v.008h-.008v-.008zm2.25-4.5h.008v.008H16.5v-.008zm0 2.25h.008v.008H16.5V15z" />
</svg>
</div>
<div class="m-0 mt-3 text-body-emphasis fw-semibold">
Weekly articles
</div>
<div class="m-0 mt-2 text-body-secondary leading-7">
Accelerate your deployment process effortlessly. Seamlessly manage your code deployment.
</div>
</div>
<div class="d-flex flex-column align-items-start">
<div class="p-2 bg-body-tertiary rounded-3 border">
<svg class="text-body-emphasis" width="24" height="24" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M10.05 4.575a1.575 1.575 0 10-3.15 0v3m3.15-3v-1.5a1.575 1.575 0 013.15 0v1.5m-3.15 0l.075 5.925m3.075.75V4.575m0 0a1.575 1.575 0 013.15 0V15M6.9 7.575a1.575 1.575 0 10-3.15 0v8.175a6.75 6.75 0 006.75 6.75h2.018a5.25 5.25 0 003.712-1.538l1.732-1.732a5.25 5.25 0 001.538-3.712l.003-2.024a.668.668 0 01.198-.471 1.575 1.575 0 10-2.228-2.228 3.818 3.818 0 00-1.12 2.687M6.9 7.575V12m6.27 4.318A4.49 4.49 0 0116.35 15m.002 0h-.002" />
</svg>
</div>
<div class="m-0 mt-3 text-body-emphasis fw-semibold">
No spam
</div>
<div class="m-0 mt-2 text-body-secondary leading-7">
Accelerate your deployment process effortlessly. Seamlessly manage your code deployment.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<hr class="my-6 text-body-emphasis opacity-10">
<div class="d-flex flex-column flex-xl-row gap-5 justify-content-between align-items-xl-center">
<div class="order-first order-xl-last">
<ul class="nav row gy-4 gx-sm-4 row-cols-2 row-cols-sm-auto">
<li class="nav-item">
<a href="./about.html" class="p-0 text-body-secondary nav-link leading-6 text-sm"> About </a>
</li>
<li class="nav-item">
<a href="./services.html" class="p-0 text-body-secondary nav-link leading-6 text-sm"> Services </a>
</li>
<li class="nav-item">
<a href="./blog.html" class="p-0 text-body-secondary nav-link leading-6 text-sm"> Blog </a>
</li>
<li class="nav-item">
<a href="./contact.html" class="p-0 text-body-secondary nav-link leading-6 text-sm"> Contact us </a>
</li>
</ul>
</div>
<div class="">
<a href="./index.html" class="link-body-emphasis d-flex align-items-center text-decoration-none">
<img src="./assets/logo/logo.png" height="24" alt="logo" loading="lazy">
</a>
</div>
<div class="order-last order-xl-first">
<p class="mb-0 text-body-secondary leading-6 text-sm">
©
<span class="current-year"></span>
Company, Inc Distributed by <a href="https://themewagon.com">ThemeWagon</a>
</p>
</div>
</div>
</div>
</footer>
<!-- Back to top button -->
<button type="button" class="btn btn-primary btn-back-to-top rounded-circle justify-content-center align-items-center p-2 text-white">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-caret-up-fill" viewBox="0 0 16 16"> <path d="m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z"/> </svg>
</button>
<!-- Bootstrap JavaScript: Bundle with Popper -->
<script src="./assets/libraries/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="./assets/libraries/glide/glide.min.js"></script>
<script src="./assets/libraries/aos/aos.js"></script>
<script src="./assets/js/scripts.js"></script>
<script src="./assets/php/contact/script.js"></script>
</body>
</html>