-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeatures.html
More file actions
346 lines (296 loc) · 29.3 KB
/
features.html
File metadata and controls
346 lines (296 loc) · 29.3 KB
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
<!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 href="dist/output.css" rel="stylesheet">
<script defer src="js/script.js"></script>
<title>Features | BazzlylinksCMS WebApp</title>
</head>
<body>
<!-- Nav bars components -->
<div class="w-full bg-cover" style="background-image: url('images/pexels-tranmautritam-245032.jpg');">
<nav class="bg-gray-900 text-white" x-data="{ open: false }">
<div class="flex justify-between p-3">
<div class="">
<!-- Logo start here -->
<a href="/" class="flex items-center space-x-1">
<img src="https://i.ibb.co/nbPBnCM/logo1.png" alt="bazzlylinks" border="0"
style="width: 35px; height: 35px;">
<!-- Website name start here -->
<span
class="font-mono text-lg subpixel-antialiased italic font-bold tracking-wide leading-relaxed invisible md:visible">Bazzlylinks</span>
</a>
</div>
<!-- Nav list content start here -->
<div class="space-x-1 hidden md:flex items-center">
<a href="/" class="py-2 px-2 hover:text-green-300">Home</a>
<a href="features.html" class="py-2 px-2 hover:text-green-300">Features</a>
<a href="components.html" class="py-2 px-2 hover:text-green-300">Components</a>
<a href="contact.html" class="py-2 px-2 hover:text-green-300">Contact</a>
</div>
<!-- Nav login and signup content start here -->
<div class="space-x-1 hidden md:flex items-center">
<!-- <a href="#" class="py-2 px-2 hover:text-green-300">Login</a> -->
<a href="about.html"
class="py-1 px-2 text-gray-800 bg-green-300 hover:bg-green-400 hover:text-white rounded shadow-x transition duration-300s">About</a>
</div>
<!-- mobile button start here -->
<div class="md:hidden flex items-center">
<button @click="open = !open">
<svg class="w-6 h-6" x-show="!open" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M3.75 5.25h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5" />
</svg>
<svg class="w-6 h-6" x-show="open" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
</div>
<div class="md:hidden flex items-center ">
<div x-show="open" class="my-1">
<a href="/" class="block py-1 px-4 text-sm hover:text-green-300">Home</a>
<a href="features.html" class="block py-1 px-4 text-sm hover:text-green-300">Features</a>
<a href="components.html" class="block py-1 px-4 text-sm hover:text-green-300">Components</a>
<a href="contact.html" class="block py-1 px-4 text-sm hover:text-green-300">Contact</a>
<!-- <hr class="mx-2"> -->
<!-- <a href="login" class="block py-1 px-4 text-sm hover:text-green-300">Login</a> -->
<a href="about.html"
class="block py-2 px-2 mx-2 text-sm text-gray-800 bg-green-300 hover:bg-green-400 hover:text-white rounded shadow-x transition duration-300s">About</a>
</div>
</div>
</nav>
<div>
<div class="mx-auto text-white bg-gray-800/60 py-4">
<div class="text-xl md:text-4xl py-2 px-2 md:py-20 md:px-10">
<span class="text-2xl md:text-6xl font-extrabold uppercase">
CMS WebAPP <span class="text-green-400">Features</span>
</span>
</div>
<div class="py-4 px-6 ">
<div class="w-full mx-auto ">
<h2 class="font-sans text-xl text-center p-2 md:p-5 subpixel-antialiased">We keep
adding more features
</h2>
<span></span>
<!-- Box grid parent section start here -->
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-4 pb-4">
<!-- Box child section start here -->
<div
class="border p-8 rounded-md m-2 bg-green-100/50 hover:bg-gray-700 hover:-translate-y-2 transform transition-all hover:scale-x-105 duration-300 delay-200 ease-ou relative">
<!-- fixed completed task possition icon start here -->
<div class="absolute top-0 right-0">
<svg xmlns="http://www.w3.org/2000/svg" fill="green" viewBox="0 0 24 24"
stroke-width="1.5" stroke="white" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 019 9v.375M10.125 2.25A3.375 3.375 0 0113.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 013.375 3.375M9 15l2.25 2.25L15 12" />
</svg>
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 30 30"
stroke-width="1.5" stroke="currentColor" class="w-12 h-12 hover:animate-pulse">
<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 18.75a60.07 60.07 0 0115.797 2.101c.727.198 1.453-.342 1.453-1.096V18.75M3.75 4.5v.75A.75.75 0 013 6h-.75m0 0v-.375c0-.621.504-1.125 1.125-1.125H20.25M2.25 6v9m18-10.5v.75c0 .414.336.75.75.75h.75m-1.5-1.5h.375c.621 0 1.125.504 1.125 1.125v9.75c0 .621-.504 1.125-1.125 1.125h-.375m1.5-1.5H21a.75.75 0 00-.75.75v.75m0 0H3.75m0 0h-.375a1.125 1.125 0 01-1.125-1.125V15m1.5 1.5v-.75A.75.75 0 003 15h-.75M15 10.5a3 3 0 11-6 0 3 3 0 016 0zm3 0h.008v.008H18V10.5zm-12 0h.008v.008H6V10.5z" />
</svg>
<span>Staff salaray payment calculator and payment</span>
</div>
<!-- Box child section start here -->
<div
class="border p-8 rounded-md m-2 bg-green-100/50 hover:bg-gray-700 hover:-translate-y-2 transform transition-all hover:scale-x-105 duration-300 delay-200 ease-ou relative">
<!-- fixed completed task possition icon start here -->
<div class="absolute top-0 right-0">
<svg xmlns="http://www.w3.org/2000/svg" fill="green" viewBox="0 0 24 24"
stroke-width="1.5" stroke="white" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 019 9v.375M10.125 2.25A3.375 3.375 0 0113.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 013.375 3.375M9 15l2.25 2.25L15 12" />
</svg>
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 30 30"
stroke-width="1.5" stroke="currentColor" class="w-12 h-12 hover:animate-pulse">
<path stroke-linecap="round" stroke-linejoin="round" d="M15 10.5a3 3 0 11-6 0 3 3 0 016 0z" />
<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1115 0z" />
</svg>
<span>Staff location base attendance</span>
</div>
<!-- Box child section start here -->
<div
class="border p-8 rounded-md m-2 bg-green-100/50 hover:bg-gray-700 hover:-translate-y-2 transform transition-all hover:scale-x-105 duration-300 delay-200 ease-ou relative">
<!-- fixed completed task possition icon start here -->
<div class="absolute top-0 right-0">
<svg xmlns="http://www.w3.org/2000/svg" fill="green" viewBox="0 0 24 24"
stroke-width="1.5" stroke="white" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 019 9v.375M10.125 2.25A3.375 3.375 0 0113.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 013.375 3.375M9 15l2.25 2.25L15 12" />
</svg>
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 30 30"
stroke-width="1.5" stroke="currentColor" class="w-12 h-12 hover:animate-pulse">
<path stroke-linecap="round" stroke-linejoin="round"
d="M8.625 9.75a.375.375 0 11-.75 0 .375.375 0 01.75 0zm0 0H8.25m4.125 0a.375.375 0 11-.75 0 .375.375 0 01.75 0zm0 0H12m4.125 0a.375.375 0 11-.75 0 .375.375 0 01.75 0zm0 0h-.375m-13.5 3.01c0 1.6 1.123 2.994 2.707 3.227 1.087.16 2.185.283 3.293.369V21l4.184-4.183a1.14 1.14 0 01.778-.332 48.294 48.294 0 005.83-.498c1.585-.233 2.708-1.626 2.708-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0012 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.018z" />
</svg>
<span>InApp chat messenger for communucation between staff and employer</span>
</div>
<!-- Box child section start here -->
<div
class="border p-8 rounded-md m-2 bg-green-100/50 hover:bg-gray-700 hover:-translate-y-2 transform transition-all hover:scale-x-105 duration-300 delay-200 ease-ou relative">
<!-- fixed completed task possition icon start here -->
<div class="absolute top-0 right-0">
<svg xmlns="http://www.w3.org/2000/svg" fill="green" viewBox="0 0 24 24"
stroke-width="1.5" stroke="white" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 019 9v.375M10.125 2.25A3.375 3.375 0 0113.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 013.375 3.375M9 15l2.25 2.25L15 12" />
</svg>
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 30 30"
stroke-width="1.5" stroke="currentColor" class="w-12 h-12 hover:animate-pulse">
<path stroke-linecap="round" stroke-linejoin="round"
d="M9.813 15.904L9 18.75l-.813-2.846a4.5 4.5 0 00-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 003.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 003.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 00-3.09 3.09zM18.259 8.715L18 9.75l-.259-1.035a3.375 3.375 0 00-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 002.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 002.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 00-2.456 2.456zM16.894 20.567L16.5 21.75l-.394-1.183a2.25 2.25 0 00-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 001.423-1.423l.394-1.183.394 1.183a2.25 2.25 0 001.423 1.423l1.183.394-1.183.394a2.25 2.25 0 00-1.423 1.423z" />
</svg>
<span>Staff Management portal</span>
</div>
<!-- Box child section start here -->
<div
class="border p-8 rounded-md m-2 bg-green-100/50 hover:bg-gray-700 hover:-translate-y-2 transform transition-all hover:scale-x-105 duration-300 delay-200 ease-ou relative">
<!-- fixed completed task possition icon start here -->
<div class="absolute top-0 right-0">
<svg xmlns="http://www.w3.org/2000/svg" fill="green" viewBox="0 0 24 24"
stroke-width="1.5" stroke="white" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 019 9v.375M10.125 2.25A3.375 3.375 0 0113.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 013.375 3.375M9 15l2.25 2.25L15 12" />
</svg>
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1"
stroke="white" class="h-8 w-8 block">
<path stroke-linecap="round" stroke-linejoin="round"
d="M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0V12a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 12V5.25" />
</svg>
<span>Create,edit and manage digital content easily in real-time and faster.</span>
</div>
<!-- Box child section start here -->
<div
class="border p-8 rounded-md m-2 bg-green-200/40 hover:bg-gray-700 hover:-translate-y-2 transform transition-all hover:scale-x-105 duration-300 delay-200 ease-out">
<!-- fixed completed task possition icon start here -->
<div class="absolute top-0 right-0">
<svg xmlns="http://www.w3.org/2000/svg" fill="green" viewBox="0 0 24 24"
stroke-width="1.5" stroke="white" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 019 9v.375M10.125 2.25A3.375 3.375 0 0113.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 013.375 3.375M9 15l2.25 2.25L15 12" />
</svg>
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 30 30"
stroke-width="1.5" stroke="currentColor" class="w-12 h-12 hover:animate-pulse">
<path stroke-linecap="round" stroke-linejoin="round"
d="M6.75 7.5l3 2.25-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0021 18V6a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 6v12a2.25 2.25 0 002.25 2.25z" />
</svg>
<span>This is a code required cms webapp, html code will be render in real-time to
the
front end</span>
</div>
<!-- Box child section start here -->
<div
class="border p-8 rounded-md m-2 bg-green-300/30 hover:bg-gray-700 hover:-translate-y-2 transform transition-all hover:scale-x-105 duration-300 delay-200 ease-out">
<!-- fixed completed task possition icon start here -->
<div class="absolute top-0 right-0">
<svg xmlns="http://www.w3.org/2000/svg" fill="green" viewBox="0 0 24 24"
stroke-width="1.5" stroke="white" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 019 9v.375M10.125 2.25A3.375 3.375 0 0113.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 013.375 3.375M9 15l2.25 2.25L15 12" />
</svg>
</div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 30 30"
stroke-width="1.5" stroke="currentColor" class="w-12 h-12 hover:animate-pulse">
<path stroke-linecap="round" stroke-linejoin="round"
d="M5.25 14.25h13.5m-13.5 0a3 3 0 01-3-3m3 3a3 3 0 100 6h13.5a3 3 0 100-6m-16.5-3a3 3 0 013-3h13.5a3 3 0 013 3m-19.5 0a4.5 4.5 0 01.9-2.7L5.737 5.1a3.375 3.375 0 012.7-1.35h7.126c1.062 0 2.062.5 2.7 1.35l2.587 3.45a4.5 4.5 0 01.9 2.7m0 0a3 3 0 01-3 3m0 3h.008v.008h-.008v-.008zm0-6h.008v.008h-.008v-.008zm-3 6h.008v.008h-.008v-.008zm0-6h.008v.008h-.008v-.008z" />
</svg>
<span>Hosting website login to make changes is eliminated.</span>
</div>
</div>
<div class="text-center py-10">
<span
class="py-2 px-8 bg-green-400 hover:bg-green-200 hover:text-gray-800 border-x-2 border-x-white shadow-sm shadow-slate-100 ">We
use TALL Stacks
</span>
</div>
<div class="text-center flex justify-center">
<div class="px-2 md:px-4">
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64">
<defs>
<linearGradient x1="0" y1="-21.333" y2="85.333" id="A" x2="64"
gradientUnits="userSpaceOnUse">
<stop stop-color="#2383ae" offset="0%" />
<stop stop-color="#6dd7b9" offset="100%" />
</linearGradient>
</defs>
<path
d="M16 25.6c2.133-8.533 7.467-12.8 16-12.8 12.8 0 14.4 9.6 20.8 11.2 4.267 1.067 8-.533 11.2-4.8C61.867 27.733 56.533 32 48 32c-12.8 0-14.4-9.6-20.8-11.2-4.267-1.067-8 .533-11.2 4.8zM0 44.8C2.133 36.267 7.467 32 16 32c12.8 0 14.4 9.6 20.8 11.2 4.267 1.067 8-.533 11.2-4.8-2.133 8.533-7.467 12.8-16 12.8-12.8 0-14.4-9.6-20.8-11.2-4.267-1.067-8 .533-11.2 4.8z"
fill="url(#A)" fill-rule="evenodd" />
</svg>
</div>
<div class="px-2 md:px-4">
<svg style="color: blue" role="img" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg" width="64" height="64">
<title>Alpine.js</title>
<path
d="m24 12-5.72 5.746-5.724-5.741 5.724-5.75L24 12zM5.72 6.254 0 12l5.72 5.746h11.44L5.72 6.254z"
fill="blue">
</path>
</svg>
</div>
<div class="px-2 md:px-4">
<svg style="color: red" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
width="64"
height="64"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path
d="M504.4,115.83a5.72,5.72,0,0,0-.28-.68,8.52,8.52,0,0,0-.53-1.25,6,6,0,0,0-.54-.71,9.36,9.36,0,0,0-.72-.94c-.23-.22-.52-.4-.77-.6a8.84,8.84,0,0,0-.9-.68L404.4,55.55a8,8,0,0,0-8,0L300.12,111h0a8.07,8.07,0,0,0-.88.69,7.68,7.68,0,0,0-.78.6,8.23,8.23,0,0,0-.72.93c-.17.24-.39.45-.54.71a9.7,9.7,0,0,0-.52,1.25c-.08.23-.21.44-.28.68a8.08,8.08,0,0,0-.28,2.08V223.18l-80.22,46.19V63.44a7.8,7.8,0,0,0-.28-2.09c-.06-.24-.2-.45-.28-.68a8.35,8.35,0,0,0-.52-1.24c-.14-.26-.37-.47-.54-.72a9.36,9.36,0,0,0-.72-.94,9.46,9.46,0,0,0-.78-.6,9.8,9.8,0,0,0-.88-.68h0L115.61,1.07a8,8,0,0,0-8,0L11.34,56.49h0a6.52,6.52,0,0,0-.88.69,7.81,7.81,0,0,0-.79.6,8.15,8.15,0,0,0-.71.93c-.18.25-.4.46-.55.72a7.88,7.88,0,0,0-.51,1.24,6.46,6.46,0,0,0-.29.67,8.18,8.18,0,0,0-.28,2.1v329.7a8,8,0,0,0,4,6.95l192.5,110.84a8.83,8.83,0,0,0,1.33.54c.21.08.41.2.63.26a7.92,7.92,0,0,0,4.1,0c.2-.05.37-.16.55-.22a8.6,8.6,0,0,0,1.4-.58L404.4,400.09a8,8,0,0,0,4-6.95V287.88l92.24-53.11a8,8,0,0,0,4-7V117.92A8.63,8.63,0,0,0,504.4,115.83ZM111.6,17.28h0l80.19,46.15-80.2,46.18L31.41,63.44Zm88.25,60V278.6l-46.53,26.79-33.69,19.4V123.5l46.53-26.79Zm0,412.78L23.37,388.5V77.32L57.06,96.7l46.52,26.8V338.68a6.94,6.94,0,0,0,.12.9,8,8,0,0,0,.16,1.18h0a5.92,5.92,0,0,0,.38.9,6.38,6.38,0,0,0,.42,1v0a8.54,8.54,0,0,0,.6.78,7.62,7.62,0,0,0,.66.84l0,0c.23.22.52.38.77.58a8.93,8.93,0,0,0,.86.66l0,0,0,0,92.19,52.18Zm8-106.17-80.06-45.32,84.09-48.41,92.26-53.11,80.13,46.13-58.8,33.56Zm184.52,4.57L215.88,490.11V397.8L346.6,323.2l45.77-26.15Zm0-119.13L358.68,250l-46.53-26.79V131.79l33.69,19.4L392.37,178Zm8-105.28-80.2-46.17,80.2-46.16,80.18,46.15Zm8,105.28V178L455,151.19l33.68-19.4v91.39h0Z"
fill="red"></path>
</svg>
</div>
<div class="px-2 md:px-4">
<svg style="color: blue" role="img" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg" width="64" height="64">
<title>Livewire</title>
<path
d="M12.001 0C6.1735 0 1.4482 4.9569 1.4482 11.0723c0 2.0888.5518 4.0417 1.5098 5.709.2492.2796.544.4843.9649.4843 1.3388 0 1.2678-2.0644 2.6074-2.0644 1.3395 0 1.4111 2.0644 2.75 2.0644 1.3388 0 1.2659-2.0644 2.6054-2.0644.5845 0 .9278.3967 1.2403.8398-.2213-.2055-.4794-.3476-.8203-.3476-1.1956 0-1.3063 1.6771-2.2012 2.1406v4.5097c0 .9145.7418 1.6563 1.6562 1.6563.9145 0 1.6563-.7418 1.6563-1.6563v-5.8925c.308.4332.647.8144 1.2207.8144 1.3388 0 1.266-2.0644 2.6055-2.0644.465 0 .7734.2552 1.039.58-.1294-.0533-.2695-.0878-.4297-.0878-1.1582 0-1.296 1.574-2.1171 2.0937v2.4356c0 .823.6672 1.4902 1.4902 1.4902s1.4902-.6672 1.4902-1.4902V16.371c.3234.4657.6684.8945 1.2774.8945.7955 0 1.093-.7287 1.4843-1.3203.6878-1.4704 1.0743-3.1245 1.0743-4.873C22.5518 4.9569 17.8284 0 12.001 0zm-.5664 2.877c2.8797 0 5.2148 2.7836 5.2148 5.8066 0 3.023-1.5455 5.1504-5.2148 5.1504-3.6693 0-5.2149-2.1274-5.2149-5.1504S8.5548 2.877 11.4346 2.877zM10.0322 4.537a1.9554 2.1583 0 00-1.955 2.1582 1.9554 2.1583 0 001.955 2.1582 1.9554 2.1583 0 001.9551-2.1582 1.9554 2.1583 0 00-1.955-2.1582zm-.3261.664a.9777.9961 0 01.9785.9962.9777.9961 0 01-.9785.996.9777.9961 0 01-.9766-.996.9777.9961 0 01.9766-.9961zM6.7568 15.6935c-1.0746 0-1.2724 1.3542-1.9511 1.9648v1.7813c0 .823.6672 1.4902 1.4902 1.4902s1.4902-.6672 1.4902-1.4902v-3.1817c-.2643-.3237-.5767-.5644-1.0293-.5644Z"
fill="blue"></path>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="py-2 px-2 bg-gray-700 flex items-center justify-center">
<span class="text-sm text-gray-300 text-center">
2023 Bazzlylinks™. All Rights Reserved.
<br>
Built @ | bazzlylinks
</span>
</div>
<div class="flex py-2 space-x-6 items-center justify-center text-white bg-gray-800">
<a href="https://www.instagram.com/bazzlylinks" class="text-gray-400 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.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z"
clip-rule="evenodd"></path>
</svg></a>
<a href="#" class="text-gray-400 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://www.twitter.com/bazzlylinks" class="text-gray-400 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>
</div>
</footer>
</div>
<script defer src="js/script.js"></script>
</body>
</html>