-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·959 lines (955 loc) · 50.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="canonical" href="https://hummingbirdhammocks.com" />
<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>Hummingbird Hammocks</title>
<!-- Meta SEO -->
<meta name="title" content="Hummingbird Hammocks - Farewell" />
<meta
name="description"
content="After 10 wonderful years of serving outdoor enthusiasts like you, Hummingbird Hammocks is now closed."
/>
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="English" />
<meta name="author" content="Hummingbird Hammocks" />
<!-- Social media share -->
<meta property="og:title" content="Hummingbird Hammocks - Farewell" />
<meta property="og:site_name" content="Hummingbird Hammocks" />
<meta property="og:url" content=https://hummingbirdhammocks.com>
<meta
property="og:description"
content="After 10 wonderful years of serving outdoor enthusiasts like you, Hummingbird Hammocks is now closed."
/>
<meta property="og:type" content="" />
<meta property="og:image" content="./images/SingleHammockForestGreenPackedCloseUp.jpg" />
<meta name="twitter:card" content="summary" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<link href="./flowbite.css" rel="stylesheet" />
<link href="./output.css" rel="stylesheet" />
</head>
<body class="bg-[#fdfdf6]">
<header class="fixed w-full">
<nav class="bg-[#fdfdf6] border-gray-200 py-2.5">
<div class="flex flex-wrap items-center justify-between max-w-screen-xl px-4 mx-auto">
<a href="#" class="flex items-center">
<img src="./images/logo.svg" class="h-6 mr-3 sm:h-9" alt="Hummingbird Hammocks Logo" />
<span class="self-center text-xl font-semibold whitespace-nowrap"
>Hummingbird Hammocks</span
>
</a>
<div class="flex items-center lg:order-2">
<a
href="https://github.com/HummingbirdHammocks"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-300 font-medium rounded-3xl text-sm px-4 lg:px-5 py-2 lg:py-2.5 sm:mr-2 lg:mr-0 focus:outline-none"
>GitHub</a
>
</div>
</div>
</nav>
</header>
<!-- Start block -->
<section
class="bg-cover bg-center bg-no-repeat"
style="background-image: url('./images/SimpleVectorLakesideHammockCampsite.jpg')"
>
<div
class="grid max-w-screen-xl px-4 pt-20 pb-8 mx-auto lg:gap-8 xl:gap-0 lg:py-16 lg:grid-cols-12 lg:pt-28"
>
<div class="mr-auto place-self-center lg:col-span-7">
<div
class="flex flex-col max-w-lg p-6 mx-auto text-center text-white bg-[#0f220e] border border-gray-900 rounded-3xl shadow"
>
<h1
class="max-w-2xl mb-4 text-4xl font-extrabold leading-none tracking-tight md:text-5xl xl:text-6xl"
>
Blue Skies &<br />Happy Trails
</h1>
<p class="max-w-2xl mb-6 font-light lg:mb-4 md:text-lg lg:text-xl">
After 10 wonderful years of serving outdoor enthusiasts like you, Hummingbird Hammocks
is now closed.
</p>
<p class="max-w-2xl mb-6 font-light lg:mb-4 md:text-lg lg:text-xl">
This page and our open source repositories will remain live for the foreseeable future
as a tribute to the amazing community that supported us.
</p>
<p class="max-w-2xl mb-6 font-light lg:mb-4 md:text-lg lg:text-xl">
All of our open source licenses have been updated to MIT, so feel free to use our
designs and code in any way you see fit.
</p>
</div>
</div>
</div>
</section>
<!-- End block -->
<!-- Start block -->
<section class="bg-[#f3f3ec]">
<div class="max-w-screen-xl px-4 py-8 mx-auto space-y-12 lg:space-y-20 lg:py-24 lg:px-6">
<!-- Row -->
<div class="items-center gap-8 lg:grid lg:grid-cols-2 xl:gap-16">
<div class="text-gray-500 sm:text-lg">
<h2 class="mb-4 text-3xl font-extrabold tracking-tight text-gray-900">
What was Hummingbird Hammocks?
</h2>
<p class="mb-8 font-light lg:text-xl">
Hummingbird Hammocks was a small business that specialized in ultralight camping and
backpacking gear. We were known for our high-quality, lightweight hammocks and tarps
that were perfect for backpacking, camping, and other outdoor adventures.
</p>
<!-- List -->
<ul role="list" class="pt-8 space-y-5 border-t border-gray-200 my-7">
<li class="flex space-x-3">
<!-- Icon -->
<svg
width="24px"
height="24px"
viewBox="0 0 512 512"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill="#000000"
d="M470.7 20L368.2 49.81l41.5-28.09c-26.2 5.92-59.3 17.5-100.9 36.19l-67.9 70.79L265 79.25c-23.3 12.96-48 29.95-71.8 49.85l-15.8 64.3-3.4-47.6c-23.5 21.6-45.6 45.6-63.9 70.9-19.23 26.5-34.26 54.5-41.79 82.4l-28.12-18.8c2.52 23.7 10.31 44.3 23.09 63.2l-33.62-10.3c7.64 23.5 20.13 38.7 41.25 51-11.83 33.3-17.38 68.1-23.34 102.8l18.4 3.1C87.31 277.4 237.9 141.8 374 81.72l6.9 17.38c-121.7 54.5-216.3 146.5-265.8 279.1 18.1.1 35.8-2.1 52.2-6.3l4.9-60.9 13.1 55.5c10.9-4 20.9-8.8 29.8-14.4l-20.7-43.5 32.8 34.8c8-6.4 14.6-13.6 19.6-21.5 30.4-47.5 62.2-94.7 124.8-134.2l-45.7-16.2 70.1 2.1c11.4-5.8 23.4-12.9 32.5-19.6l-49.7-4 74.7-17.6c5.8-5.8 11.2-11.9 16.1-18 17.3-21.94 29-44.78 26.2-65.55-1.3-10.39-7.5-20.16-17.6-25.63-2.5-1.3-5.2-2.45-7.5-3.22z"
/>
</svg>
<span class="text-base font-medium leading-tight text-gray-900"
>Lightest Hammock & Tree Straps</span
>
</li>
<li class="flex space-x-3">
<!-- Icon -->
<svg
width="24px"
height="24px"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6.25 4.5C5.2835 4.5 4.5 5.2835 4.5 6.25V7.75C4.5 8.16421 4.16421 8.5 3.75 8.5C3.33579 8.5 3 8.16421 3 7.75V6.25C3 4.45507 4.45507 3 6.25 3H7.75C8.16421 3 8.5 3.33579 8.5 3.75C8.5 4.16421 8.16421 4.5 7.75 4.5H6.25Z"
fill="#212121"
/>
<path
d="M10.2 8C8.95737 8 7.95001 9.00736 7.95001 10.25V13.75C7.95001 14.9926 8.95737 16 10.2 16H13.7C14.9427 16 15.95 14.9926 15.95 13.75V10.25C15.95 9.00736 14.9427 8 13.7 8H10.2Z"
fill="#212121"
/>
<path
d="M17.75 4.5C18.7165 4.5 19.5 5.2835 19.5 6.25V7.75C19.5 8.16421 19.8358 8.5 20.25 8.5C20.6642 8.5 21 8.16421 21 7.75V6.25C21 4.45507 19.5449 3 17.75 3H16.25C15.8358 3 15.5 3.33579 15.5 3.75C15.5 4.16421 15.8358 4.5 16.25 4.5L17.75 4.5Z"
fill="#212121"
/>
<path
d="M17.75 19.5C18.7165 19.5 19.5 18.7165 19.5 17.75V16.25C19.5 15.8358 19.8358 15.5 20.25 15.5C20.6642 15.5 21 15.8358 21 16.25V17.75C21 19.5449 19.5449 21 17.75 21H16.25C15.8358 21 15.5 20.6642 15.5 20.25C15.5 19.8358 15.8358 19.5 16.25 19.5H17.75Z"
fill="#212121"
/>
<path
d="M6.25 19.5C5.2835 19.5 4.5 18.7165 4.5 17.75L4.5 16.25C4.5 15.8358 4.16421 15.5 3.75 15.5C3.33579 15.5 3 15.8358 3 16.25V17.75C3 19.5449 4.45507 21 6.25 21H7.75C8.16421 21 8.5 20.6642 8.5 20.25C8.5 19.8358 8.16421 19.5 7.75 19.5H6.25Z"
fill="#212121"
/>
</svg>
<span class="text-base font-medium leading-tight text-gray-900"
>Smallest Packing Hammock & Tree Straps</span
>
</li>
<li class="flex space-x-3">
<!-- Icon -->
<svg
fill="#000000"
height="24px"
width="24px"
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 512 512"
xml:space="preserve"
>
<g>
<g>
<path
d="M488.282,71.424c-73.859-31.376-152.008-47.285-232.278-47.285S97.582,40.049,23.726,71.424
c-20.298,8.62-29.417,32.443-20.018,52.412l27.03,57.442c7.976,16.949,27.392,26.212,46.025,20.804
c0.649,1.18,92.078,167.358,146.625,266.474c14.17,25.749,51.169,25.734,65.33-0.019l146.519-266.456
c18.661,5.423,38.061-3.866,46.031-20.803l27.031-57.443C517.682,103.898,508.579,80.045,488.282,71.424z M110.348,189.474
c8.43-2.868,16.927-5.472,25.478-7.831l43.983,134.19L110.348,189.474z M256,434.294l-85.46-260.736
c56.275-10.805,114.644-10.805,170.92-0.001L256,434.294z M332.192,315.833l43.983-134.193c8.551,2.358,17.047,4.962,25.478,7.83
L332.192,315.833z M476.171,108.718l-27.031,57.443c-0.798,1.697-2.738,2.389-4.416,1.686
c-59.997-25.141-123.604-37.936-188.723-37.936c-64.896,0-128.547,12.72-188.723,37.936c-1.731,0.726-3.659-0.079-4.416-1.686
l-27.03-57.443c-0.822-1.746-0.038-3.846,1.773-4.615c69.443-29.499,142.922-44.458,218.396-44.458s148.953,14.957,218.397,44.458
C476.207,104.871,476.98,107.001,476.171,108.718z"
/>
</g>
</g>
</svg>
<span class="text-base font-medium leading-tight text-gray-900"
>Real Parachute Materials and Construction</span
>
</li>
</ul>
</div>
<img
class="w-full mb-4 rounded-3xl lg:mb-0 lg:flex"
src="./images/SingleHammockForestGreenPackedCloseUp.jpg"
alt="Forest Green Single Hammock packed up close by granite rocks"
/>
</div>
<!-- Row -->
<div class="items-center gap-8 lg:grid lg:grid-cols-2 xl:gap-16">
<img
class="w-full mb-4 rounded-3xl lg:mb-0 lg:flex"
src="./images/SingleHammockSlateGrayInCanyon.jpg"
alt="Slate Gray Single Hammock hanging in a canyon"
/>
<div class="text-gray-500 sm:text-lg">
<h2 class="mb-4 text-3xl font-extrabold tracking-tight text-gray-900">
Why did we close?
</h2>
<p class="mb-8 font-light lg:text-xl">
There's never a simple answer to a question like this, the factors that lead to a
business closing are complex and varied. In our case, it was a combination of personal
reasons, market changes, and some unexpected challenges.
</p>
<!-- List -->
<ul role="list" class="pt-8 space-y-5 border-t border-gray-200 my-7">
<li class="flex space-x-3">
<!-- Icon -->
<svg
version="1.1"
id="Uploaded to svgrepo.com"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="60px"
height="60px"
viewBox="0 0 32 32"
xml:space="preserve"
>
<style type="text/css">
.afiado_een {
fill: #0b1719;
}
</style>
<path
class="afiado_een"
d="M6,11h4v17H6V11z M22,16v12h4V16H22z M14,28h4V4h-4V28z"
/>
</svg>
<span class="text-base font-medium leading-tight text-gray-900"
><strong>Market Changes:</strong> The post-COVID-19 landscape has brought
significant shifts in the outdoor gear market, making it challenging for us to
maintain viability with our current business model and cash flow.</span
>
</li>
<li class="flex space-x-3">
<!-- Icon -->
<svg
height="100px"
width="100px"
version="1.1"
id="_x32_"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 512 512"
xml:space="preserve"
>
<style type="text/css">
.st0 {
fill: #000000;
}
</style>
<g>
<path
class="st0"
d="M313.017,170.176c-2.922-0.841-5.968,0.854-6.801,3.784c-0.603,2.126-1.896,3.978-3.62,5.3
c-1.73,1.322-3.856,2.097-6.205,2.105c-2.37-0.008-4.503-0.791-6.248-2.134c-1.731-1.336-3.024-3.217-3.612-5.365
c-0.805-2.93-3.835-4.654-6.765-3.842c-2.938,0.811-4.654,3.835-3.85,6.765c1.25,4.51,3.921,8.396,7.505,11.16
c3.57,2.765,8.101,4.424,12.97,4.424c4.826,0,9.33-1.63,12.891-4.366c3.57-2.729,6.248-6.572,7.52-11.031
C317.636,174.054,315.941,171.009,313.017,170.176z"
/>
<path
class="st0"
d="M236.073,176.977c0.833-2.916-0.861-5.968-3.784-6.801c-2.916-0.841-5.968,0.854-6.801,3.784
c-0.61,2.126-1.903,3.978-3.627,5.3c-1.731,1.322-3.85,2.097-6.205,2.105c-2.37-0.008-4.503-0.791-6.242-2.134
c-1.738-1.336-3.023-3.217-3.612-5.365c-0.811-2.93-3.834-4.654-6.772-3.842c-2.937,0.811-4.654,3.835-3.842,6.765
c1.242,4.51,3.914,8.396,7.497,11.16c3.57,2.765,8.108,4.424,12.97,4.424c4.833,0,9.336-1.63,12.898-4.366
C232.123,185.279,234.795,181.436,236.073,176.977z"
/>
<path
class="st0"
d="M284.772,220.519c-6.549,9.078-17.193,14.737-28.77,14.729c-11.562,0.008-22.213-5.659-28.77-14.729
c-1.781-2.464-5.221-3.023-7.691-1.236c-2.464,1.774-3.017,5.222-1.236,7.678c8.597,11.893,22.522,19.29,37.696,19.297
c15.196,0,29.115-7.404,37.697-19.297c1.781-2.464,1.221-5.904-1.243-7.685C289.994,217.496,286.553,218.056,284.772,220.519z"
/>
<path
class="st0"
d="M411.873,173.588C406.257,58.35,274.259,0,256.003,0c-18.256,0-150.254,58.35-155.877,173.588
C95.084,277.024,116.981,512,256.003,512C395.025,512,416.921,277.024,411.873,173.588z M242.465,83.443
c4.116-0.531,8.309-0.818,12.576-0.818c5.781,0,11.432,0.517,16.934,1.48c0.567,0.653,1.156,1.4,1.745,2.291
c2.485,3.763,4.991,9.688,5.006,19.053c0,7.081-1.487,16.173-5.696,27.621c-13.271-10.68-20.834-20.504-25.114-28.612
c-4.654-8.826-5.494-15.656-5.494-19.606C242.422,84.327,242.437,83.86,242.465,83.443z M232.993,85.117
c0.021,5.342,1.271,13.695,6.585,23.75c2.37,4.503,5.559,9.328,9.789,14.392c-4.23-1.702-8.46-3.296-12.432-4.97
c-6.844-2.88-12.848-6.105-16.913-10.406c-2.047-2.147-3.655-4.546-4.797-7.469c-0.94-2.42-1.551-5.242-1.738-8.582
C219.671,88.944,226.185,86.675,232.993,85.117z M339.626,384.268c-2.033,2.262-5.516,2.456-7.778,0.431l-103.969-93.024
c6.435,1.566,13.07,2.578,19.879,3.009l24.346,21.782l27.29-30.501c5.214-2.197,10.219-4.776,15.002-7.699
c1.882,2.061,1.968,5.25,0.064,7.376l-34.148,38.17l58.874,52.684C341.457,378.522,341.651,381.998,339.626,384.268z
M376.97,204.03c-3.346,3.332-7.885,5.365-12.977,5.372c-2.097,0-4.123-0.374-6.076-1.056l-7.448-2.621l-2.592,7.454
c-6.665,19.204-19.14,35.729-35.312,47.428c-16.188,11.706-36.009,18.593-57.524,18.6c-21.423-0.007-41.173-6.83-57.317-18.443
c-16.137-11.613-28.619-28.008-35.355-47.075l-2.442-6.902l-7.052,1.932c-1.616,0.445-3.225,0.682-4.869,0.682
c-5.085-0.007-9.631-2.04-12.97-5.372c-3.332-3.347-5.372-7.886-5.38-12.977c0.008-5.085,2.048-9.631,5.38-12.97
c3.34-3.332,7.886-5.372,12.97-5.379c0.323,0,0.804,0.028,1.465,0.079l7.296,0.574l1.092-7.232
c3.562-23.62,15.534-44.49,32.799-59.471c4.309-3.742,8.948-7.117,13.86-10.062c0.424,2.664,1.085,5.164,1.997,7.462
c1.444,3.634,3.484,6.794,5.896,9.494c4.215,4.726,9.501,8.05,15.017,10.779c8.28,4.072,17.228,6.887,24.748,10.4
c3.756,1.745,7.138,3.641,9.918,5.824c2.78,2.19,4.956,4.631,6.5,7.598c0.833,1.601,2.492,2.585,4.294,2.535
c1.81-0.043,3.419-1.099,4.173-2.736c8.158-17.681,11.096-31.585,11.103-42.501c0.006-7.448-1.394-13.48-3.369-18.227
c12.928,4.108,24.691,10.794,34.702,19.498c17.265,15.023,29.229,35.944,32.748,59.614l1.163,7.806l7.807-1.192
c1.034-0.157,1.953-0.244,2.779-0.244c5.092,0.007,9.631,2.047,12.977,5.379c3.333,3.34,5.372,7.885,5.372,12.97
C382.342,196.144,380.303,200.683,376.97,204.03z"
/>
</g>
</svg>
<span class="text-base font-medium leading-tight text-gray-900"
><strong>Personal Life Changes:</strong> Hummingbird Hammocks has been run
entirely by a team of two. Our family has now grown to include two young boys, and
we've decided to shift our focus to these new adventures and priorities. Balancing
the demands of running every aspect of the business with raising our children has
become increasingly challenging.
</span>
</li>
<li class="flex space-x-3">
<!-- Icon -->
<?xml version="1.0" encoding="utf-8"?>
<svg
fill="#000000"
width="60px"
height="60px"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M21.9,11.553l-3-6a.846.846,0,0,0-.164-.225A.987.987,0,0,0,18,5H13V3a1,1,0,0,0-2,0V5H6a.987.987,0,0,0-.731.328.846.846,0,0,0-.164.225l-3,6a.982.982,0,0,0-.1.447H2a4,4,0,0,0,8,0H9.99a.982.982,0,0,0-.1-.447L7.618,7H11V20H6a1,1,0,0,0,0,2H18a1,1,0,0,0,0-2H13V7h3.382l-2.277,4.553a.982.982,0,0,0-.1.447H14a4,4,0,0,0,8,0h-.01A.982.982,0,0,0,21.9,11.553ZM7.882,12H4.118L6,8.236Zm8.236,0L18,8.236,19.882,12Z"
/>
</svg>
<span class="text-base font-medium leading-tight text-gray-900"
><strong>Legal Challenges:</strong> Unfortunately, we've faced unexpected legal
hurdles, including a lawsuit from a firm that targets small businesses with ADA
compliance issues. This has put additional strain on our resources.</span
>
</li>
</ul>
<p class="font-light lg:text-xl">
We want to express our heartfelt gratitude for your support and loyalty throughout
this incredible journey. From the bottom of our hearts, thank you for being part of
the Hummingbird Hammocks family. Your support has meant the world to us, and we hope
our products have enhanced your outdoor experiences as much as you've enriched our
lives.
</p>
</div>
</div>
</div>
</section>
<!-- End block -->
<!-- Start block -->
<section class="bg-[#fdfdf6]">
<div
class="items-center max-w-screen-xl px-4 py-8 mx-auto lg:grid lg:grid-cols-4 lg:gap-16 xl:gap-24 lg:py-24 lg:px-6"
>
<div class="col-span-2 mb-8">
<p class="text-lg font-medium text-[#34542a]">What We Achieved</p>
<h2 class="mt-3 mb-4 text-3xl font-extrabold tracking-tight text-gray-900 md:text-3xl">
10 Years of Outdoor Fun
</h2>
<p class="font-light text-gray-500 sm:text-xl">
We started in 2014 with a Kickstarter campaign and have since grown to serve over 18,000
happy campers. We've sold over 50,000 pieces of gear and planted over 21,000 trees in
partnership with Ecologi and Eden Reforestation Projects. We've been rated 4.83 out of 5
stars by our customers on average over 340+ independently verified reviews.
</p>
<div class="pt-6 mt-6 space-y-4 border-t border-gray-200">
<div>
<a
href="https://ecologi.com/hummingbirdhammocks"
class="inline-flex items-center text-base font-medium text-[#34542a] hover:text-[#0f220e]"
>
Ecologi Forest
<svg
class="w-5 h-5 ml-1"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</div>
<div>
<a
href="https://www.eden-plus.org/"
class="inline-flex items-center text-base font-medium text-[#34542a] hover:text-[#0f220e]"
>
Eden Reforestation Projects
<svg
class="w-5 h-5 ml-1"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</a>
</div>
</div>
</div>
<div class="col-span-2 space-y-8 md:grid md:grid-cols-2 md:gap-12 md:space-y-0 text-center">
<div>
<?xml version="1.0" encoding="iso-8859-1"?>
<div class="flex flex-col items-center">
<svg
class="my-2"
fill="#34542a"
height="80px"
width="80px"
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 490 490"
xml:space="preserve"
>
<path
d="M489.676,138.714c-0.2-0.376-5-9.314-14.242-18.341c-12.355-12.068-26.794-18.447-41.755-18.447
c-7.993,0-16.194,1.78-24.528,5.313c2.51-2.207,5.296-4.541,8.328-6.912c13.121-10.259,33.609-23.277,56.707-27.033
c1.197-0.195,2.13-1.145,2.303-2.346c0.172-1.201-0.456-2.375-1.55-2.898c-0.745-0.356-18.483-8.729-39.616-8.729
c-20.957,0-47.989,8.464-60.727,47.654c-1.759-2.531-4.249-5.624-7.587-8.719c-7.049-6.532-19.381-14.32-38.109-14.32
c-14.379,0-30.551,4.561-48.067,13.556c-1.092,0.561-1.686,1.771-1.461,2.978c0.226,1.207,1.216,2.122,2.436,2.252
c0.126,0.014,12.723,1.393,27.245,6.217c12.148,4.035,27.996,11.313,37.191,23.523c-2.914,0.816-7.169,2.216-12.021,4.47
c-8.232,3.823-19.816,10.943-28.252,23.151c-10.706,15.494-13.913,35.238-9.533,58.684c0.212,1.132,1.1,2.016,2.232,2.222
c1.133,0.206,2.275-0.309,2.871-1.293c0.248-0.41,23.061-37.725,46.623-49.977c-2.263,5.234-5.013,13.101-6.071,22.229
c-1.118,9.652-0.099,18.701,3.032,26.895c3.913,10.24,11.121,19.101,21.426,26.334c0.476,0.334,1.034,0.504,1.595,0.504
c0.432,0,0.864-0.102,1.263-0.305c0.916-0.468,1.498-1.404,1.513-2.434c0.003-0.185,0.286-18.783,2.769-39.558
c2.065-17.293,5.023-31.023,8.718-40.688c5.351,11.815,11.827,26.998,14.773,37.315c5.579,19.538,8.387,39.223,8.415,58.404
c-10.027,4.482-31.301,13.723-56.053,22.874c-45.152,16.694-81.302,25.518-104.541,25.518c-23.239,0-59.389-8.823-104.541-25.518
c-24.752-9.151-46.025-18.392-56.052-22.874c0.028-19.182,2.835-38.867,8.414-58.404c2.945-10.314,9.423-25.498,14.773-37.314
c3.69,9.656,6.646,23.369,8.713,40.64c2.485,20.777,2.771,39.419,2.773,39.604c0.015,1.029,0.597,1.966,1.513,2.434
c0.398,0.203,0.831,0.305,1.263,0.305c0.561,0,1.119-0.17,1.595-0.504c10.305-7.233,17.513-16.094,21.426-26.334
c3.131-8.193,4.15-17.242,3.032-26.895c-1.059-9.129-3.809-16.995-6.071-22.229c23.563,12.252,46.375,49.566,46.623,49.977
c0.597,0.985,1.739,1.499,2.872,1.293c1.132-0.206,2.02-1.09,2.231-2.222c4.38-23.445,1.173-43.189-9.533-58.684
c-8.436-12.208-20.02-19.328-28.252-23.151c-4.853-2.254-9.107-3.653-12.021-4.47c9.195-12.211,25.043-19.488,37.191-23.523
c14.523-4.824,27.119-6.203,27.244-6.217c1.221-0.129,2.211-1.045,2.437-2.251c0.226-1.206-0.369-2.418-1.461-2.979
c-17.517-8.995-33.688-13.556-48.067-13.556c-18.729,0-31.061,7.788-38.109,14.32c-3.338,3.095-5.828,6.188-7.587,8.719
C102.668,67.784,75.635,59.32,54.678,59.32c-21.133,0-38.871,8.372-39.616,8.729c-1.094,0.523-1.722,1.697-1.549,2.898
c0.172,1.201,1.104,2.15,2.302,2.346c23.055,3.75,43.509,16.729,56.607,26.955c3.068,2.396,5.888,4.757,8.425,6.989
c-8.333-3.532-16.534-5.312-24.525-5.312c-14.961,0-29.399,6.379-41.755,18.447C5.324,129.4,0.525,138.338,0.324,138.714
c-0.509,0.959-0.413,2.126,0.246,2.989c0.659,0.861,1.761,1.261,2.819,1.021c18.037-4.09,34.521-6.162,48.993-6.162
c19.682,0,31.975,3.713,39.326,7.398c-7.176,9.498-18.623,27.597-30.49,58.279c-14.813,38.3-19.266,77.521-12.877,113.424
c7.811,43.906,28.209,85.445,55.965,113.966c0.652,0.671,1.55,1.05,2.486,1.05h58.464c1.452,0,2.751-0.904,3.255-2.267
s0.105-2.894-0.998-3.839c-27.708-23.732-69.08-88.088-77.678-120.827c-2.681-10.684-4.361-21.735-5.06-33.015
c1.7,1.65,3.531,3.446,5.479,5.357c15.058,14.767,37.813,37.081,64.374,55.604c14.669,10.229,28.997,18.222,42.587,23.756
c16.094,6.555,31.668,9.877,46.288,9.877c0.502,0,0.994-0.004,1.495-0.011c0.498,0.007,0.998,0.011,1.495,0.011
c14.621,0,30.195-3.322,46.29-9.877c13.59-5.533,27.917-13.525,42.586-23.756c26.56-18.522,49.315-40.837,64.372-55.604
c1.948-1.91,3.78-3.707,5.48-5.357c-0.698,11.277-2.378,22.328-5.06,33.012c-8.597,32.738-49.97,97.099-77.678,120.83
c-1.104,0.945-1.502,2.477-0.998,3.839c0.504,1.362,1.803,2.267,3.255,2.267h58.464c0.936,0,1.834-0.379,2.486-1.05
c27.756-28.521,48.154-70.06,55.965-113.966c6.389-35.903,1.935-75.125-12.877-113.424c-11.867-30.683-23.314-48.781-30.49-58.279
c7.352-3.686,19.645-7.398,39.326-7.398c14.473,0,30.957,2.072,48.993,6.162c1.059,0.239,2.16-0.16,2.819-1.021
C490.089,140.84,490.185,139.673,489.676,138.714z"
/>
</svg>
</div>
<h3 class="mb-2 text-2xl font-bold">Ultralight Gear Sold</h3>
<p class="font-light text-gray-500">
Over 50,000 pieces of gear sold to outdoor enthusiasts
</p>
</div>
<div>
<div class="flex flex-col items-center">
<svg
class="my-2"
width="80px"
height="80px"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="12"
cy="12"
r="10"
stroke="#34542a"
stroke-width="2"
stroke-linecap="round"
/>
<path
d="M9.40192 13.5C9.66523 13.9561 10.0439 14.3348 10.5 14.5981C10.9561 14.8614 11.4734 15 12 15C12.5266 15 13.0439 14.8614 13.5 14.5981C13.9561 14.3348 14.3348 13.9561 14.5981 13.5"
stroke="#34542a"
stroke-width="2"
stroke-linecap="round"
/>
<rect
x="6.875"
y="7.875"
width="3.25"
height="2.25"
rx="1.125"
fill="#34542a"
stroke="#34542a"
stroke-width="0.25"
stroke-linecap="round"
/>
<rect
x="13.875"
y="7.875"
width="3.25"
height="2.25"
rx="1.125"
fill="#34542a"
stroke="#34542a"
stroke-width="0.25"
stroke-linecap="round"
/>
</svg>
</div>
<h3 class="mb-2 text-2xl font-bold">Happy Campers</h3>
<p class="font-light text-gray-500">
18,000+ happy hikers have used our gear to explore the great outdoors
</p>
</div>
<div>
<div class="flex flex-col items-center">
<svg
class="my-2"
fill="#34542a"
height="80px"
width="80px"
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 490.657 490.657"
xml:space="preserve"
>
<g>
<g>
<g>
<path
d="M202.662,383.759h-36.075l-18.368-36.779c-3.627-7.232-15.467-7.232-19.093,0l-18.389,36.779H74.662
c-4.309,0-8.213,2.603-9.856,6.592c-1.643,3.989-0.725,8.576,2.304,11.627l27.968,27.968l-9.536,47.723
c-0.875,4.331,1.024,8.768,4.779,11.115c3.755,2.368,8.533,2.176,12.075-0.491l36.267-27.2l36.267,27.2
c1.899,1.408,4.139,2.133,6.4,2.133c0.171,0.021,0.32,0,0.427,0c5.888,0,10.667-4.779,10.667-10.667
c0-1.771-0.427-3.456-1.195-4.907l-8.981-44.907l27.968-27.968c3.051-3.051,3.968-7.637,2.304-11.627
C210.854,386.361,206.971,383.759,202.662,383.759z"
/>
<path
d="M110.929,296.292c1.899,1.408,4.139,2.133,6.4,2.133c0.149,0,0.32,0.021,0.427,0c5.888,0,10.667-4.779,10.667-10.667
c0-1.771-0.427-3.456-1.195-4.907l-8.981-44.907l27.968-27.968c3.051-3.051,3.968-7.637,2.304-11.627s-5.547-6.592-9.856-6.592
h-36.075L84.219,154.98c-3.627-7.232-15.467-7.232-19.093,0l-18.389,36.779H10.662c-4.309,0-8.213,2.603-9.856,6.592
c-1.643,3.989-0.725,8.576,2.304,11.627l27.968,27.968l-9.536,47.723c-0.875,4.331,1.024,8.768,4.779,11.115
c3.755,2.368,8.512,2.197,12.075-0.491l36.267-27.2L110.929,296.292z"
/>
<path
d="M287.995,149.092c0.149,0,0.32,0.021,0.427,0c5.888,0,10.667-4.779,10.667-10.667c0-1.771-0.427-3.456-1.195-4.907
l-8.981-44.907l27.968-27.968c3.051-3.051,3.968-7.637,2.304-11.627s-5.547-6.592-9.856-6.592h-36.075L254.886,5.647
c-3.627-7.232-15.467-7.232-19.093,0l-18.389,36.779h-36.075c-4.309,0-8.213,2.603-9.856,6.592
c-1.643,3.989-0.725,8.576,2.304,11.627l27.968,27.968l-9.536,47.723c-0.875,4.331,1.024,8.768,4.779,11.115
c3.776,2.368,8.512,2.197,12.075-0.491l36.267-27.2l36.267,27.2C283.494,148.367,285.755,149.092,287.995,149.092z"
/>
<path
d="M489.851,198.351c-1.643-3.989-5.547-6.592-9.856-6.592h-36.075l-18.368-36.779c-3.627-7.232-15.467-7.232-19.093,0
l-18.389,36.779h-36.075c-4.309,0-8.213,2.603-9.856,6.592c-1.643,3.989-0.725,8.576,2.304,11.627l27.968,27.968l-9.536,47.723
c-0.875,4.331,1.024,8.768,4.779,11.115c3.755,2.368,8.533,2.197,12.075-0.491l36.267-27.2l36.267,27.2
c1.899,1.408,4.139,2.133,6.4,2.133c0.171,0,0.32,0.021,0.427,0c5.888,0,10.667-4.779,10.667-10.667
c0-1.771-0.427-3.456-1.195-4.907l-8.981-44.907l27.968-27.968C490.577,206.905,491.494,202.34,489.851,198.351z"
/>
<path
d="M415.995,383.759h-36.075l-18.368-36.779c-3.627-7.232-15.467-7.232-19.093,0l-18.389,36.779h-36.075
c-4.309,0-8.213,2.603-9.856,6.592s-0.725,8.576,2.304,11.627l27.968,27.968l-9.536,47.723
c-0.875,4.331,1.024,8.768,4.779,11.115c3.755,2.368,8.512,2.176,12.075-0.491l36.267-27.2l36.267,27.2
c1.899,1.408,4.139,2.133,6.4,2.133c0.171,0.021,0.341,0,0.427,0c5.888,0,10.667-4.779,10.667-10.667
c0-1.771-0.427-3.456-1.195-4.907l-8.981-44.907l27.968-27.968c3.051-3.051,3.968-7.637,2.304-11.627
C424.187,386.361,420.305,383.759,415.995,383.759z"
/>
</g>
</g>
</g>
</svg>
</div>
<h3 class="mb-2 text-2xl font-bold">4.83 Stars</h3>
<p class="font-light text-gray-500">
Out of 5 stars, our gear has been rated 4.83 by our customers on average over 340+
independently verified reviews.
</p>
</div>
<div>
<div class="flex flex-col items-center">
<svg
class="my-2"
fill="#34542a"
version="1.1"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="80px"
height="80px"
viewBox="0 0 260 249"
enable-background="new 0 0 260 249"
xml:space="preserve"
>
<path
d="M195.02,228.07l-3.99-52.89l15.88-28.26c2.4,0.5,4.79,0.7,7.29,0.7c19.78,0,35.86-16.08,35.86-35.86
c0-5.1-1.1-9.89-2.9-14.18c3-4,4.7-9.19,4.7-14.79c0-14.78-11.99-26.77-26.77-26.77c-4.2,0-8.19,1-11.79,2.7
c-0.76-2.99-2.15-5.75-4.01-8.16c-0.18,5.77-1.67,11.42-4.38,16.45c1.6,4.8,2.4,9.89,2.4,15.08c0,26.47-21.58,48.05-48.04,48.05
c-1.3,0-2.5-0.1-3.8-0.2l-4.8,8.57c3.58,1.55,7.54,2.41,11.69,2.41c1.4,0,2.8-0.1,4.1-0.3l12.78,23.68
c-0.27,13.02-3.47,53.58-4.16,62.12c-9.29-0.59-19.09-1.01-29.26-1.23c-0.66-0.01-1.33-0.02-2.01-0.04
c-2.02-0.03-4.06-0.06-6.12-0.08l-4.3-72.26l17.68-31.56c2.6,0.5,5.3,0.8,8.09,0.8c22.18,0,40.06-17.98,40.06-40.06
c0-5.59-1.2-10.98-3.3-15.88c3.3-4.79,5.2-10.59,5.2-16.88c0-16.48-13.39-29.86-29.87-29.86c-4.69,0-9.09,1-13.08,2.99
C155.27,10.98,143.99,2,131,2c-12.68,0-22.97,8.48-25.97,19.46c-2.6-0.99-5.39-1.49-8.39-1.49c-13.39,0-24.17,10.88-24.17,24.17
c0,5.59,1.89,10.78,5.09,14.88c-5.59,5.89-8.99,13.79-8.99,22.58c0,18.17,14.68,32.86,32.86,32.86c1.6,0,3.1-0.1,4.6-0.3
l14.28,26.46c-0.35,14.1-3.72,70.24-4.59,84.5c-1.35,0.02-2.7,0.05-4.04,0.07v0.06c-9.39,0.23-18.46,0.63-27.08,1.18
c-0.73-9.13-3.88-49.04-4.14-61.83l12.78-23.67c1.3,0.19,2.7,0.3,4.1,0.3c4.56,0,8.88-1.04,12.71-2.9l-8.62-15.88
c-22.57,0-40.85-18.38-40.85-40.85c0-8.39,2.5-16.39,7.19-23.18c-2.29-4.39-3.39-9.29-3.39-14.28c0-0.74,0.03-1.48,0.07-2.21
c-8.89,2.08-15.91,8.7-18.05,17.09c-3.6-1.8-7.49-2.69-11.79-2.69c-14.78,0-26.77,11.98-26.77,26.76c0,5.3,1.7,10.49,4.7,14.79
c-1.9,4.39-2.9,9.19-2.9,14.18c0,19.78,16.08,35.86,35.86,35.86c2.5,0,4.89-0.3,7.29-0.7l15.88,28.27l-3.97,52.58
C27.08,231.89,1.85,238.92,1.85,247h256C257.85,238.91,232.65,231.89,195.02,228.07z M68.87,162.7l-9.49-17.48
c3.5-1.5,6.79-3.5,9.59-5.99c0.1-0.1,0.2-0.1,0.3-0.2C69.17,142.82,68.97,157.01,68.87,162.7z M79.96,137.33h0.3
c1.9,1,3.99,1.8,6.19,2.3l-6.29,12.58C80.06,148.71,79.96,139.53,79.96,137.33z M120.22,126.68l-7-14c2.4-0.6,4.8-1.5,6.9-2.6h0.3
C120.42,112.48,120.32,122.78,120.22,126.68z M132.42,111.98c0.2,0.1,0.3,0.1,0.4,0.2c3.2,2.8,6.8,5,10.7,6.7l-10.6,19.5
C132.72,131.98,132.62,116.08,132.42,111.98z M179.54,152.21l-6.29-12.58c2.2-0.5,4.29-1.3,6.19-2.3h0.3
C179.64,139.53,179.64,148.71,179.54,152.21z M190.43,139.03c0.1,0.1,0.2,0.1,0.3,0.2c2.8,2.49,6.09,4.49,9.59,5.99l-9.49,17.48
C190.73,157.01,190.53,142.82,190.43,139.03z"
/>
</svg>
</div>
<h3 class="mb-2 text-2xl font-bold">Trees Planted</h3>
<p class="font-light text-gray-500">
Over 21,000 trees planted in partnership with Ecologi and Eden Reforestation Projects
</p>
</div>
</div>
</div>
</section>
<!-- End block -->
<!-- Start block -->
<section class="bg-[#fdfdf6]">
<div class="max-w-screen-xl px-4 py-8 mx-auto lg:py-24 lg:px-6">
<div class="max-w-screen-md mx-auto mb-8 text-center lg:mb-12">
<h2 class="mb-4 text-3xl font-extrabold tracking-tight text-gray-900">
Everything Open Source
</h2>
<p class="mb-5 font-light text-gray-500 sm:text-xl">
We have always had an open-source first mentality. Furthering this idea, we have
re-licensed everything with MIT licenses, permitting use and reuse of everything we
designed for any use-case. We have also published our supplier lists and other
previously private information in the hopes that it may help someone else.
</p>
</div>
<div class="space-y-8 lg:grid lg:grid-cols-3 sm:gap-6 xl:gap-10 lg:space-y-0">
<!-- Repo List Card -->
<div
class="flex flex-col max-w-lg p-6 mx-auto text-center text-gray-900 bg-[#fdfdf6] border border-gray-900 rounded-3xl shadow"
>
<h3 class="mb-4 text-2xl font-semibold">Hammocks</h3>
<p class="font-light text-gray-500 sm:text-lg my-4">
Repositories for our hammocks and tree strap products.
</p>
<a
href="https://github.com/HummingbirdHammocks/ultralight-hammocks"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Ultralight Hammocks</a
>
<a
href="https://github.com/HummingbirdHammocks/standard-hammocks"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Standard Hammocks</a
>
<a
href="https://github.com/HummingbirdHammocks/specialty-hammocks"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Specialty Hammocks</a
>
<a
href="https://github.com/HummingbirdHammocks/tree-straps"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Tree Straps</a
>
</div>
<!-- Repo List Card -->
<div
class="flex flex-col max-w-lg p-6 mx-auto text-center text-gray-900 bg-[#fdfdf6] border border-gray-900 rounded-3xl shadow"
>
<h3 class="mb-4 text-2xl font-semibold">Straps & Shelters</h3>
<p class="font-light text-gray-500 sm:text-lg my-4">
Repositories for our rain tarps, bug nets, underquilts, and ground cover products.
</p>
<a
href="https://github.com/HummingbirdHammocks/rain-tarps"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Rain Tarps</a
>
<a
href="https://github.com/HummingbirdHammocks/bug-nets"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Bug Nets</a
>
<a
href="https://github.com/HummingbirdHammocks/underquilts"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Underquits</a
>
<a
href="https://github.com/HummingbirdHammocks/ground-cover"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Ground Cover</a
>
</div>
<!-- Repo List Card -->
<div
class="flex flex-col max-w-lg p-6 mx-auto text-center text-gray-900 bg-[#fdfdf6] border border-gray-900 rounded-3xl shadow"
>
<h3 class="mb-4 text-2xl font-semibold">Other</h3>
<p class="font-light text-gray-500 sm:text-lg my-4">
Repositories for our parts & accessories, website, and other small code projects.
</p>
<a
href="https://github.com/HummingbirdHammocks/parts-accessories"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Parts & Accessories</a
>
<a
href="https://github.com/HummingbirdHammocks/ultralight-hammocks"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Official Website</a
>
<a
href="https://github.com/HummingbirdHammocks/email"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Email Templates</a
>
<a
href="https://github.com/HummingbirdHammocks/shipping-stork"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Shipping Stork</a
>
<a
href="https://github.com/HummingbirdHammocks/amazon-order-alert"
class="text-white bg-[#34542a] hover:bg-[#0f220e] focus:ring-4 focus:ring-purple-200 font-medium rounded-3xl text-sm px-5 py-2.5 my-2 text-center"
>Amazon Order Alert</a
>
</div>
</div>
</div>
</section>
<!-- End block -->
<!-- Start block -->
<section class="bg-[#fdfdf6]">
<div class="max-w-screen-xl px-4 pb-8 mx-auto lg:pb-24 lg:px-6">
<h2
class="mb-6 text-3xl font-extrabold tracking-tight text-center text-gray-900 lg:mb-8 lg:text-3xl"
>
Frequently Asked Questions
</h2>
<div class="max-w-screen-md mx-auto">
<div
id="accordion-flush"
data-accordion="collapse"
data-active-classes="bg-[#fdfdf6]"
data-inactive-classes="text-gray-500"
>
<h3 id="accordion-flush-heading-1">
<button
type="button"
class="flex items-center justify-between w-full py-5 font-medium text-left text-gray-500 bg-[#fdfdf6] border-b border-gray-200"
data-accordion-target="#accordion-flush-body-1"
aria-expanded="true"
aria-controls="accordion-flush-body-1"
>
<span>Do you have other brands you recommend?</span>
<svg
data-accordion-icon=""
class="w-6 h-6 rotate-180 shrink-0"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</h3>
<div id="accordion-flush-body-1" class="" aria-labelledby="accordion-flush-heading-1">
<div class="py-5 border-b border-gray-200">
<p class="mb-2 text-gray-500">
As an all-around recommendation we would like to point you in the direction of
Kammock:
<a
href="https://kammok.com/"
class="inline-flex items-center text-base font-medium text-[#34542a] hover:text-[#0f220e]"
>https://kammok.com/</a
>
</p>
<p class="mb-2 text-gray-500">
DutchWare sells tree straps and other cordage products that are similar in
function and weight to our products:
<a
href="https://dutchwaregear.com/"
class="inline-flex items-center text-base font-medium text-[#34542a] hover:text-[#0f220e]"
>https://dutchwaregear.com/</a
>
</p>
</div>
</div>
<h3 id="accordion-flush-heading-2">
<button
type="button"
class="flex items-center justify-between w-full py-5 font-medium text-left text-gray-500 bg-[#fdfdf6] border-b border-gray-200"
data-accordion-target="#accordion-flush-body-2"
aria-expanded="false"
aria-controls="accordion-flush-body-2"
>
<span>Can I use these designs for my personal or commercial project?</span>
<svg
data-accordion-icon=""
class="w-6 h-6 rotate-180 shrink-0"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</h3>
<div id="accordion-flush-body-2" class="" aria-labelledby="accordion-flush-heading-2">
<div class="py-5 border-b border-gray-200">
<p class="mb-2 text-gray-500">
Yep! All of our work is open source under the MIT license. This means you can use
it for any project - personal or commercial, without any restrictions.
</p>
<p class="text-gray-500">
We appreciate any credit, but it is not required. All of these designs are
provided as-is and we are not responsible for any issues that may arise when using
them in your projects.
</p>
</div>
</div>
<h3 id="accordion-flush-heading-3">
<button
type="button"
class="flex items-center justify-between w-full py-5 font-medium text-left text-gray-500 border-b border-gray-200"
data-accordion-target="#accordion-flush-body-3"
aria-expanded="false"
aria-controls="accordion-flush-body-3"
>
<span>I have an issue with my gear, can you help me?</span>
<svg
data-accordion-icon=""
class="w-6 h-6 shrink-0"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</h3>
<div
id="accordion-flush-body-3"
class="hidden"
aria-labelledby="accordion-flush-heading-3"
>
<div class="py-5 border-b border-gray-200">
<p class="mb-2 text-gray-500">
Unfortunately no, we are not able to provide additional support.
</p>
<p class="text-gray-500">
All existing tickets and support requests will be addressed but we are not able to
provide any new support. Our email and social media accounts are no longer
monitored.
</p>
</div>
</div>
<h3 id="accordion-flush-heading-4">
<button
type="button"
class="flex items-center justify-between w-full py-5 font-medium text-left text-gray-500 border-b border-gray-200"
data-accordion-target="#accordion-flush-body-4"
aria-expanded="false"
aria-controls="accordion-flush-body-4"
>
<span>Are there instructions on how to make a hammock?</span>
<svg
data-accordion-icon=""
class="w-6 h-6 shrink-0"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
</h3>
<div
id="accordion-flush-body-4"
class="hidden"
aria-labelledby="accordion-flush-heading-4"
>
<div class="py-5 border-b border-gray-200">
<p class="mb-2 text-gray-500">
We don't have internal instructions to publish but there are many great resources.
We recommend checking out the following guide from The Ultimate Hang:
</p>
<a
href="https://theultimatehang.com/2013/10/29/make-hammock-3-minutes/"
class="inline-flex items-center text-base font-medium text-[#34542a] hover:text-[#0f220e]"
>How to Make A Hammock in 3 Minutes</a
>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End block -->
<footer class="bg-[#fdfdf6] my-8">
<hr class="my-6 border-gray-200 sm:mx-auto lg:my-8" />
<div class="text-center">
<a
href="#"
class="flex items-center justify-center mb-5 text-2xl font-semibold text-gray-900"
>
<img src="./images/logo.svg" class="h-6 mr-3 sm:h-9" alt="Hummingbird Hammocks Logo" />
Hummingbird Hammocks
</a>
<span class="block text-sm text-center text-gray-500"
>© 2014-2024 Hummingbird Hammocks
</span>
</div>
</footer>
<script src="./flowbite.js"></script>
</body>
</html>