forked from GubliAS/GRASP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.html
More file actions
360 lines (348 loc) · 18.4 KB
/
Copy pathBlog.html
File metadata and controls
360 lines (348 loc) · 18.4 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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GRASP</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: "class",
theme: {
fontType: {
sans: '"Bangers"',
logo: '"Markazi"',
},
extend: {
colors: {
primary: "#6E56FE",
secondary: "#E5E7EB",
btn_default: "#a78bfa",
btn_hover: "#8b5cf6",
btn_focus: "#4c1d95",
},
},
},
};
</script>
<style type="text/tailwindcss">
@layer utilities {
}
</style>
<script>
// On page load or when changing themes, best to add inline in `head` to avoid FOUC
if (
localStorage.getItem("color-theme") === "dark" ||
(!("color-theme" in localStorage) &&
window.matchMedia("(prefers-color-scheme: dark)").matches)
) {
document.documentElement.classList.add("dark");
} else {
document.documentElement.classList.remove("dark");
}
</script>
<link href="https://cdn.jsdelivr.net/npm/flowbite@2.5.2/dist/flowbite.min.css" rel="stylesheet" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<nav class="bg-white dark:bg-gray-900 fixed w-full z-20 top-0 start-0 border-b border-gray-200 dark:border-gray-600">
<div class="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-4">
<a href="#" class="flex items-center space-x-2 rtl:space-x-reverse">
<img src="./img/grasp-logo-dark.svg" class="h-0 dark:h-9" alt="Flowbite Logo" />
<img src="./img/grasp-logo-light.svg" class="dark:hidden h-9" alt="Flowbite Logo" />
<span
class="font-[Bangers] self-center text-blue-700 text-3xl font-semibold whitespace-nowrap dark:text-white">GRASP</span>
</a>
<div class="flex md:order-2 space-x-3 md:space-x-0 rtl:space-x-reverse">
<button type="button"
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-4 py-2 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
Sign Up
</button>
<button id="theme-toggle" type="button"
class="text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5">
<svg id="theme-toggle-dark-icon" class="hidden w-5 h-5" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"></path>
</svg>
<svg id="theme-toggle-light-icon" class="hidden w-5 h-5" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z"
fill-rule="evenodd" clip-rule="evenodd"></path>
</svg>
</button>
<button data-collapse-toggle="navbar-sticky" type="button"
class="inline-flex items-center p-2 w-10 h-10 justify-center 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="navbar-sticky" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 14">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 1h15M1 7h15M1 13h15" />
</svg>
</button>
</div>
<div class="items-center justify-between hidden w-full md:flex md:w-auto md:order-1" id="navbar-sticky">
<ul
class="flex flex-col p-4 md:p-0 mt-4 font-medium border border-gray-100 rounded-lg bg-gray-50 md:space-x-8 rtl:space-x-reverse md:flex-row md:mt-0 md:border-0 md:bg-white dark:bg-gray-800 md:dark:bg-gray-900 dark:border-gray-700">
<li>
<a href="./index.html"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-blue-700 md:p-0 md:dark:hover:text-blue-500 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700"
aria-current="page">Home</a>
</li>
<li>
<a href="./About.html"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-blue-700 md:p-0 md:dark:hover:text-blue-500 dark: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="./Pricing.html"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-blue-700 md:p-0 md:dark:hover:text-blue-500 dark: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="./Team.html"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-blue-700 md:p-0 md:dark:hover:text-blue-500 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700">Team</a>
</li>
<li>
<a href="./Contact.html"
class="block py-2 px-3 text-gray-900 rounded hover:bg-gray-100 md:hover:bg-transparent md:hover:text-blue-700 md:p-0 md:dark:hover:text-blue-500 dark:text-white dark:hover:bg-gray-700 dark:hover:text-white md:dark:hover:bg-transparent dark:border-gray-700">Contact</a>
</li>
<li>
<a href="./Blog.html"
class="block py-2 px-3 text-white bg-blue-700 rounded md:bg-transparent md:text-blue-700 md:p-0 md:dark:text-blue-500">Blog</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- END OF NAVBAR -->
<div class="mt-[68px] p-4 py-14 dark:bg-gray-900">
<h3 class="mx-auto text-[28px] text-blue-700 text-center font-bold font-[Bangers] tracking-widest">
OUR BLOGS
</h3>
<h1 class="text-[40px] text-gray-700 dark:text-white font-bold text-center mx-auto">
Our Recent News
</h1>
<p class="mb-[64px] text-gray-500 text-[20px] max-w-[580px] mx-auto font-semibold dark:text-gray-300 text-center">
There are many variations of passages of Lorem Ipsum available but the majority have suffered alteration in some
form.
</p>
<div class="grid grid-cols-1 max-w-screen-xl mx-auto md:grid-cols-3 gap-8">
<!-- -->
<div class="grid grid-cols-1 gap-5">
<div class="w-fit"><img class="rounded-lg " src="./img/blog3.png" alt=""></div>
<div class="bg-blue-700 w-fit px-3 rounded">
<h1 class="text-gray-300 font-medium">Dec 22, 2024</h1>
</div>
<a href="" class="w-fit">
<h1 class="text-xl font-semibold dark:text-white dark:hover:text-blue-700 hover:text-blue-700">Meet AutoManage, the best AI management
tools</h1>
</a>
<p class="text-gray-500 font-medium">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<!-- -->
<div class="grid grid-cols-1 gap-5">
<div class="max-w-fit"><img class="rounded-lg" src="./img/blog1.png" alt=""></div>
<div class="bg-blue-700 w-fit px-3 rounded">
<h1 class="text-gray-300 font-medium">Dec 22, 2024</h1>
</div>
<a href="" class="w-fit">
<h1 class="text-xl font-semibold dark:text-white dark:hover:text-blue-700 hover:text-blue-700">How to earn more money as a wellness coach</h1>
</a>
<p class="text-gray-500 font-medium">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<!-- -->
<div class="grid grid-cols-1 gap-5">
<div class="w-fit"><img class="rounded-lg" src="./img/blog2.png" alt=""></div>
<div class="bg-blue-700 w-fit px-3 rounded">
<h1 class="text-gray-300 font-medium">Dec 22, 2024</h1>
</div>
<a href="" class="w-fit">
<h1 class="text-xl font-semibold dark:text-white dark:hover:text-blue-700 hover:text-blue-700">The no-fuss guide to upselling and cross selling</h1>
</a>
<p class="text-gray-500 font-medium">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<!-- -->
</div>
</div>
<hr>
<!-- FOOTER SECTION -->
<section class=" mx-auto mb-[85px] relative bg-white dark:bg-gray-900">
<img class="max-h-[400px] absolute " src="./img/footer1.png" alt="">
<img class="absolute right-0 bottom-0 z-10" src="./img/footer2.png" alt="">
<div class="p-4 grid grid-cols-1 gap-[32px] md:grid-cols-3">
<!-- -->
<div class="max-w-[330px]">
<a href="#" class="flex items-center space-x-2 rtl:space-x-reverse">
<img src="./img/grasp-logo-dark.svg" class="h-0 dark:h-9" alt="Flowbite Logo" />
<img src="./img/grasp-logo-light.svg" class="dark:hidden h-9" alt="Flowbite Logo" />
<span
class="font-[Bangers] self-center text-blue-700 text-3xl font-semibold whitespace-nowrap dark:text-white">GRASP</span>
</a>
<h2 class="text-gray-500 dark:text-white font-semibold text-[20px]">
We create digital experiences for brands and companies by using
technology.
</h2>
<div class="grid grid-cols-4 max-w-[200px]">
<a href=""><svg class="w-7 h-7 text-gray-500 dark:text-blue-700" aria-hidden="true"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M13.135 6H15V3h-1.865a4.147 4.147 0 0 0-4.142 4.142V9H7v3h2v9.938h3V12h2.021l.592-3H12V6.591A.6.6 0 0 1 12.592 6h.543Z"
clip-rule="evenodd" />
</svg></a>
<a href=""><svg class="w-7 h-7 text-gray-500 dark:text-blue-700" aria-hidden="true"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M22 5.892a8.178 8.178 0 0 1-2.355.635 4.074 4.074 0 0 0 1.8-2.235 8.343 8.343 0 0 1-2.605.981A4.13 4.13 0 0 0 15.85 4a4.068 4.068 0 0 0-4.1 4.038c0 .31.035.618.105.919A11.705 11.705 0 0 1 3.4 4.734a4.006 4.006 0 0 0 1.268 5.392 4.165 4.165 0 0 1-1.859-.5v.05A4.057 4.057 0 0 0 6.1 13.635a4.192 4.192 0 0 1-1.856.07 4.108 4.108 0 0 0 3.831 2.807A8.36 8.36 0 0 1 2 18.184 11.732 11.732 0 0 0 8.291 20 11.502 11.502 0 0 0 19.964 8.5c0-.177 0-.349-.012-.523A8.143 8.143 0 0 0 22 5.892Z"
clip-rule="evenodd" />
</svg></a>
<a href=""><svg class="w-7 h-7 text-gray-500 dark:text-blue-700" aria-hidden=" true"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<path fill="currentColor" fill-rule="evenodd"
d="M3 8a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v8a5 5 0 0 1-5 5H8a5 5 0 0 1-5-5V8Zm5-3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V8a3 3 0 0 0-3-3H8Zm7.597 2.214a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2h-.01a1 1 0 0 1-1-1ZM12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-5 3a5 5 0 1 1 10 0 5 5 0 0 1-10 0Z"
clip-rule="evenodd" />
</svg></a>
<a href=""><svg class="w-7 h-7 text-gray-500 dark:text-blue-700" aria-hidden="true"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M12.51 8.796v1.697a3.738 3.738 0 0 1 3.288-1.684c3.455 0 4.202 2.16 4.202 4.97V19.5h-3.2v-5.072c0-1.21-.244-2.766-2.128-2.766-1.827 0-2.139 1.317-2.139 2.676V19.5h-3.19V8.796h3.168ZM7.2 6.106a1.61 1.61 0 0 1-.988 1.483 1.595 1.595 0 0 1-1.743-.348A1.607 1.607 0 0 1 5.6 4.5a1.601 1.601 0 0 1 1.6 1.606Z"
clip-rule="evenodd" />
<path d="M7.2 8.809H4V19.5h3.2V8.809Z" />
</svg></a>
</div>
</div>
<!-- -->
<div class="min-w-[120px]">
<h2 class="text-[20px] pb-5 text-blue-700 dark:text-white font-bold">About Us</h2>
<a href="#">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">Home</p>
</a>
<a href="">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">Features
</p>
</a>
<a href="">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">About</p>
</a>
<a href="">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">
Testimonial</p>
</a>
</div>
<!-- -->
<div class="min-w-[130px]">
<h2 class="text-[20px] pb-5 text-blue-700 dark:text-white font-bold">Features</h2>
<a href="#">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">How it
works</p>
</a>
<a href="">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">Privacy
policy</p>
</a>
<a href="">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">Terms of
service</p>
</a>
<a href="">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">Refund
policy</p>
</a>
</div>
<!-- -->
<div class="min-w-[140px]">
<h2 class="text-[20px] pb-5 text-blue-700 dark:text-white font-bold">Our Products</h2>
<a href="#">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">LineIcons
</p>
</a>
<a href="">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">Ecommerce
GTML</p>
</a>
<a href="">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">Tailwind
</p>
</a>
<a href="">
<p class="dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-gray-500 dark:text-white">Plainwind
</p>
</a>
</div>
<!-- -->
<div class="min-w-[230px] ">
<h2 class="text-[20px] pb-5 text-blue-700 dark:text-white font-bold">Latest blog</h2>
<a href="" class="flex gap-5 group">
<img class="h-[50px]" src="./img/blog4.png" alt="">
<p class=" group-hover:text-gray-400 font-semibold text-gray-500 dark:text-white">I think really important to
design with...</p>
</a>
<a href="" class="flex gap-5 group">
<img class="h-[50px]" src="./img/blog5.png" alt="">
<p class="font-semibold group-hover:text-gray-400 text-gray-500 dark:text-white">Recognising the need is the
primary</p>
</a>
</div>
<!-- -->
</div>
<div class="">
<hr class="border-gray-300 my-8">
<div class="grid grid-cols-1 md:grid-cols-2">
<div class="grid grid-cols-3 p-4">
<a href="">
<p
class="max-w-fit dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-blue-700 dark:text-white">
Privacy policy</p>
</a>
<a href="">
<p
class="max-w-fit dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-blue-700 dark:text-white">
Legal notice</p>
</a>
<a href="">
<p
class="max-w-fit dark:hover:text-gray-400 hover:text-gray-400 font-semibold text-blue-700 dark:text-white">
Terms of service</p>
</a>
</div>
<p class="p-4 md:ml-auto font-semibold text-blue-700 dark:text-white ">Designed and Developed by <span
class="text-black dark:text-blue-700 font-bold font-[Bangers] tracking-wider text-[18px]">GubliAS</span></p>
</div>
</div>
</section>
<footer
class="fixed bottom-0 left-0 z-20 w-full p-4 bg-white/60 border-t border-gray-200 shadow md:flex md:items-center md:justify-between md:p-6 dark:bg-gray-800 dark:border-gray-600">
<ul
class="flex justify-between items-center mt-3 text-sm font-medium w-full text-gray-500 dark:text-gray-400 sm:mt-0">
<li>
<a href="#" class="gap-2 flex hover:underline me-4 md:me-6">Made with
<img src="./img/Line 2.svg" alt="">
<img class="h-5" src="./img/tailgrids.svg" alt="">
</a>
</li>
<li class="">
<a href="#">
<button type="button"
class=" text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm p-2.5 text-center inline-flex items-center me-2 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
<svg class="w-5 h-5 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg"
width="24" height="24" fill="none" viewBox="0 0 24 24">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m5 15 7-7 7 7" />
</svg>
<span class="sr-only">Icon description</span>
</button></a>
</li>
</ul>
</footer>
<!-- END OF FOOTER -->
<script src="https://cdn.jsdelivr.net/npm/flowbite@2.5.2/dist/flowbite.min.js"></script>
<script src="./index.js"></script>
<script>
import AOS from "aos";
import "aos/dist/aos.css";
AOS.init({
duration: 300, // animation duration (in ms)
easing: "ease-in-out", // animation easing
once: true, // whether animation should happen only once
});
</script>
</body>
</html>