-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
517 lines (478 loc) · 21.9 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
<!DOCTYPE html>
<html>
<head>
<title>Portfolio | Gopi Chandra</title>
<link rel="shortcut icon" href="/img/favicon.svg" type="image/x-icon">
<script src="/tailwindCSS.js"></script>
<script>
window.onload = function () {
document.querySelector(".loading-page").style.display = "none";
};
</script>
<style>
/* Add any custom styles here */
html {
scroll-behavior: smooth;
}
.popup {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: none;
}
.popup-inner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
padding: 1rem;
}
.close-btn {
position: fixed;
top: 10px;
right: 10px;
font-size: 1.4rem;
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Loading... -->
<div class="loading-page fixed h-full w-full flex justify-center items-center bg-gray-200">
<img src="/logo_gc.svg" alt="Loading animation" class="h-64 w-64 left-0 right-0 top-0 bottom-0 animate-bounce">
</div>
<!-- HeaderSection -->
<header class="bg-white shadow-md w-full">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center cursor-pointer transition hover:scale-105">
<img src="/img/logo.svg" alt="Logo" class="h-12 w-auto mr-3">
<h1 class="text-2xl font-bold text-gray-800">Portfolio</h1>
</div>
<nav class="flex items-center">
<a href="#home"
class="px-3 py-2 font-bold text-gray-800 hover:text-gray-600 transition hover:scale-125">Home</a>
<a href="#about"
class="px-3 py-2 font-bold text-gray-800 hover:text-gray-600 transition hover:scale-125">About</a>
<a href="#team"
class="px-3 py-2 font-bold text-gray-800 hover:text-gray-600 transition hover:scale-125">Team</a>
<a href="#projects"
class="px-3 py-2 font-bold text-gray-800 hover:text-gray-600 transition hover:scale-125">Projects</a>
<a href="#blog"
class="px-3 py-2 font-bold text-gray-800 hover:text-gray-600 transition hover:scale-125">Blogs</a>
<a href="#contact"
class="px-3 py-2 font-bold text-gray-800 hover:text-gray-600 transition hover:scale-125">Contact</a>
</nav>
</div>
</div>
</header>
<main class="container mx-auto px-6 py-4">
<!--- HeroSection -->
<section class="bg-gray-300 py-32 shadow-lg rounded-xl" id="home">
<div class="container mx-auto px-4">
<div class="flex items-center justify-center flex-wrap">
<div class="w-full md:w-1/2 lg:w-2/3 px-4 mb-8">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Welcome to my website</h2>
<p class="text-gray-600 mb-8">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas
at justo eu turpis interdum condimentum. Nullam et erat ornare, elementum ante eu, tempus
tellus.
</p>
<span class="text-gray-600 mb-8 underline italic cursor-wait block">This site under
construct!!!</span>
<a href="#"
class="px-6 py-3 mr-5 rounded-full font-bold text-white bg-slate-800 hover:bg-slate-700 focus:outline-none focus:bg-slate-700">Learn
more
</a>
<a href="resume_GC.pdf"
class="px-6 py-3 inline-block rounded-full font-bold text-white bg-slate-800 hover:bg-slate-700 focus:outline-none focus:bg-slate-700""
download>
Download Resume
</a>
</div>
<div class=" w-full md:w-1/2 lg:w-1/3 px-4 mb-8">
<img src="/img/home-right.webp" alt="Hero image" class="w-full rounded-lg">
</div>
</div>
</div>
</section>
<!-- AboutSection -->
<section class="bg-gray-300 shadow-lg py-12 mt-10 rounded-xl" id="about">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-8">About Me</h2>
<div class="flex flex-wrap -mx-4">
<div class="w-full md:w-1/2 px-4 mb-8">
<img src="/img/about-us.webp" alt="About Us" class="rounded-lg">
</div>
<div class="w-full md:w-1/2 px-4 mb-8">
<h3 class="text-2xl font-bold text-gray-800 mb-4">My Story</h3>
<p class="text-gray-600">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas at
justo eu turpis interdum condimentum. Nullam et erat ornare, elementum ante eu, tempus
tellus. Proin consequat diam non mauris scelerisque, eu tincidunt velit condimentum.</p>
<p class="text-gray-600">Vestibulum ante ipsum primis in faucibus orci luctus et ultrices
posuere cubilia curae; Proin euismod, lectus at scelerisque rutrum, nisi turpis fermentum
dui, et posuere dui tellus sed diam.</p>
</div>
</div>
</div>
</section>
<!-- TeamSection -->
<section class="bg-gray-300 shadow-lg py-12 mt-10 rounded-xl" id="team">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-8">Meet the Team</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<div class="col-span-1 ">
<div class="bg-white rounded-lg shadow-lg p-6">
<img src="/img/team-1.jpg" alt="Team Member 1"
class="rounded-3xl w-72 h-72 rounded-xl mx-auto mb-4">
<h3 class="text-2xl font-bold text-gray-800 mb-2 text-center">Jane Smith</h3>
<p class="text-gray-600 text-center">Founder</p>
<div class="mt-4 flex items-center justify-center">
<a href="#"
class="px-3 py-2 rounded-md text-sm font-medium text-white bg-slate-800 hover:bg-slate-700 focus:outline-none focus:bg-slate-700 text-center">View
profile</a>
</div>
</div>
</div>
<div class="col-span-1 ">
<div class="bg-white rounded-lg shadow-lg p-6">
<img src="/img/team-2.jpg" alt="Team Member 2"
class="rounded-3xl w-72 h-72 rounded-xl mx-auto mb-4">
<h3 class="text-2xl font-bold text-gray-800 mb-2 text-center">John Doe</h3>
<p class="text-gray-600 text-center">Co-Founder</p>
<div class="mt-4 flex items-center justify-center">
<a href="#"
class="px-3 py-2 rounded-md text-sm font-medium text-white bg-slate-800 hover:bg-slate-700 focus:outline-none focus:bg-slate-700 text-center">View
profile</a>
</div>
</div>
</div>
<div class="col-span-1 ">
<div class="bg-white rounded-lg shadow-lg p-6">
<img src="/img/team-3.jpg" alt="Team Member 3"
class="rounded-3xl w-72 h-72 rounded-xl mx-auto mb-4">
<h3 class="text-2xl font-bold text-gray-800 mb-2 text-center">Samantha Williams</h3>
<p class="text-gray-600 text-center">Marketing Manager</p>
<div class="mt-4 flex items-center justify-center">
<a href="#"
class="px-3 py-2 rounded-md text-sm font-medium text-white bg-slate-800 hover:bg-slate-700 focus:outline-none focus:bg-slate-700 text-center">View
profile</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ProjectSection -->
<section class="bg-gray-300 shadow-lg py-12 mt-10 rounded-xl" id="projects">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-8">Recent Projects</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4" id="popup-btn">
<div class="col-span-1 rounded-lg shadow-lg bg-white overflow-hidden cursor-pointer">
<img src="/img/project/ecom.jpg" alt="Project 1" class="w-full object-center">
<div class="p-6">
<h3 class="text-2xl font-bold text-gray-800 mb-4">Project 1</h3>
<p class="text-gray-600 mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Maecenas at justo eu turpis interdum condimentum.</p>
<a
class="px-6 py-3 font-bold text-white bg-slate-800 rounded-full hover:bg-slate-700 focus:outline-none focus:bg-slate-700">See
more</a>
</div>
</div>
<div class="col-span-1 rounded-lg shadow-lg bg-white overflow-hidden cursor-pointer">
<img src="/img/project/port.jpg" alt="Project 2" class="w-full object-center">
<div class="p-6">
<h3 class="text-2xl font-bold text-gray-800 mb-4">Project 2</h3>
<p class="text-gray-600 mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Maecenas at justo eu turpis interdum condimentum.</p>
<a
class="px-6 py-3 font-bold text-white bg-slate-800 rounded-full hover:bg-slate-700 focus:outline-none focus:bg-slate-700">See
more</a>
</div>
</div>
<div class="col-span-1 rounded-lg shadow-lg bg-white overflow-hidden cursor-pointer">
<img src="/img/project/clweb.jpg" alt="Project 3" class="w-full object-center">
<div class="p-6">
<h3 class="text-2xl font-bold text-gray-800 mb-4">Project 3</h3>
<p class="text-gray-600 mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Maecenas at justo eu turpis interdum condimentum.</p>
<a
class="px-6 py-3 font-bold text-white bg-slate-800 rounded-full hover:bg-slate-700 focus:outline-none focus:bg-slate-700">See
more</a>
</div>
</div>
</div>
</div>
</section>
<!-- BlogSection -->
<section class="bg-gray-300 shadow-lg py-12 mt-10 rounded-xl" id="blog">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-8">Blog</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<!-- Blog Post -->
<div class="col-span-1 rounded-lg shadow-lg bg-white overflow-hidden">
<div class="bg-white rounded-lg shadow-md p-6">
<img src="/img/blog1.webp" alt="Blog post image" class="w-full rounded-xl mb-6">
<h3 class="text-2xl font-bold text-gray-800 mb-3">Post Title</h3>
<p class="text-gray-700 text-base mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<a href="#"
class="px-6 py-3 font-bold text-white bg-slate-800 rounded-full hover:bg-slate-700 focus:outline-none focus:bg-slate-700">Read
More</a>
</div>
</div>
<!-- Blog Post -->
<div class="col-span-1 rounded-lg shadow-lg bg-white overflow-hidden">
<div class="bg-white rounded-lg shadow-md p-6">
<img src="/img/blog2.webp" alt="Blog post image" class="w-full rounded-xl mb-6">
<h3 class="text-2xl font-bold text-gray-800 mb-3">Post Title</h3>
<p class="text-gray-700 text-base mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<a href="#"
class="px-6 py-3 font-bold text-white bg-slate-800 rounded-full hover:bg-slate-700 focus:outline-none focus:bg-slate-700">Read
More</a>
</div>
</div>
<!-- Blog Post -->
<div class="col-span-1 rounded-lg shadow-lg bg-white overflow-hidden">
<div class="bg-white rounded-lg shadow-md p-6">
<img src="/img/blog3.webp" alt="Blog post image" class="w-full rounded-xl mb-6">
<h3 class="text-2xl font-bold text-gray-800 mb-3">Post Title</h3>
<p class="text-gray-700 text-base mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<a href="#"
class="px-6 py-3 font-bold text-white bg-slate-800 rounded-full hover:bg-slate-700 focus:outline-none focus:bg-slate-700">Read
More</a>
</div>
</div>
</div>
</div>
</section>
<!-- ContactSection -->
<section class="bg-gray-300 shadow-lg py-12 mt-10 rounded-xl" id="contact">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-8">Get in touch</h2>
<div class="flex flex-wrap -mx-4">
<div class="w-full md:w-1/2 px-4 mb-8">
<h3 class="text-2xl font-bold text-gray-800 mb-4">Contact me</h3>
<p class="text-gray-600 mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas
at justo eu turpis interdum condimentum.</p>
<p class="text-gray-600 mb-4"><strong>Email:</strong> [email protected]</p>
<p class="text-gray-600 mb-4"><strong>WhatsApp:</strong> (+91) 843-322-6848</p>
<p class="text-gray-600 mb-4"><strong>Telegram:</strong> (+91) 843-322-6848</p>
</div>
<div class="w-full md:w-1/2 px-4 mb-8">
<h3 class="text-2xl font-bold text-gray-800 mb-4">Send me a message</h3>
<form>
<div class="mb-4">
<label class="block text-gray-600 font-bold mb-2" for="name">Name</label>
<input
class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
id="name" type="text" placeholder="Jane Smith" required />
</div>
<div class="mb-4">
<label class="block text-gray-600 font-bold mb-2" for="email">Email</label>
<input
class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
id="email" type="email" placeholder="[email protected]" required>
</div>
<div class="mb-4">
<label class="block text-gray-600 font-bold mb-2" for="message">Message</label>
<textarea
class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
id="message" rows="5"
placeholder="Hello, I'm interested in your services. Can you please provide more information?"
required></textarea>
</div>
<div class="mb-4">
<button
class="px-6 py-3 rounded-full font-bold text-white bg-slate-800 hover:bg-slate-700 focus:outline-none focus:bg-slate-700"
type="submit">Send message</button>
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<!-- popup Projects -->
<div class="popup z-50" id="popup">
<div class="popup-inner lg:w-5/6 md:w-full relative lg:h-5/6 md:h-full">
<h1 class="text-3xl font-bold text-center text-gray-800 mb-8">See all Projects</h1>
<button class="btn close-btn" id="close-btn">
<svg class="h-6 w-6 fill-current text-gray-400" viewBox="0 0 24 24">
<path
d="M24 20.188l-8.315-8.209 8.2-8.282-3.697-3.697-8.212 8.318-8.31-8.203-3.666 3.666 8.321 8.24-8.206 8.313 3.666 3.666 8.237-8.318 8.285 8.203z" />
</svg>
</button>
<hr class="my-5">
<div class="overflow-y-scroll h-4/5 w-full">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-8">Project Title</h2>
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-1 xl:grid-cols-2 gap-4">
<div class="w-full col-span-1 px-3 mb-6">
<img src="/img/project/ecom.jpg" alt="Project image" class="w-full rounded-lg shadow-md">
</div>
<div class="w-full col-span-1 px-3 mb-6 overscroll-contain">
<h3 class="text-2xl font-bold text-gray-800 mb-3">Project Description</h3>
<p class="text-gray-700 text-base mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing
elit,
sed
do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<h3 class="text-2xl font-bold text-gray-800 mb-3">Technologies Used</h3>
<ul class="text-gray-700 text-base mb-4">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<!-- <a
class="px-6 py-3 font-bold text-white bg-slate-800 rounded-full hover:bg-slate-700 focus:outline-none focus:bg-slate-700 cursor-not-allowed">View
Project</a> -->
</div>
</div>
</div>
<hr class="my-5">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-8">Project Title</h2>
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-1 xl:grid-cols-2 gap-4">
<div class="w-full col-span-1 px-3 mb-6">
<img src="/img/project/port.jpg" alt="Project image" class="w-full rounded-lg shadow-md">
</div>
<div class="w-full col-span-1 px-3 mb-6 overscroll-contain">
<h3 class="text-2xl font-bold text-gray-800 mb-3">Project Description</h3>
<p class="text-gray-700 text-base mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing
elit,
sed
do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<h3 class="text-2xl font-bold text-gray-800 mb-3">Technologies Used</h3>
<ul class="text-gray-700 text-base mb-4">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<!-- <a
class="px-6 py-3 font-bold text-white bg-slate-800 rounded-full hover:bg-slate-700 focus:outline-none focus:bg-slate-700 cursor-not-allowed">View
Project</a> -->
</div>
</div>
</div>
<hr class="my-5">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-8">Project Title</h2>
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-1 xl:grid-cols-2 gap-4">
<div class="w-full col-span-1 px-3 mb-6">
<img src="/img/project/clweb.jpg" alt="Project image" class="w-full rounded-lg shadow-md">
</div>
<div class="w-full col-span-1 px-3 mb-6 overscroll-contain">
<h3 class="text-2xl font-bold text-gray-800 mb-3">Project Description</h3>
<p class="text-gray-700 text-base mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing
elit,
sed
do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<h3 class="text-2xl font-bold text-gray-800 mb-3">Technologies Used</h3>
<ul class="text-gray-700 text-base mb-4">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
<!-- <a
class="px-6 py-3 font-bold text-white bg-slate-800 rounded-full hover:bg-slate-700 focus:outline-none focus:bg-slate-700 cursor-not-allowed">View
Project</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ScrollUpButton -->
<div class="fixed bottom-5 right-5 z-40">
<button
class="js-top-button px-3 py-3 rounded-full font-bold text-white bg-slate-800 hover:bg-slate-700 focus:outline-none focus:bg-slate-700">
<svg class="h-6 w-6 fill-current text-white animate-bounce" viewBox="0 0 24 24">
<path d="M12 0l8 9h-6v15h-4v-15h-6z" />
</svg>
</button>
</div>
<!-- Footer Section -->
<footer class="bg-white shadow-md mt-5">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<img src="/img/logo.svg" alt="GC" class="h-10 w-10 mr-3 cursor-pointer transition hover:scale-110">
<p class="text-gray-700 font-bold">
<a href="https://github.com/its-gc" class="inline text-blue-700 hover:text-blue-500">
Gopi Chandra
</a>
| © Copyright 2023
</p>
</div>
<div class="flex items-center">
<!-- <a href="https://github.com/its-gc"
class="px-3 py-2 font-bold text-gray-800 hover:text-gray-600 text-3xl"><ion-icon
name="logo-github"></ion-icon></a>
<a href="https://www.facebook.com/"
class="px-3 py-2 font-bold text-gray-800 hover:text-gray-600 text-3xl"><ion-icon
name="logo-facebook"></ion-icon></a>
<a href="https://www.instagram.com/_gopichandra/"
class="px-3 py-2 font-bold text-gray-800 hover:text-gray-600 text-3xl"><ion-icon
name="logo-instagram"></ion-icon></a> -->
<a href="" class="text-gray-800 transition hover:scale-125">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a href="" class="ml-3 text-gray-800 transition hover:scale-125">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<path
d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z">
</path>
</svg>
</a>
<a href="https://www.instagram.com/_gopichandra/" class="ml-3 text-gray-800 transition hover:scale-125">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" class="w-5 h-5" viewBox="0 0 24 24">
<rect width="20" height="20" x="2" y="2" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37zm1.5-4.87h.01"></path>
</svg>
</a>
<a href="" class="ml-3 text-gray-800 transition hover:scale-125">
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="0" class="w-5 h-5" viewBox="0 0 24 24">
<path stroke="none"
d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z">
</path>
<circle cx="4" cy="4" r="2" stroke="none"></circle>
</svg>
</a>
</div>
</div>
</div>
</footer>
<!-- Script Section -->
<!-- Icon Script CDN -->
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<script>
const topButton = document.querySelector('.js-top-button');
topButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Pop over JavaScript
const popupBtn = document.getElementById('popup-btn');
const popup = document.getElementById('popup');
const closeBtn = document.getElementById('close-btn');
popupBtn.addEventListener('click', function () {
popup.style.display = 'block';
});
closeBtn.addEventListener('click', function () {
popup.style.display = 'none';
});
</script>
</body>
</html>