-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog-single.html
514 lines (466 loc) · 33.3 KB
/
blog-single.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
<!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" />
<title>Blog Details | AI Tool - Tailwind CSS Template for AI Tools</title>
<link rel="icon" href="favicon.ico"><link href="style.css" rel="stylesheet"></head>
<body
x-data="{ page: 'blog-single', 'loaded': true, 'stickyMenu': false, 'navigationOpen': false, 'scrollTop': false }">
<!-- ===== Header Start ===== -->
<header class="fixed left-0 top-0 w-full z-9999 py-7 lg:py-0"
:class="{ 'bg-dark/70 backdrop-blur-lg shadow !py-4 lg:!py-0 transition duration-100 before:absolute before:w-full before:h-[1px] before:bottom-0 before:left-0 before:features-row-border' : stickyMenu }"
@scroll.window="stickyMenu = (window.scrollY > 0) ? true : false">
<div class="max-w-[1170px] mx-auto px-4 sm:px-8 xl:px-0 lg:flex items-center justify-between relative">
<div class="w-full lg:w-1/4 flex items-center justify-between">
<a href="https://osjobs.net/en/" class="flex items-center">
<img src="images/logo.svg" alt="Logo" style="width: 14%; height: auto;" />
<p class="ml-2 text-lg font-bold">
Overseas Rabbit
</p>
</a>
<!-- Hamburger Toggle BTN -->
<button class="lg:hidden block" @click="navigationOpen = !navigationOpen">
<span class="block relative cursor-pointer w-5.5 h-5.5">
<span class="du-block absolute right-0 w-full h-full">
<span
class="block relative top-0 left-0 bg-white rounded-sm w-0 h-0.5 my-1 ease-in-out duration-200 delay-[0]"
:class="{ '!w-full delay-300': !navigationOpen }"></span>
<span
class="block relative top-0 left-0 bg-white rounded-sm w-0 h-0.5 my-1 ease-in-out duration-200 delay-150"
:class="{ '!w-full delay-400': !navigationOpen }"></span>
<span
class="block relative top-0 left-0 bg-white rounded-sm w-0 h-0.5 my-1 ease-in-out duration-200 delay-200"
:class="{ '!w-full delay-500': !navigationOpen }"></span>
</span>
<span class="du-block absolute right-0 w-full h-full rotate-45">
<span
class="block bg-white rounded-sm ease-in-out duration-200 delay-300 absolute left-2.5 top-0 w-0.5 h-full"
:class="{ '!h-0 delay-[0]': !navigationOpen }"></span>
<span
class="block bg-white rounded-sm ease-in-out duration-200 delay-400 absolute left-0 top-2.5 w-full h-0.5"
:class="{ '!h-0 dealy-200': !navigationOpen }"></span>
</span>
</span>
</button>
<!-- Hamburger Toggle BTN -->
</div>
<div class="w-full lg:w-3/4 h-0 lg:h-auto invisible lg:visible lg:flex items-center justify-between"
:class="{ '!visible bg-dark shadow-lgrelative !h-auto max-h-[400px] overflow-y-scroll rounded-md mt-4 p-7.5': navigationOpen }">
<nav>
<ul class="flex lg:items-center flex-col lg:flex-row gap-5 lg:gap-2">
<li class="nav__menu lg:py-7" :class="{ 'lg:!py-4' : stickyMenu }">
<a href="/#home"
class="relative text-white/80 text-sm py-1.5 px-4 border border-transparent hover:text-white hover:nav-gradient"
:class="{'!text-white nav-gradient' :page === 'home'}">Home</a>
</li>
<li class="nav__menu lg:py-7" :class="{ 'lg:!py-4' : stickyMenu }">
<a href="/#features"
class="relative text-white/80 text-sm py-1.5 px-4 border border-transparent hover:text-white hover:nav-gradient">Features</a>
</li>
<li class="nav__menu lg:py-7" :class="{ 'lg:!py-4' : stickyMenu }">
<a href="/#coaches"
class="relative text-white/80 text-sm py-1.5 px-4 border border-transparent hover:text-white hover:nav-gradient">Our Coaches</a>
</li>
<li class="nav__menu lg:py-7" :class="{ 'lg:!py-4' : stickyMenu }">
<a href="/#pricing"
class="relative text-white/80 text-sm py-1.5 px-4 border border-transparent hover:text-white hover:nav-gradient">Pricing</a>
</li>
<li class="nav__menu lg:py-7" :class="{ 'lg:!py-4' : stickyMenu }">
<a href="mailto:contact@osjobs.net?subject=Hello"
class="relative text-white/80 text-sm py-1.5 px-4 border border-transparent hover:text-white hover:nav-gradient">Contact Us</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- ===== Header End ===== -->
<main>
<!-- ===== Breadcrumb Section Start ===== -->
<section class="relative z-10 pt-30 lg:pt-35 xl:pt-40 pb-18">
<!-- bg shapes -->
<div class="absolute top-25 left-0 w-full flex flex-col gap-3 -z-1 opacity-50">
<div class="w-full h-[1.24px] footer-bg-gradient"></div>
<div class="w-full h-[2.47px] footer-bg-gradient"></div>
<div class="w-full h-[3.71px] footer-bg-gradient"></div>
<div class="w-full h-[4.99px] footer-bg-gradient"></div>
<div class="w-full h-[6.19px] footer-bg-gradient"></div>
<div class="w-full h-[7.42px] footer-bg-gradient"></div>
<div class="w-full h-[8.66px] footer-bg-gradient"></div>
<div class="w-full h-[9.90px] footer-bg-gradient"></div>
<div class="w-full h-[13px] footer-bg-gradient"></div>
</div>
<div class="absolute bottom-0 left-0 w-full h-24 bg-gradient-to-b from-dark/0 to-dark -z-1">
</div>
<div class="text-center px-4">
<h1 class="font-extrabold text-heading-2 text-white mb-5.5">
Blog Details
</h1>
<ul class="flex items-center justify-center gap-2">
<li class="font-medium"><a href="index.html">Home</a></li>
<li class="font-medium">/ Blog Details</li>
</ul>
</div>
</section>
<!-- ===== Breadcrumb Section End ===== -->
<!-- ===== Blog Single Start ===== -->
<section class="pt-20 lg:pt-25 pb-17.5 lg:pb-22.5 xl:pb-27.5">
<div class="max-w-[1170px] mx-auto px-4 sm:px-8 xl:px-0">
<img src="images/blog-big.png" alt="blog" class="mb-10" />
<div class="max-w-[870px] mx-auto">
<div class="flex flex-wrap items-center gap-5 justify-between mb-7.5">
<div class="flex flex-wrap gap-2.5 items-center">
<span
class="font-medium text-xs hover:text-white cursor-pointer py-[3px] px-2.5 rounded-full bg-white/[0.07] border border-white/10 hover:border-white/25 ease-out duration-300">
Products
</span>
<span
class="font-medium text-xs hover:text-white cursor-pointer py-[3px] px-2.5 rounded-full bg-white/[0.07] border border-white/10 hover:border-white/25 ease-out duration-300">
Blog and articles
</span>
</div>
<div class="flex items-center gap-4.5 flex-wrap">
<div class="flex items-center gap-2 flex-wrap cursor-pointer ease-in duration-300 hover:text-white">
<svg class="fill-current" width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10 8.75C7.65625 8.75 5.78125 6.90625 5.78125 4.65625C5.78125 2.40625 7.65625 0.5625 10 0.5625C12.3438 0.5625 14.2188 2.40625 14.2188 4.65625C14.2188 6.90625 12.3438 8.75 10 8.75ZM10 1.96875C8.4375 1.96875 7.1875 3.1875 7.1875 4.65625C7.1875 6.125 8.4375 7.34375 10 7.34375C11.5625 7.34375 12.8125 6.125 12.8125 4.65625C12.8125 3.1875 11.5625 1.96875 10 1.96875Z"
fill="" />
<path
d="M16.5938 19.4688C16.2188 19.4688 15.875 19.1562 15.875 18.75V17.8438C15.875 14.5938 13.25 11.9688 10 11.9688C6.75 11.9688 4.125 14.5938 4.125 17.8438V18.75C4.125 19.125 3.8125 19.4688 3.40625 19.4688C3 19.4688 2.6875 19.1562 2.6875 18.75V17.8438C2.6875 13.8125 5.96875 10.5625 9.96875 10.5625C13.9688 10.5625 17.25 13.8437 17.25 17.8438V18.75C17.2813 19.125 16.9688 19.4688 16.5938 19.4688Z"
fill="" />
</svg>
<span class="text-sm font-medium">Piter Mecraow</span>
</div>
<div class="flex items-center gap-2 flex-wrap cursor-pointer ease-in duration-300 hover:text-white">
<svg class="fill-current" width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M17.5 3.3125H15.875V2.625C15.875 2.25 15.5625 1.90625 15.1562 1.90625C14.75 1.90625 14.4375 2.21875 14.4375 2.625V3.3125H5.53125V2.625C5.53125 2.25 5.21875 1.90625 4.8125 1.90625C4.40625 1.90625 4.09375 2.21875 4.09375 2.625V3.3125H2.5C1.4375 3.3125 0.53125 4.1875 0.53125 5.28125V16.1563C0.53125 17.2188 1.40625 18.125 2.5 18.125H17.5C18.5625 18.125 19.4687 17.25 19.4687 16.1563V5.25C19.4687 4.1875 18.5625 3.3125 17.5 3.3125ZM1.96875 9.125H4.625V12.2188H1.96875V9.125ZM6.03125 9.125H9.3125V12.2188H6.03125V9.125ZM9.3125 13.625V16.6875H6.03125V13.625H9.3125ZM10.7187 13.625H14V16.6875H10.7187V13.625ZM10.7187 12.2188V9.125H14V12.2188H10.7187ZM15.375 9.125H18.0312V12.2188H15.375V9.125ZM2.5 4.71875H4.125V5.375C4.125 5.75 4.4375 6.09375 4.84375 6.09375C5.25 6.09375 5.5625 5.78125 5.5625 5.375V4.71875H14.5V5.375C14.5 5.75 14.8125 6.09375 15.2187 6.09375C15.625 6.09375 15.9375 5.78125 15.9375 5.375V4.71875H17.5C17.8125 4.71875 18.0625 4.96875 18.0625 5.28125V7.71875H1.96875V5.28125C1.96875 4.96875 2.1875 4.71875 2.5 4.71875ZM1.96875 16.125V13.5938H4.625V16.6563H2.5C2.1875 16.6875 1.96875 16.4375 1.96875 16.125ZM17.5 16.6875H15.375V13.625H18.0312V16.1563C18.0625 16.4375 17.8125 16.6875 17.5 16.6875Z"
fill="" />
</svg>
<span class="text-sm font-medium">10 Jan, 2025</span>
</div>
</div>
</div>
<h2 class="font-semibold text-white text-[34px] leading-[45px] max-w-[579px] mb-7.5">
Revolution in Content Creation and Communication
</h2>
<p class="font-medium mb-6">
The inability to write. Everyone has been there. Even the most
seasoned and well-versed writers and content producers endure
mental gaps. Nulla Lorem mollit cupidatat irure. Laborum magna
nulla duis ullamco cillum dolor. Voluptate exercitation incididunt
aliquip deserunt reprehenderit elit laborum.
</p>
<p class="font-medium mb-7.5">
significant role in determining their overall well-being,
including their physical and mental health, as well as their
happiness and satisfaction with life. A healthy lifestyle, which
includes a balanced diet, regular exercise, and a healthy sleep
pattern,
</p>
<h3 class="font-extrabold text-2xl text-white mb-6">
how I churn out 2000 words in 20 minutes
</h3>
<p class="font-medium mb-6">
Everyone has been there. Even the most seasoned and well-versed
writers and content producers endure mental gaps. Nulla Lorem
mollit cupidatat irure. Laborum magna nulla duis ullamco cillum
dolor. Voluptate anyone exercitation incididunt aliquip deserunt
reprehenderit elit laborum.
</p>
<p class="font-medium mb-12.5">
Aliqua id fugiat nostrud irure ex duis ea quis id quis ad et. Sunt
qui esse pariatur duis deserunt mollit dolore cillum minim tempor
enim. Elit aute irure tempor cupidatat incididunt.
</p>
<div class="flex items-center gap-4">
<p class="font-medium">Share This Post:</p>
<div class="flex items-center gap-5">
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M13 21.9506C18.0533 21.4489 22 17.1853 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 16.8379 5.43552 20.8734 10 21.8V16H7V13H10V9.79586C10 7.47449 11.9695 5.64064 14.285 5.80603L17 5.99996V8.99996H15C13.8954 8.99996 13 9.89539 13 11V13H17L16 16H13V21.9506Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M7.6125 21.5249C16.4625 21.5249 21.2625 14.2123 21.2625 7.87485C21.2625 7.72485 21.2625 7.46235 21.225 7.23735C22.1625 6.56235 22.9875 5.69985 23.625 4.76235C22.725 5.17485 21.825 5.39985 20.8875 5.51235C21.9 4.91235 22.65 3.97485 22.9875 2.84985C22.05 3.37485 21.075 3.78735 19.9125 4.01235C19.0125 3.07485 17.8125 2.47485 16.425 2.47485C13.7625 2.47485 11.5875 4.64985 11.5875 7.31235C11.5875 7.68735 11.625 8.06235 11.7 8.43735C7.8375 8.17485 4.3125 6.26235 1.9125 3.37485C1.5 4.12485 1.275 4.91235 1.275 5.77485C1.275 7.46235 2.1375 8.88735 3.45 9.74985C2.6625 9.71235 1.9125 9.48735 1.275 9.14985C1.275 9.18735 1.275 9.18735 1.275 9.18735C1.275 11.4748 2.925 13.4624 5.1 13.9124C4.6875 14.0249 4.2375 14.0623 3.9 14.0623C3.6 14.0623 3.2625 14.0248 3 13.9499C3.6375 15.8624 5.4 17.2499 7.5 17.2874C5.85 18.5624 3.7875 19.3498 1.575 19.3498C1.125 19.4249 0.75 19.3498 0.375 19.3123C2.4 20.7374 4.9125 21.5249 7.6125 21.5249Z"
fill="#" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_141_17422)">
<path
d="M21.9381 0.375H2.10059C1.16309 0.375 0.413086 1.125 0.413086 2.0625V21.9375C0.413086 22.8375 1.16309 23.625 2.10059 23.625H21.8631C22.8006 23.625 23.5506 22.875 23.5506 21.9375V2.025C23.6256 1.125 22.8756 0.375 21.9381 0.375ZM7.2756 20.1375H3.8631V9.075H7.2756V20.1375ZM5.5506 7.5375C4.4256 7.5375 3.56309 6.6375 3.56309 5.55C3.56309 4.4625 4.4631 3.5625 5.5506 3.5625C6.6381 3.5625 7.5381 4.4625 7.5381 5.55C7.5381 6.6375 6.7131 7.5375 5.5506 7.5375ZM20.2131 20.1375H16.8006V14.775C16.8006 13.5 16.7631 11.8125 15.0006 11.8125C13.2006 11.8125 12.9381 13.2375 12.9381 14.6625V20.1375H9.5256V9.075H12.8631V10.6125H12.9006C13.3881 9.7125 14.4756 8.8125 16.1631 8.8125C19.6506 8.8125 20.2881 11.0625 20.2881 14.1375V20.1375H20.2131Z"
fill="" />
</g>
<defs>
<clipPath id="clip0_141_17422">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</div>
</div>
</div>
<!-- related post -->
<h2 class="font-semibold text-white text-[34px] leading-[45px] max-w-[579px] mb-10 mt-25">
Related Articles
</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-7.5">
<!-- blog item -->
<div class="wow fadeInUp group">
<div class="mb-6 overflow-hidden rounded-xl">
<img src="images/blog-01.png" alt="image"
class="ease-linear w-full duration-500 scale-100 group-hover:scale-125" />
</div>
<div class="flex flex-wrap gap-2.5 items-center mb-4.5">
<span
class="font-medium text-xs hover:text-white cursor-pointer py-[3px] px-2.5 rounded-full bg-white/[0.07] border border-white/10 hover:border-white/25 ease-out duration-300">
Design
</span>
<span
class="font-medium text-xs hover:text-white cursor-pointer py-[3px] px-2.5 rounded-full bg-white/[0.07] border border-white/10 hover:border-white/25 ease-out duration-300">
Engineering
</span>
</div>
<h4>
<a href="blog-single.html" class="text-white font-semibold text-xl ease-in duration-300 hover:opacity-80">
Revolution in Content Creation and Communication
</a>
</h4>
<p class="font-medium mt-4">
Lorem ipsum dolor sit amet, consectetur adipisc elit sed do
eiusmod tempor incididunt ut labore et dolore magna oliumosd
aliqua...
</p>
<div class="flex items-center gap-4.5 flex-wrap mt-6">
<div class="flex items-center gap-2 flex-wrap cursor-pointer ease-in duration-300 hover:text-white">
<svg class="fill-current" width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10 8.75C7.65625 8.75 5.78125 6.90625 5.78125 4.65625C5.78125 2.40625 7.65625 0.5625 10 0.5625C12.3438 0.5625 14.2188 2.40625 14.2188 4.65625C14.2188 6.90625 12.3438 8.75 10 8.75ZM10 1.96875C8.4375 1.96875 7.1875 3.1875 7.1875 4.65625C7.1875 6.125 8.4375 7.34375 10 7.34375C11.5625 7.34375 12.8125 6.125 12.8125 4.65625C12.8125 3.1875 11.5625 1.96875 10 1.96875Z"
fill="" />
<path
d="M16.5938 19.4688C16.2188 19.4688 15.875 19.1562 15.875 18.75V17.8438C15.875 14.5938 13.25 11.9688 10 11.9688C6.75 11.9688 4.125 14.5938 4.125 17.8438V18.75C4.125 19.125 3.8125 19.4688 3.40625 19.4688C3 19.4688 2.6875 19.1562 2.6875 18.75V17.8438C2.6875 13.8125 5.96875 10.5625 9.96875 10.5625C13.9688 10.5625 17.25 13.8437 17.25 17.8438V18.75C17.2813 19.125 16.9688 19.4688 16.5938 19.4688Z"
fill="" />
</svg>
<span class="text-sm font-medium">Alex Demo</span>
</div>
<div class="flex items-center gap-2 flex-wrap cursor-pointer ease-in duration-300 hover:text-white">
<svg class="fill-current" width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M17.5 3.3125H15.875V2.625C15.875 2.25 15.5625 1.90625 15.1562 1.90625C14.75 1.90625 14.4375 2.21875 14.4375 2.625V3.3125H5.53125V2.625C5.53125 2.25 5.21875 1.90625 4.8125 1.90625C4.40625 1.90625 4.09375 2.21875 4.09375 2.625V3.3125H2.5C1.4375 3.3125 0.53125 4.1875 0.53125 5.28125V16.1563C0.53125 17.2188 1.40625 18.125 2.5 18.125H17.5C18.5625 18.125 19.4687 17.25 19.4687 16.1563V5.25C19.4687 4.1875 18.5625 3.3125 17.5 3.3125ZM1.96875 9.125H4.625V12.2188H1.96875V9.125ZM6.03125 9.125H9.3125V12.2188H6.03125V9.125ZM9.3125 13.625V16.6875H6.03125V13.625H9.3125ZM10.7187 13.625H14V16.6875H10.7187V13.625ZM10.7187 12.2188V9.125H14V12.2188H10.7187ZM15.375 9.125H18.0312V12.2188H15.375V9.125ZM2.5 4.71875H4.125V5.375C4.125 5.75 4.4375 6.09375 4.84375 6.09375C5.25 6.09375 5.5625 5.78125 5.5625 5.375V4.71875H14.5V5.375C14.5 5.75 14.8125 6.09375 15.2187 6.09375C15.625 6.09375 15.9375 5.78125 15.9375 5.375V4.71875H17.5C17.8125 4.71875 18.0625 4.96875 18.0625 5.28125V7.71875H1.96875V5.28125C1.96875 4.96875 2.1875 4.71875 2.5 4.71875ZM1.96875 16.125V13.5938H4.625V16.6563H2.5C2.1875 16.6875 1.96875 16.4375 1.96875 16.125ZM17.5 16.6875H15.375V13.625H18.0312V16.1563C18.0625 16.4375 17.8125 16.6875 17.5 16.6875Z"
fill="" />
</svg>
<span class="text-sm font-medium">25 Mar, 2025</span>
</div>
</div>
</div>
<!-- blog item -->
<div class="wow fadeInUp group">
<div class="mb-6 overflow-hidden rounded-xl">
<img src="images/blog-02.png" alt="image"
class="ease-linear w-full duration-500 scale-100 group-hover:scale-125" />
</div>
<div class="flex flex-wrap gap-2.5 items-center mb-4.5">
<span
class="font-medium text-xs hover:text-white cursor-pointer py-[3px] px-2.5 rounded-full bg-white/[0.07] border border-white/10 hover:border-white/25 ease-out duration-300">
Development
</span>
<span
class="font-medium text-xs hover:text-white cursor-pointer py-[3px] px-2.5 rounded-full bg-white/[0.07] border border-white/10 hover:border-white/25 ease-out duration-300">
Security
</span>
</div>
<h4>
<a href="blog-single.html" class="text-white font-semibold text-xl ease-in duration-300 hover:opacity-80">
How AI Writing Tools Empower Writers to Speed up there Writing
</a>
</h4>
<p class="font-medium mt-4">
Lorem ipsum dolor sit amet, consectetur adipisc elit sed do
eiusmod tempor incididunt ut labore et dolore magna oliumosd
aliqua...
</p>
<div class="flex items-center gap-4.5 flex-wrap mt-6">
<div class="flex items-center gap-2 flex-wrap cursor-pointer ease-in duration-300 hover:text-white">
<svg class="fill-current" width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10 8.75C7.65625 8.75 5.78125 6.90625 5.78125 4.65625C5.78125 2.40625 7.65625 0.5625 10 0.5625C12.3438 0.5625 14.2188 2.40625 14.2188 4.65625C14.2188 6.90625 12.3438 8.75 10 8.75ZM10 1.96875C8.4375 1.96875 7.1875 3.1875 7.1875 4.65625C7.1875 6.125 8.4375 7.34375 10 7.34375C11.5625 7.34375 12.8125 6.125 12.8125 4.65625C12.8125 3.1875 11.5625 1.96875 10 1.96875Z"
fill="" />
<path
d="M16.5938 19.4688C16.2188 19.4688 15.875 19.1562 15.875 18.75V17.8438C15.875 14.5938 13.25 11.9688 10 11.9688C6.75 11.9688 4.125 14.5938 4.125 17.8438V18.75C4.125 19.125 3.8125 19.4688 3.40625 19.4688C3 19.4688 2.6875 19.1562 2.6875 18.75V17.8438C2.6875 13.8125 5.96875 10.5625 9.96875 10.5625C13.9688 10.5625 17.25 13.8437 17.25 17.8438V18.75C17.2813 19.125 16.9688 19.4688 16.5938 19.4688Z"
fill="" />
</svg>
<span class="text-sm font-medium">Hendary Jonson</span>
</div>
<div class="flex items-center gap-2 flex-wrap cursor-pointer ease-in duration-300 hover:text-white">
<svg class="fill-current" width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M17.5 3.3125H15.875V2.625C15.875 2.25 15.5625 1.90625 15.1562 1.90625C14.75 1.90625 14.4375 2.21875 14.4375 2.625V3.3125H5.53125V2.625C5.53125 2.25 5.21875 1.90625 4.8125 1.90625C4.40625 1.90625 4.09375 2.21875 4.09375 2.625V3.3125H2.5C1.4375 3.3125 0.53125 4.1875 0.53125 5.28125V16.1563C0.53125 17.2188 1.40625 18.125 2.5 18.125H17.5C18.5625 18.125 19.4687 17.25 19.4687 16.1563V5.25C19.4687 4.1875 18.5625 3.3125 17.5 3.3125ZM1.96875 9.125H4.625V12.2188H1.96875V9.125ZM6.03125 9.125H9.3125V12.2188H6.03125V9.125ZM9.3125 13.625V16.6875H6.03125V13.625H9.3125ZM10.7187 13.625H14V16.6875H10.7187V13.625ZM10.7187 12.2188V9.125H14V12.2188H10.7187ZM15.375 9.125H18.0312V12.2188H15.375V9.125ZM2.5 4.71875H4.125V5.375C4.125 5.75 4.4375 6.09375 4.84375 6.09375C5.25 6.09375 5.5625 5.78125 5.5625 5.375V4.71875H14.5V5.375C14.5 5.75 14.8125 6.09375 15.2187 6.09375C15.625 6.09375 15.9375 5.78125 15.9375 5.375V4.71875H17.5C17.8125 4.71875 18.0625 4.96875 18.0625 5.28125V7.71875H1.96875V5.28125C1.96875 4.96875 2.1875 4.71875 2.5 4.71875ZM1.96875 16.125V13.5938H4.625V16.6563H2.5C2.1875 16.6875 1.96875 16.4375 1.96875 16.125ZM17.5 16.6875H15.375V13.625H18.0312V16.1563C18.0625 16.4375 17.8125 16.6875 17.5 16.6875Z"
fill="" />
</svg>
<span class="text-sm font-medium">12 Feb, 2025</span>
</div>
</div>
</div>
<!-- blog item -->
<div class="wow fadeInUp group">
<div class="mb-6 overflow-hidden rounded-xl">
<img src="images/blog-03.png" alt="image"
class="ease-linear w-full duration-500 scale-100 group-hover:scale-125" />
</div>
<div class="flex flex-wrap gap-2.5 items-center mb-4.5">
<span
class="font-medium text-xs hover:text-white cursor-pointer py-[3px] px-2.5 rounded-full bg-white/[0.07] border border-white/10 hover:border-white/25 ease-out duration-300">
Products
</span>
<span
class="font-medium text-xs hover:text-white cursor-pointer py-[3px] px-2.5 rounded-full bg-white/[0.07] border border-white/10 hover:border-white/25 ease-out duration-300">
Blog and articles
</span>
</div>
<h4>
<a href="blog-single.html" class="text-white font-semibold text-xl ease-in duration-300 hover:opacity-80">
Revolution in Content Creation and Communication
</a>
</h4>
<p class="font-medium mt-4">
Lorem ipsum dolor sit amet, consectetur adipisc elit sed do
eiusmod tempor incididunt ut labore et dolore magna oliumosd
aliqua...
</p>
<div class="flex items-center gap-4.5 flex-wrap mt-6">
<div class="flex items-center gap-2 flex-wrap cursor-pointer ease-in duration-300 hover:text-white">
<svg class="fill-current" width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10 8.75C7.65625 8.75 5.78125 6.90625 5.78125 4.65625C5.78125 2.40625 7.65625 0.5625 10 0.5625C12.3438 0.5625 14.2188 2.40625 14.2188 4.65625C14.2188 6.90625 12.3438 8.75 10 8.75ZM10 1.96875C8.4375 1.96875 7.1875 3.1875 7.1875 4.65625C7.1875 6.125 8.4375 7.34375 10 7.34375C11.5625 7.34375 12.8125 6.125 12.8125 4.65625C12.8125 3.1875 11.5625 1.96875 10 1.96875Z"
fill="" />
<path
d="M16.5938 19.4688C16.2188 19.4688 15.875 19.1562 15.875 18.75V17.8438C15.875 14.5938 13.25 11.9688 10 11.9688C6.75 11.9688 4.125 14.5938 4.125 17.8438V18.75C4.125 19.125 3.8125 19.4688 3.40625 19.4688C3 19.4688 2.6875 19.1562 2.6875 18.75V17.8438C2.6875 13.8125 5.96875 10.5625 9.96875 10.5625C13.9688 10.5625 17.25 13.8437 17.25 17.8438V18.75C17.2813 19.125 16.9688 19.4688 16.5938 19.4688Z"
fill="" />
</svg>
<span class="text-sm font-medium">Piter Mecraow</span>
</div>
<div class="flex items-center gap-2 flex-wrap cursor-pointer ease-in duration-300 hover:text-white">
<svg class="fill-current" width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M17.5 3.3125H15.875V2.625C15.875 2.25 15.5625 1.90625 15.1562 1.90625C14.75 1.90625 14.4375 2.21875 14.4375 2.625V3.3125H5.53125V2.625C5.53125 2.25 5.21875 1.90625 4.8125 1.90625C4.40625 1.90625 4.09375 2.21875 4.09375 2.625V3.3125H2.5C1.4375 3.3125 0.53125 4.1875 0.53125 5.28125V16.1563C0.53125 17.2188 1.40625 18.125 2.5 18.125H17.5C18.5625 18.125 19.4687 17.25 19.4687 16.1563V5.25C19.4687 4.1875 18.5625 3.3125 17.5 3.3125ZM1.96875 9.125H4.625V12.2188H1.96875V9.125ZM6.03125 9.125H9.3125V12.2188H6.03125V9.125ZM9.3125 13.625V16.6875H6.03125V13.625H9.3125ZM10.7187 13.625H14V16.6875H10.7187V13.625ZM10.7187 12.2188V9.125H14V12.2188H10.7187ZM15.375 9.125H18.0312V12.2188H15.375V9.125ZM2.5 4.71875H4.125V5.375C4.125 5.75 4.4375 6.09375 4.84375 6.09375C5.25 6.09375 5.5625 5.78125 5.5625 5.375V4.71875H14.5V5.375C14.5 5.75 14.8125 6.09375 15.2187 6.09375C15.625 6.09375 15.9375 5.78125 15.9375 5.375V4.71875H17.5C17.8125 4.71875 18.0625 4.96875 18.0625 5.28125V7.71875H1.96875V5.28125C1.96875 4.96875 2.1875 4.71875 2.5 4.71875ZM1.96875 16.125V13.5938H4.625V16.6563H2.5C2.1875 16.6875 1.96875 16.4375 1.96875 16.125ZM17.5 16.6875H15.375V13.625H18.0312V16.1563C18.0625 16.4375 17.8125 16.6875 17.5 16.6875Z"
fill="" />
</svg>
<span class="text-sm font-medium">10 Jan, 2025</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===== Blog Single End ===== -->
</main>
<!-- ===== Footer Start ===== -->
<!-- ====== Footer Section Start -->
<footer class="relative z-10 pb-17.5 lg:pb-22.5 xl:pb-27.5">
<!-- bg shapes -->
<div class="absolute bottom-0 left-0 w-full flex flex-col gap-3 -z-1 opacity-50">
<div class="w-full h-[1.24px] footer-bg-gradient"></div>
<div class="w-full h-[2.47px] footer-bg-gradient"></div>
<div class="w-full h-[3.71px] footer-bg-gradient"></div>
<div class="w-full h-[4.99px] footer-bg-gradient"></div>
<div class="w-full h-[6.19px] footer-bg-gradient"></div>
<div class="w-full h-[7.42px] footer-bg-gradient"></div>
<div class="w-full h-[8.66px] footer-bg-gradient"></div>
<div class="w-full h-[9.90px] footer-bg-gradient"></div>
<div class="w-full h-[13px] footer-bg-gradient"></div>
</div>
<div class="max-w-[1170px] mx-auto px-4 sm:px-8 xl:px-0 relative pt-17.5">
<div class="w-full h-[1px] footer-divider-gradient absolute top-0 left-0"></div>
<div class="flex flex-wrap justify-between">
<div class="mb-10 max-w-[571px] w-full">
<a class="mb-8.5 inline-block" href="index.html">
<img src="images/logo.svg" alt="Logo" />
</a>
<p class="mb-12 xl:w-4/5">
Enjoyable and Effective Preparation for Tech Interviews
</p>
<div class="flex items-center gap-5">
<a href="https://github.com/Education-Victory" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_368_11839)">
<path
d="M12 0.674805C5.625 0.674805 0.375 5.8498 0.375 12.2998C0.375 17.3998 3.7125 21.7498 8.3625 23.3248C8.9625 23.4373 9.15 23.0623 9.15 22.7998C9.15 22.5373 9.15 21.7873 9.1125 20.7748C5.8875 21.5248 5.2125 19.1998 5.2125 19.1998C4.6875 17.8873 3.9 17.5123 3.9 17.5123C2.85 16.7623 3.9375 16.7623 3.9375 16.7623C5.1 16.7998 5.7375 17.9623 5.7375 17.9623C6.75 19.7623 8.475 19.2373 9.1125 18.8998C9.225 18.1498 9.525 17.6248 9.8625 17.3248C7.3125 17.0623 4.575 16.0498 4.575 11.6248C4.575 10.3498 5.0625 9.3373 5.775 8.5498C5.6625 8.2873 5.25 7.0873 5.8875 5.4748C5.8875 5.4748 6.9 5.1748 9.1125 6.6748C10.05 6.4123 11.025 6.2623 12.0375 6.2623C13.05 6.2623 14.0625 6.3748 14.9625 6.6748C17.175 5.2123 18.15 5.4748 18.15 5.4748C18.7875 7.0498 18.4125 8.2873 18.2625 8.5498C19.0125 9.3373 19.4625 10.3873 19.4625 11.6248C19.4625 16.0498 16.725 17.0623 14.175 17.3248C14.5875 17.6998 14.9625 18.4498 14.9625 19.4998C14.9625 21.0748 14.925 22.3123 14.925 22.6873C14.925 22.9873 15.15 23.3248 15.7125 23.2123C20.2875 21.6748 23.625 17.3623 23.625 12.2248C23.5875 5.8498 18.375 0.674805 12 0.674805Z"
fill="" />
</g>
<defs>
<clipPath id="clip0_368_11839">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</div>
<p class="font-medium mt-5.5">
Education Victory, LLC. All rights reserved.
</p>
</div>
<div class="max-w-[571px] w-full">
<div class="flex flex-col sm:flex-row sm:justify-between gap-10">
<div>
<h5 class="font-semibold text-white mb-5">Products</h5>
<ul class="flex flex-col gap-3.5">
<li>
<a href="https://ai-coach-ev.streamlit.app/" class="font-medium ease-in duration-300 hover:text-white">AI Coach: Resume customization</a>
</li>
<li>
<a href="https://prompt.osjobs.net/" class="font-medium ease-in duration-300 hover:text-white">Promptio</a>
</li>
<li>
<a href="https://whisper-webui.streamlit.app//" class="font-medium ease-in duration-300 hover:text-white">Whisper WebUI</a>
</li>
</ul>
</div>
<div>
<h5 class="font-semibold text-white mb-5">Company</h5>
<ul class="flex flex-col gap-3.5">
<li>
<a href="mailto:contact@osjobs.net?subject=Hello" class="font-medium ease-in duration-300 hover:text-white">Support</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- ====== Footer Section End -->
<!-- ===== Footer End ===== -->
<!-- ====== Back To Top Start ===== -->
<button
class="hidden items-center justify-center w-10 h-10 rounded-[4px] shadow-solid-5 bg-purple hover:opacity-70 fixed bottom-8 right-8 z-999"
@click="window.scrollTo({top: 0, behavior: 'smooth'})"
@scroll.window="scrollTop = (window.pageYOffset > 50) ? true : false" :class="{ '!flex' : scrollTop }">
<svg class="fill-white w-5 h-5" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path
d="M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z" />
</svg>
</button>
<!-- ====== Back To Top End ===== -->
<script defer src="bundle.js"></script></body>
</html>