-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
739 lines (638 loc) · 40.9 KB
/
about.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
<!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 py-9 py-xl-10 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="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="position-absolute z-0 top-0 h-100 w-100">
<div class="container h-100 d-flex align-items-center">
<div class="max-w-2xl mx-auto mx-xl-0 text-center text-xl-start">
<h1 class="m-0 mt-7 text-white tracking-tight text-6xl fw-bold" data-aos-delay="0" data-aos="fade" data-aos-duration="3000">
About us
</h1>
<p class="m-0 mt-4 text-white text-lg leading-8" data-aos-delay="100" data-aos="fade" data-aos-duration="3000">
Making laundry a breeze, one clean garment at a time.
</p>
</div>
</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-first order-xl-last">
<div class="mx-auto max-w-2xl">
<h2 class="m-0 text-primary-emphasis text-base leading-7 fw-semibold">
About Freshen
</h2>
<p class="m-0 mt-2 text-body-emphasis text-4xl tracking-tight fw-bold">
Making laundry effortless, one clean fold 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>
<p class="m-0 mt-4 text-body-secondary text-lg leading-8">
With our state-of-the-art facilities and expert staff, we ensure that your garments are treated with the utmost care and attention. Trust Freshen for all your laundry needs and experience the difference today.
</p>
</div>
</div>
<div class="col-12 col-xl-6">
<div class="mx-auto max-w-2xl">
<div class="ratio ratio-4x3" data-aos-delay="200" data-aos="fade" data-aos-duration="3000">
<img src="./assets/img/bg/bg5.jpg" class="object-fit-cover rounded-3" alt="presentation">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Our purpose our future Our Principles -->
<div class="overflow-hidden py-6 py-sm-7 py-xl-8">
<div class="container">
<div class="row gy-5 row-cols-1 row-cols-lg-3">
<div class="col" data-aos-delay="0" data-aos="fade-left" data-aos-duration="3000">
<div class="bg-primary rounded-3 d-inline-flex align-items-center justify-content-center"
style="width: 2.5rem; height: 2.5rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="1.5rem" height="1.5rem" fill="currentColor" class="text-white bi bi-flag" viewBox="0 0 16 16"> <path d="M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12 12 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A20 20 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a20 20 0 0 0 1.349-.476l.019-.007.004-.002h.001M14 1.221c-.22.078-.48.167-.766.255-.81.252-1.872.523-2.734.523-.886 0-1.592-.286-2.203-.534l-.008-.003C7.662 1.21 7.139 1 6.5 1c-.669 0-1.606.229-2.415.478A21 21 0 0 0 3 1.845v6.433c.22-.078.48-.167.766-.255C4.576 7.77 5.638 7.5 6.5 7.5c.847 0 1.548.28 2.158.525l.028.01C9.32 8.29 9.86 8.5 10.5 8.5c.668 0 1.606-.229 2.415-.478A21 21 0 0 0 14 7.655V1.222z"/> </svg>
</div>
<h3 class="m-0 mt-3 text-body-emphasis text-base leading-7 fw-semibold">
Our Purpose
</h3>
<p class="m-0 mt-2 text-body-secondary text-base leading-7 max-w-lg">
To liberate you from the chore of laundry. We believe your time is precious and should be spent on things you enjoy. We offer a convenient and reliable laundry service that frees you from the tedious task of washing, drying, and folding your clothes.
</p>
</div>
<div class="col" data-aos-delay="100" data-aos="fade-left" data-aos-duration="3000">
<div class="bg-primary rounded-3 d-inline-flex align-items-center justify-content-center"
style="width: 2.5rem; height: 2.5rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="1.5rem" height="1.5rem" fill="currentColor" class="text-white bi bi-binoculars" viewBox="0 0 16 16"> <path d="M3 2.5A1.5 1.5 0 0 1 4.5 1h1A1.5 1.5 0 0 1 7 2.5V5h2V2.5A1.5 1.5 0 0 1 10.5 1h1A1.5 1.5 0 0 1 13 2.5v2.382a.5.5 0 0 0 .276.447l.895.447A1.5 1.5 0 0 1 15 7.118V14.5a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 14.5v-3a.5.5 0 0 1 .146-.354l.854-.853V9.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v.793l.854.853A.5.5 0 0 1 7 11.5v3A1.5 1.5 0 0 1 5.5 16h-3A1.5 1.5 0 0 1 1 14.5V7.118a1.5 1.5 0 0 1 .83-1.342l.894-.447A.5.5 0 0 0 3 4.882zM4.5 2a.5.5 0 0 0-.5.5V3h2v-.5a.5.5 0 0 0-.5-.5zM6 4H4v.882a1.5 1.5 0 0 1-.83 1.342l-.894.447A.5.5 0 0 0 2 7.118V13h4v-1.293l-.854-.853A.5.5 0 0 1 5 10.5v-1A1.5 1.5 0 0 1 6.5 8h3A1.5 1.5 0 0 1 11 9.5v1a.5.5 0 0 1-.146.354l-.854.853V13h4V7.118a.5.5 0 0 0-.276-.447l-.895-.447A1.5 1.5 0 0 1 12 4.882V4h-2v1.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5zm4-1h2v-.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5zm4 11h-4v.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5zm-8 0H2v.5a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5z"/> </svg>
</div>
<h3 class="m-0 mt-3 text-body-emphasis text-base leading-7 fw-semibold">
Our Future
</h3>
<p class="m-0 mt-2 text-body-secondary text-base leading-7 max-w-lg">
To become the leading provider of eco-friendly and innovative laundry solutions. We are committed to developing sustainable practices and utilizing cutting-edge technology to ensure the highest quality care for your garments.
</p>
</div>
<div class="col" data-aos-delay="200" data-aos="fade-left" data-aos-duration="3000">
<div class="bg-primary rounded-3 d-inline-flex align-items-center justify-content-center"
style="width: 2.5rem; height: 2.5rem;">
<svg xmlns="http://www.w3.org/2000/svg" width="1.5rem" height="1.5rem" fill="currentColor" class="text-white bi bi-award" viewBox="0 0 16 16"> <path d="M9.669.864 8 0 6.331.864l-1.858.282-.842 1.68-1.337 1.32L2.6 6l-.306 1.854 1.337 1.32.842 1.68 1.858.282L8 12l1.669-.864 1.858-.282.842-1.68 1.337-1.32L13.4 6l.306-1.854-1.337-1.32-.842-1.68zm1.196 1.193.684 1.365 1.086 1.072L12.387 6l.248 1.506-1.086 1.072-.684 1.365-1.51.229L8 10.874l-1.355-.702-1.51-.229-.684-1.365-1.086-1.072L3.614 6l-.25-1.506 1.087-1.072.684-1.365 1.51-.229L8 1.126l1.356.702z"/> <path d="M4 11.794V16l4-1 4 1v-4.206l-2.018.306L8 13.126 6.018 12.1z"/> </svg>
</div>
<h3 class="m-0 mt-3 text-body-emphasis text-base leading-7 fw-semibold">
Our Principles
</h3>
<p class="m-0 mt-2 text-body-secondary text-base leading-7 max-w-lg">
Happy Customers: Your satisfaction is our priority.
Quality Care: Gentle cleaning for long-lasting clothes.
Green Laundry: Sustainable practices for a cleaner planet.
Effortless Service: Convenient options to fit your life.
</p>
</div>
</div>
</div>
</div>
<!-- 2 landscap images -->
<div class="overflow-hidden pt-6 pt-sm-7 pt-xl-8 pb-7 pb-sm-8 pb-xl-9">
<div class="container">
<div class="row gx-lg-4 row-cols-1 row-cols-lg-2">
<div class="col">
<div class="ratio ratio-1x1" data-aos-delay="0" data-aos="fade" data-aos-duration="1000">
<img src="./assets/img/bg/bg3.jpg" class="object-fit-cover rounded-3" alt="presentation" loading="lazy">
</div>
</div>
<div class="col d-none d-lg-block">
<div class="ratio ratio-1x1" data-aos-delay="100" data-aos="fade" data-aos-duration="1000">
<img src="./assets/img/bg/bg4.jpg" class="object-fit-cover rounded-3" alt="presentation" loading="lazy">
</div>
</div>
</div>
</div>
</div>
<!-- Our Story -->
<div class="overflow-hidden py-7 py-sm-8 py-xl-9 bg-body-tertiary">
<div class="container">
<div class="row gy-5 justify-content-between align-items-center">
<div class="col-12 col-xl-6 col-xxl-5">
<div class="mx-auto mx-xl-0 max-w-2xl">
<h2 class="m-0 text-primary-emphasis text-base leading-7 fw-semibold">
Our Story
</h2>
<p class="m-0 mt-2 text-body-emphasis text-4xl tracking-tight fw-bold">
From Laundry Woes to Fresh Starts
</p>
<p class="m-0 mt-4 text-body text-lg leading-8">
It all began with a simple observation: laundry. It's a never-ending cycle, stealing precious time and often leaving us feeling overwhelmed. We, the founders of [Your Laundry Service Name], were no strangers to laundry piles that seemed to grow faster than we could fold them.
</p>
<p class="m-0 mt-4 text-body text-lg leading-8">
But our story isn't over yet! We're constantly looking for ways to improve and expand our services, always striving to make laundry a breeze for you.
Join us on our journey to a fresher, cleaner tomorrow!
</p>
</div>
</div>
<div class="col-12 col-xl-6">
<div class="mx-auto mx-xl-0 max-w-2xl">
<div class="ratio ratio-4x3" data-aos-delay="0" data-aos="fade" data-aos-duration="3000">
<img src="./assets/img/bg/bg2.jpg" class="object-fit-cover rounded-3" alt="presentation" loading="lazy">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Team -->
<div class="overflow-hidden py-7 py-sm-8 py-xl-9">
<div class="container">
<div class="row gx-sm-5 gy-5">
<div class="col-12 col-xl-4">
<div class="max-w-2xl">
<h2 class="m-0 text-body-emphasis tracking-tight text-4xl fw-bold">
Meet our leadership
</h2>
<p class="m-0 mt-4 text-body-secondary text-lg leading-8">
Our Executive Team: Meet the talented and experienced leaders who oversee our strategy, operations, and culture.
</p>
</div>
</div>
<div class="col-12 col-xl-8">
<div class="row gx-sm-4 gy-5">
<div class="col-12 col-md-6">
<div class="d-flex align-items-center gap-4">
<img class="rounded-circle" src="./assets/img/small-team/st1.jpg" width="64" height="64" alt="team" loading="lazy">
<div>
<h3 class="m-0 text-body-emphasis text-base leading-7 tracking-tight fw-semibold">
Bob Lee
</h3>
<p class="m-0 text-primary-emphasis text-sm leading-6 fw-semibold">
Software Engineer
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6">
<div class="d-flex align-items-center gap-4">
<img class="rounded-circle" src="./assets/img/small-team/st2.jpg" width="64" height="64" alt="team" loading="lazy">
<div>
<h3 class="m-0 text-body-emphasis text-base leading-7 tracking-tight fw-semibold">
Alice Chen
</h3>
<p class="m-0 text-primary-emphasis text-sm leading-6 fw-semibold">
Marketing Manager
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6">
<div class="d-flex align-items-center gap-4">
<img class="rounded-circle" src="./assets/img/small-team/st3.jpg" width="64" height="64" alt="team" loading="lazy">
<div>
<h3 class="m-0 text-body-emphasis text-base leading-7 tracking-tight fw-semibold">
David Jones
</h3>
<p class="m-0 text-primary-emphasis text-sm leading-6 fw-semibold">
Sales Representative
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6">
<div class="d-flex align-items-center gap-4">
<img class="rounded-circle" src="./assets/img/small-team/st4.jpg" width="64" height="64" alt="team" loading="lazy">
<div>
<h3 class="m-0 text-body-emphasis text-base leading-7 tracking-tight fw-semibold">
Emma Wilson
</h3>
<p class="m-0 text-primary-emphasis text-sm leading-6 fw-semibold">
Customer Support Specialist
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6">
<div class="d-flex align-items-center gap-4">
<img class="rounded-circle" src="./assets/img/small-team/st5.jpg" width="64" height="64" alt="team" loading="lazy">
<div>
<h3 class="m-0 text-body-emphasis text-base leading-7 tracking-tight fw-semibold">
Frank Garcia
</h3>
<p class="m-0 text-primary-emphasis text-sm leading-6 fw-semibold">
Project Manager
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6">
<div class="d-flex align-items-center gap-4">
<img class="rounded-circle" src="./assets/img/small-team/st6.jpg" width="64" height="64" alt="team" loading="lazy">
<div>
<h3 class="m-0 text-body-emphasis text-base leading-7 tracking-tight fw-semibold">
Grace Kim
</h3>
<p class="m-0 text-primary-emphasis text-sm leading-6 fw-semibold">
Graphic Designer
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- big centered image -->
<div class="overflow-hidden py-6 py-sm-7 py-xl-8">
<div class="container">
<div class="ratio ratio-16x9">
<img src="./assets/img/bg/bg8.jpg" class="object-fit-cover rounded-3" alt="presentation" loading="lazy">
</div>
</div>
</div>
<!-- Partners -->
<div class="overflow-hidden py-6 py-sm-7 py-xl-8">
<div class="container">
<div class="max-w-2xl">
<h2 class="m-0 text-primary-emphasis text-base leading-7 fw-semibold">
Our Partners
</h2>
<div class="m-0 mt-2 text-body-emphasis text-4xl tracking-tight fw-bold">
We're fortunate to have incredible investors.
</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/partners/logo1.png" class="img-fluid" alt="partners">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/partners/logo2.png" class="img-fluid" alt="partners">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/partners/logo3.png" class="img-fluid" alt="partners">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/partners/logo4.png" class="img-fluid" alt="partners">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/partners/logo5.png" class="img-fluid" alt="partners">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/partners/logo6.png" class="img-fluid" alt="partners">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/partners/logo7.png" class="img-fluid" alt="partners">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/partners/logo8.png" class="img-fluid" alt="partners">
</div>
</li>
<li class="glide__slide">
<div class="p-5">
<img src="./assets/img/partners/logo9.png" class="img-fluid" alt="partners">
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Call to action -->
<div class="pb-9 pt-7">
<div class="container">
<div class="py-6 position-relative text-white rounded-3">
<img src="./assets/img/bg/bg10.jpg" class="position-absolute z-n1 top-0 h-100 w-100 object-fit-cover rounded-3" loading="lazy" alt="Meeting">
<div class="position-absolute z-n1 top-0 h-100 w-100 bg-dark rounded-3"
style="opacity: 0.85; mix-blend-mode: multiply; filter: contrast(1.15) brightness(0.85);">
</div>
<div class="px-6">
<div class="mx-auto max-w-2xl">
<h2 class="m-0 tracking-tight text-4xl fw-bold text-center">
Reclaim Your Time. Experience Fresh.
</h2>
<p class="m-0 mt-4 text-lg leading-8 text-center">
Let us handle your laundry, so you can focus on what matters.
</p>
<div class="mt-4 pt-3 text-center">
<a href="javascript:;" class="btn btn-lg btn-primary text-white text-sm fw-semibold">
Schedule Your Pickup
</a>
</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>
</body>
</html>