-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
622 lines (602 loc) · 25.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Porfolio's Osquel</title>
<!-- Alpine -->
<script
defer
src="https://unpkg.com/[email protected]/dist/cdn.min.js"
></script>
<!-- Tailwind -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Carrusel -->
<script>
const items = [
{
position: 0,
el: document.getElementById('carousel-item-1')
},
{
position: 1,
el: document.getElementById('carousel-item-2')
},
{
position: 2,
el: document.getElementById('carousel-item-3')
},
{
position: 3,
el: document.getElementById('carousel-item-4')
},
];
const options = {
activeItemPosition: 1,
interval: 3000,
indicators: {
activeClasses: 'bg-white dark:bg-gray-800',
inactiveClasses: 'bg-white/50 dark:bg-gray-800/50 hover:bg-white dark:hover:bg-gray-800',
items: [
{
position: 0,
el: document.getElementById('carousel-indicator-1')
},
{
position: 1,
el: document.getElementById('carousel-indicator-2')
},
{
position: 2,
el: document.getElementById('carousel-indicator-3')
},
{
position: 3,
el: document.getElementById('carousel-indicator-4')
},
]
},
// callback functions
onNext: () => {
console.log('next slider item is shown');
},
onPrev: ( ) => {
console.log('previous slider item is shown');
},
onChange: ( ) => {
console.log('new slider item has been shown');
}
};
</script>
</head>
<body>
<main class="flex flex-col gap-10">
<!-- Nav -->
<section class="">
<nav
class="bg-white border-gray-200 px-2 sm:px-4 py-2.5 rounded dark:bg-gray-800"
>
<div
class="container flex flex-wrap justify-between items-center mx-auto"
>
<a href="http://portafolio.test" class="flex items-center">
<img
src="img/o.jpg"
class="mr-3 h-6 sm:h-9"
alt="Flowbite Logo"
/>
<h1
class="self-center text-xl font-semibold whitespace-nowrap dark:text-white"
>Porfolio's Osquel</h1
>
</a>
<button
data-collapse-toggle="mobile-menu"
type="button"
class="inline-flex items-center p-2 ml-3 text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600"
aria-controls="mobile-menu"
aria-expanded="false"
>
<span class="sr-only">Open main menu</span>
<svg
class="w-6 h-6"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
clip-rule="evenodd"
></path>
</svg>
<svg
class="hidden w-6 h-6"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"
></path>
</svg>
</button>
<div class="hidden w-full md:block md:w-auto" id="mobile-menu">
<ul
class="flex flex-col mt-4 md:flex-row md:space-x-8 md:mt-0 md:text-sm md:font-medium"
>
<li>
<a
href="http://portafolio.test"
class="block py-2 pr-4 pl-3 text-white bg-amber-400 rounded md:bg-transparent md:text-amber-400 md:p-0 dark:text-white"
aria-current="page"
>Home</a
>
</li>
<li>
<a
href="#"
class="block py-2 pr-4 pl-3 text-gray-700 border-b border-gray-100 hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-gray-400 md:dark:hover:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
>About</a
>
</li>
<li>
<a
href="#"
class="block py-2 pr-4 pl-3 text-gray-700 border-b border-gray-100 hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-gray-400 md:dark:hover:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
>Services</a
>
</li>
<li>
<a
href="#"
class="block py-2 pr-4 pl-3 text-gray-700 border-b border-gray-100 hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-gray-400 md:dark:hover:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
>Pricing</a
>
</li>
<li>
<a
href="#"
class="block py-2 pr-4 pl-3 text-gray-700 hover:bg-gray-50 md:hover:bg-transparent md:border-0 md:hover:text-blue-700 md:p-0 dark:text-gray-400 md:dark:hover:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent"
>Contact</a
>
</li>
</ul>
</div>
</div>
</nav>
</section>
<!-- Header -->
<header class="flex flex-col items-center justify-center relative">
<img class="h-2/4" src="img/header.png" alt="header" />
</header>
<!-- Carrusel -->
<section class="container mx-auto items-center w-4/5">
<div id="indicators-carousel" class="relative" data-carousel="static">
<div
class="overflow-hidden relative h-48 rounded-lg sm:h-64 xl:h-80 2xl:h-96"
>
<div
class="duration-700 ease-in-out absolute inset-0 transition-all transform translate-x-0 z-20"
data-carousel-item="active"
>
<img
src="img/modulo/1.png"
class="block absolute top-1/2 left-1/2 w-full -translate-x-1/2 -translate-y-1/2"
alt="..."
/>
</div>
<div
class="duration-700 ease-in-out absolute inset-0 transition-all transform translate-x-full z-10"
data-carousel-item=""
>
<img
src="img/header.png"
class="block absolute top-1/2 left-1/2 w-full -translate-x-1/2 -translate-y-1/2"
alt="..."
/>
</div>
<div
class="hidden duration-700 ease-in-out absolute inset-0 transition-all transform"
data-carousel-item=""
>
<img
src="img/modulo/1.png"
class="block absolute top-1/2 left-1/2 w-full -translate-x-1/2 -translate-y-1/2"
alt="..."
/>
</div>
<div
class="hidden duration-700 ease-in-out absolute inset-0 transition-all transform"
data-carousel-item=""
>
<img
src="img/modulo/1.png"
class="block absolute top-1/2 left-1/2 w-full -translate-x-1/2 -translate-y-1/2"
alt="..."
/>
</div>
<div
class="duration-700 ease-in-out absolute inset-0 transition-all transform -translate-x-full z-10"
data-carousel-item=""
>
<img
src="img/modulo/1.png"
class="block absolute top-1/2 left-1/2 w-full -translate-x-1/2 -translate-y-1/2"
alt="..."
/>
</div>
</div>
<div
class="flex absolute bottom-5 left-1/2 z-30 space-x-3 -translate-x-1/2"
>
<button
type="button"
class="w-3 h-3 rounded-full bg-white dark:bg-gray-800"
aria-current="true"
aria-label="Slide 1"
data-carousel-slide-to="0"
></button>
<button
type="button"
class="w-3 h-3 rounded-full bg-white/50 dark:bg-gray-800/50 hover:bg-white dark:hover:bg-gray-800"
aria-current="false"
aria-label="Slide 2"
data-carousel-slide-to="1"
></button>
<button
type="button"
class="w-3 h-3 rounded-full bg-white/50 dark:bg-gray-800/50 hover:bg-white dark:hover:bg-gray-800"
aria-current="false"
aria-label="Slide 3"
data-carousel-slide-to="2"
></button>
<button
type="button"
class="w-3 h-3 rounded-full bg-white/50 dark:bg-gray-800/50 hover:bg-white dark:hover:bg-gray-800"
aria-current="false"
aria-label="Slide 4"
data-carousel-slide-to="3"
></button>
<button
type="button"
class="w-3 h-3 rounded-full bg-white/50 dark:bg-gray-800/50 hover:bg-white dark:hover:bg-gray-800"
aria-current="false"
aria-label="Slide 5"
data-carousel-slide-to="4"
></button>
</div>
<button
type="button"
class="flex absolute top-0 left-0 z-30 justify-center items-center px-4 h-full cursor-pointer group focus:outline-none"
data-carousel-prev=""
>
<span
class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none"
>
<svg
class="w-5 h-5 text-white sm:w-6 sm:h-6 dark:text-gray-800"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M15 19l-7-7 7-7"
></path>
</svg>
<span class="hidden">Previous</span>
</span>
</button>
<button
type="button"
class="flex absolute top-0 right-0 z-30 justify-center items-center px-4 h-full cursor-pointer group focus:outline-none"
data-carousel-next=""
>
<span
class="inline-flex justify-center items-center w-8 h-8 rounded-full sm:w-10 sm:h-10 bg-white/30 dark:bg-gray-800/30 group-hover:bg-white/50 dark:group-hover:bg-gray-800/60 group-focus:ring-4 group-focus:ring-white dark:group-focus:ring-gray-800/70 group-focus:outline-none"
>
<svg
class="w-5 h-5 text-white sm:w-6 sm:h-6 dark:text-gray-800"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M9 5l7 7-7 7"
></path>
</svg>
<span class="hidden">Next</span>
</span>
</button>
</div>
</section>
<!-- Work List -->
<section class="flex justify-center">
<div class="flex flex-row flex-wrap justify-center items-center w-5/6">
<!--Card 1-->
<div class="p-10">
<div class="max-w-sm rounded overflow-hidden shadow-lg">
<img class="w-full" src="img/etupefacientes.jpg" alt="Mountain" />
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">Iristravel</div>
<p class="text-gray-700 text-base">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatibus quia, Nonea! Maiores et perferendis eaque,
exercitationem praesentium nihil.
</p>
</div>
<div class="px-6 pt-4 pb-2">
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#AWS</span
>
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#VueJS</span
>
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#Node</span
>
</div>
</div>
</div>
<!-- End Card 1-->
<!-- End Card 2-->
<div class="p-10">
<div class="max-w-sm rounded overflow-hidden shadow-lg">
<img class="w-full" src="img/etupefacientes.jpg" alt="Mountain" />
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">Encuestas</div>
<p class="text-gray-700 text-base">
Sistemas de encuestas donde se obtienen y se procesan los datos, sistema realizado en Laravel, livewire, tailwindcss y Alpine (TALL)
</p>
</div>
<div class="px-6 pt-4 pb-2">
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#Laravel</span
>
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#Livewire</span
>
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#TailwindCSS</span
>
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#Alpine</span
>
</div>
</div>
</div>
<!-- End Card 2-->
<!-- End Card 3-->
<div class="p-10">
<div class="max-w-sm rounded overflow-hidden shadow-lg">
<img class="w-full" src="img/etupefacientes.jpg" alt="Mountain" />
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">Mountain</div>
<p class="text-gray-700 text-base">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatibus quia, Nonea! Maiores et perferendis eaque,
exercitationem praesentium nihil.
</p>
</div>
<div class="px-6 pt-4 pb-2">
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#photography</span
>
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#travel</span
>
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#winter</span
>
</div>
</div>
</div>
<!-- End Card 3-->
<!-- End Card 4-->
<div class="p-10">
<div class="max-w-sm rounded overflow-hidden shadow-lg">
<img class="w-full" src="img/etupefacientes.jpg" alt="Mountain" />
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">Mountain</div>
<p class="text-gray-700 text-base">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Voluptatibus quia, Nonea! Maiores et perferendis eaque,
exercitationem praesentium nihil.
</p>
</div>
<div class="px-6 pt-4 pb-2">
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#photography</span
>
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#travel</span
>
<span
class="inline-block bg-gray-200 rounded-full px-3 py-1 text-sm font-semibold text-gray-700 mr-2 mb-2"
>#winter</span
>
</div>
</div>
</div>
<!-- End Card 4-->
</div>
</section>
</main>
<!-- Footer -->
<footer class="p-4 bg-white sm:p-6 dark:bg-gray-800">
<div class="md:flex md:justify-between">
<div class="mb-6 md:mb-0">
<a href="http://portafolio.test" class="flex items-center">
<img
src="favicon.ico"
class="mr-3 h-8"
alt="FlowBite Logo"
/>
<span
class="self-center text-2xl font-semibold whitespace-nowrap dark:text-white"
>Porfolio's Osquel</span
>
</a>
</div>
<div class="grid grid-cols-2 gap-8 sm:gap-6 sm:grid-cols-3">
<div>
<h2
class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white"
>
Resources
</h2>
<ul class="text-gray-600 dark:text-gray-400">
<li class="mb-4">
<a href="https://flowbite.com" class="hover:underline"
>Flowbite</a
>
</li>
<li>
<a href="https://tailwindcss.com/" class="hover:underline"
>Tailwind CSS</a
>
</li>
</ul>
</div>
<div>
<h2
class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white"
>
Follow us
</h2>
<ul class="text-gray-600 dark:text-gray-400">
<li class="mb-4">
<a
href="https://github.com/themesberg/flowbite"
class="hover:underline"
>Github</a
>
</li>
<li>
<a href="https://discord.gg/4eeurUVvTy" class="hover:underline"
>Discord</a
>
</li>
</ul>
</div>
<div>
<h2
class="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white"
>
Legal
</h2>
<ul class="text-gray-600 dark:text-gray-400">
<li class="mb-4">
<a href="#" class="hover:underline">Privacy Policy</a>
</li>
<li>
<a href="#" class="hover:underline">Terms & Conditions</a>
</li>
</ul>
</div>
</div>
</div>
<hr
class="my-6 border-gray-200 sm:mx-auto dark:border-gray-700 lg:my-8"
/>
<div class="sm:flex sm:items-center sm:justify-between">
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400"
>© 2022
<a href="http://portafolio.test" class="hover:underline">Porfolio's Osquel</a>.
All Rights Reserved.
</span>
<div class="flex mt-4 space-x-6 sm:justify-center sm:mt-0">
<a
href="https://www.facebook.com/osquel.santistebanarias"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white"
>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z"
clip-rule="evenodd"
></path>
</svg>
</a>
<a
href="https://twitter.com/OsquelSantiste1"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white"
>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84"
></path>
</svg>
</a>
<a
href="https://github.com/osquelsantisteban"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white"
>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 0 24 24"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z"
clip-rule="evenodd"
></path>
</svg>
</a>
<a
href="https://www.linkedin.com/in/osquel-santisteban-b5658b196"
class="text-gray-500 hover:text-gray-900 dark:hover:text-white"
>
<svg
class="w-5 h-5"
fill="currentColor"
viewBox="0 50 512 512"
aria-hidden="true"
>
<path
fill="currentColor"
d="M444.17 32H70.28C49.85 32 32 46.7 32 66.89v374.72C32 461.91 49.85 480 70.28 480h373.78c20.54 0 35.94-18.21 35.94-38.39V66.89C480.12 46.7 464.6 32 444.17 32zm-273.3 373.43h-64.18V205.88h64.18zM141 175.54h-.46c-20.54 0-33.84-15.29-33.84-34.43 0-19.49 13.65-34.42 34.65-34.42s33.85 14.82 34.31 34.42c-.01 19.14-13.31 34.43-34.66 34.43zm264.43 229.89h-64.18V296.32c0-26.14-9.34-44-32.56-44-17.74 0-28.24 12-32.91 23.69-1.75 4.2-2.22 9.92-2.22 15.76v113.66h-64.18V205.88h64.18v27.77c9.34-13.3 23.93-32.44 57.88-32.44 42.13 0 74 27.77 74 87.64z"
/>
</svg>
</a>
</div>
</div>
</footer>
</body>
</html>