forked from Immanuelsinaga/Portofolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
598 lines (592 loc) · 24.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
<!doctype html>
<html lang="en" class="scroll-smooth dakr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Immanuel Sinaga - Software Enginner, Web Developer</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="icon" href="dist/img/logo.svg" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&family=Rubik:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="dist/css/style.css" />
</head>
<body>
<!-- Header Start -->
<header
class="bg-transparent absolute top-0 left-0 w-full flex items-center z-10">
<div class="container max-w-6xl mx-auto">
<div class="flex items-center justify-between relative">
<div class="px4 flex">
<img
class="mx-2 w-6 h-6 my-auto"
src="dist/img/logo.svg"
alt="Logo" />
<span
class="font-semibold text-xl text-slate-900 block py-6 hover:text-sky-500 cursor-context-menu select-none dark:text-slate-100 dark:hover:text-sky-600"
>Immanuel Sinaga</span
>
</div>
<div class="flex items-center px-4">
<input type="checkbox" id="darkmode" class="hidden" />
<label for="darkmode">
<div
class="text-slate-500 dark:text-slate-100 hover:text-slate-600 w-8 h-8 flex items-center justify-center lg:mr-2 mr-8 bg-transparent p-2 rounded-lg hover:bg-gray-300 dark:hover:bg-gray-800">
<svg
viewBox="0 0 24 24"
class="w-5 h-5"
astro-icon="tabler:sun">
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="icon-tabler">
<circle cx="12" cy="12" r="4"></circle>
<path
d="M3 12h1m8-9v1m8 8h1m-9 8v1M5.6 5.6l.7.7m12.1-.7-.7.7m0 11.4.7.7m-12.1-.7-.7.7"></path>
</g>
</svg>
</div>
</label>
<button
id="navbar"
name="button"
type="button"
class="block absolute right-4 lg:hidden">
<span
class="line-menu transition duration-300 ease-in-out origin-top-right"></span>
<span
class="line-menu transition duration-300 ease-in-out origin-top-right"></span>
</button>
<nav
id="menu"
class="hidden absolute py-5 bg-white dark:shadow-[0_35px_60px_-15px_rgba(255,255,255,0.3)] shadow-lg rounded-lg max-w-[250px] w-full right-4 top-full lg:block lg:static lg:bg-transparent lg:max-w-full lg:shadow-none lg:dark:shadow-none lg:rounded-none">
<ul class="block lg:flex">
<li class="group">
<a
href="about.html"
class="font-semibold text-slate-500 py-2 mx-5 flex group-hover:text-slate-950 dark:group-hover:text-slate-100"
>About</a
>
</li>
<li class="group">
<a
href="#Home"
class="font-semibold text-slate-500 py-2 mx-5 flex group-hover:text-slate-950 dark:group-hover:text-slate-100"
>Contact</a
>
</li>
<li class="group">
<a
href="#Home"
class="font-semibold text-slate-500 py-2 mx-5 flex group-hover:text-slate-950 dark:group-hover:text-slate-100"
>Blog</a
>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<!-- Header End -->
<!-- Hero Section Start -->
<section id="home" class="pt-36 pb-4 w-full">
<div class="container max-w-6xl mx-auto">
<div class="flex flex-wrap">
<div class="w-full lg:w-1/2 px-auto self-center">
<h1
class="font-bold text-2xl text-slate-950 lg:text-4xl px-4 dark:text-slate-200">
Hello there 👋
</h1>
<h1
class="font-bold text-5xl text-slate-950 lg:text-7xl px-4 dark:text-slate-200">
I'm
<span
class="bg-clip-text text-transparent bg-gradient-to-r from-sky-400 to-sky-600"
>Immanuel.</span
>
</h1>
<h1
class="px-5 font-thin text-slate-800 text-xl lg:text-2xl dark:text-slate-200">
I'm a <span class="type-job font-bold"></span>
</h1>
<a
class="bg-[#1D9BF0] hover:bg-[#0e7ac1] text-white px-3 py-2 rounded-lg font-semibold mx-2 lg:mt-12 lg:mx-auto my-3 flex justify-center items-center shadow-lg lg:w-1/3 cursor-pointer"
href="#project"
>Let's Get in Touch</a
>
<div class="flex flex-wrap justify-center items-center">
<a
class="bg-[#1D9BF0] text-white px-3 py-2 rounded-lg font-semibold mx-2 flex justify-center items-center shadow-lg cursor-pointer hover:bg-[#008ae7]"
href="https://twitter.com/immanuelreyus">
<svg
viewBox="0 0 24 24"
class="w-5 h-5 mr-2 -ml-1.5"
astro-icon="mdi:twitter">
<path
fill="currentColor"
d="M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z"></path>
</svg>
Follow
</a>
<!-- <a
class="bg-[#0B70D5] text-white px-3 py-2 rounded-lg font-semibold mx-2 flex items-center justify-center shadow-lg cursor-pointer hover:bg-[#0355a7]">
<svg
viewBox="0 0 24 24"
class="w-5 h-5 mr-2 -ml-1.5"
astro-icon="mdi:linkedin">
<path
fill="currentColor"
d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z"></path>
</svg>
Connect
</a> -->
<a
class="bg-[#27A7E7] text-white px-3 py-2 rounded-lg font-semibold mx-2 flex justify-center items-center shadow-lg cursor-pointer hover:bg-[#0790d4]"
href="https://t.me/immanuelreyus">
<svg
viewBox="0 0 24 24"
class="w-5 h-5 mr-2 -ml-1.5"
astro-icon="mdi:telegram">
<path
fill="currentColor"
d="m9.78 18.65.28-4.23 7.68-6.92c.34-.31-.07-.46-.52-.19L7.74 13.3 3.64 12c-.88-.25-.89-.86.2-1.3l15.97-6.16c.73-.33 1.43.18 1.15 1.3l-2.72 12.81c-.19.91-.74 1.13-1.5.71L12.6 16.3l-1.99 1.93c-.23.23-.42.42-.83.42z"></path>
</svg>
Chat
</a>
<a
class="bg-[#333333] text-white px-3 py-2 rounded-lg font-semibold mx-2 flex items-center justify-center my-3 shadow-lg cursor-pointer hover:bg-[#212121]"
href="https://github.com/Immanuelsinaga">
<svg
viewBox="0 0 24 24"
class="w-5 h-5 mr-2 -ml-1.5"
astro-icon="mdi:github">
<path
fill="currentColor"
d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33.85 0 1.71.11 2.5.33 1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2z"></path>
</svg>
Follow
</a>
</div>
<!-- <p class="text-slate-600 lg:text-center px-4">
Fun coding since 2020 + Professional coding since 2023
</p> -->
</div>
<div class="w-full lg:w-1/2 px-auto">
<img
class="mx-auto sm:rounded-xl shadow-xl bg-gray-400 w-full mt-5 lg:-mt-5 hidden dark:block"
width="1490"
height="800"
src="./dist/img/immanuel dark1.png"
alt="Immanuel Sinaga" />
<img
class="mx-auto sm:rounded-xl shadow-xl bg-gray-400 w-full mt-5 lg:-mt-5 dark:hidden"
width="1490"
height="838"
src="./dist/img/Immanuel.JPG"
alt="Immanuel Sinaga" />
<h3
class="text-center font-thin py-4 text-sm lg:text-lg dark:text-slate-100">
🧑🏻🏫 Content Creator 🧑🏻💻 Cyber Security & Full Stack Web Developer
</h3>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- Fav Stack Start -->
<section class="scroll-mt-16">
<div
class="mx-auto max-w-6xl bg-bluebg px-4 py-16 lg:rounded-xl lg:px-8 lg:py-20 dark:bg-darkbg">
<div
class="mb-10 max-w-xl sm:text-center md:mx-auto md:mb-12 lg:max-w-2xl">
<p
class="text-base text-secondary font-semibold tracking-wide uppercase dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-r dark:from-sky-200 dark:to-sky-400">
IT'S TECHIN' TIME
</p>
<h2
class="text-4xl font-bold leading-tight tracking-tighter text-slate-900 lg:mb-4 mb-2 dark:text-slate-200">
My Favorite
<span
class="text-primary dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-r dark:from-sky-400 dark:to-sky-600"
>Stack</span
>
</h2>
<p
class="max-w-3xl mx-auto lg:text-center lg:text-xl text-gray-600 dark:text-slate-100">
Mostly using web technologies. See complete list
</p>
</div>
<div class="mx-auto grid space-y-6 md:grid-cols-2 md:space-y-0">
<div class="space-y-8 sm:px-8">
<div class="flex max-w-md flex-row">
<div class="mb-4 mr-4">
<div
class="bg-primary flex h-12 w-12 items-center justify-center rounded-xl">
<svg
viewBox="0 0 24 24"
class="h-6 w-6 text-white"
astro-icon="tabler:components">
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="icon-tabler">
<path
d="m3 12 3 3 3-3-3-3zM15 12l3 3 3-3-3-3zM9 6l3 3 3-3-3-3zM9 18l3 3 3-3-3-3z"></path>
</g>
</svg>
</div>
</div>
<div>
<h3 class="mb-2 text-xl font-medium dark:text-slate-100">
General Stack
</h3>
<p class="dark:text-slate-100">
JavaScript, Node.js, npm/yarn/pnpm, Python.
</p>
</div>
</div>
<div class="flex max-w-md flex-row">
<div class="mb-4 mr-4">
<div
class="bg-primary flex h-12 w-12 items-center justify-center rounded-xl">
<svg
viewBox="0 0 24 24"
class="h-6 w-6 text-white"
astro-icon="tabler:eye">
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="icon-tabler">
<circle cx="12" cy="12" r="2"></circle>
<path
d="M22 12c-2.667 4.667-6 7-10 7s-7.333-2.333-10-7c2.667-4.667 6-7 10-7s7.333 2.333 10 7"></path>
</g>
</svg>
</div>
</div>
<div>
<h3 class="mb-2 text-xl font-medium dark:text-slate-100">
Frontend and UI Components
</h3>
<p class="dark:text-slate-100">
Figma, HTML, CSS, JavaScript, Tailwind CSS, React.
</p>
</div>
</div>
</div>
<div class="space-y-8 sm:px-8">
<div class="flex max-w-md flex-row">
<div class="mb-4 mr-4">
<div
class="bg-primary flex h-12 w-12 items-center justify-center rounded-xl">
<svg
viewBox="0 0 24 24"
class="h-6 w-6 text-white"
astro-icon="tabler:database">
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="icon-tabler">
<ellipse cx="12" cy="6" rx="8" ry="3"></ellipse>
<path d="M4 6v6a8 3 0 0 0 16 0V6"></path>
<path d="M4 12v6a8 3 0 0 0 16 0v-6"></path>
</g>
</svg>
</div>
</div>
<div>
<h3 class="mb-2 text-xl font-medium dark:text-slate-100">
Backend and Database
</h3>
<p class="dark:text-slate-100">MySQL/MariaDB.</p>
</div>
</div>
<div class="flex max-w-md flex-row">
<div class="mb-4 mr-4">
<div
class="bg-primary flex h-12 w-12 items-center justify-center rounded-xl">
<svg
viewBox="0 0 24 24"
class="h-6 w-6 text-white"
astro-icon="tabler:arrows-right-left">
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="icon-tabler">
<path
d="M21 7H3M18 10l3-3-3-3M6 20l-3-3 3-3M3 17h18"></path>
</g>
</svg>
</div>
</div>
<div>
<h3 class="mb-2 text-xl font-medium dark:text-slate-100">
Full Stack, Web API, Testing, CI/CD
</h3>
<p class="dark:text-slate-100">
Next.js, REST API, GitHub Actions.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Fav Stack End -->
<!-- Feature Project Start -->
<section id="project">
<div class="mx-auto max-w-6xl px-4 py-16 lg:rounded-xl lg:px-8 lg:py-20">
<div class="w-full px-auto">
<div class="mx-auto mb-16 text-center">
<p
class="text-base text-secondary font-semibold tracking-wide uppercase dark:bg-clip-text dark:text-transparent dark:bg-gradient-to-r dark:from-sky-200 dark:to-sky-400">
PORTOFOLIO
</p>
<h2
class="text-4xl font-bold leading-tight tracking-tighter text-slate-900 mb-4 dark:text-slate-200">
Featured Projects
</h2>
</div>
<div
class="flex flex-wrap justify-center bg-white p-2 lg:p-6 rounded-xl shadow-xl dark:bg-slate-800 dark:shadow-slate-700 my-5">
<div class="w-full lg:w-1/2">
<img
class="rounded-lg bg-gray-400 w-full"
src="dist/img/portofolio/p-1.png"
alt="website school library" />
</div>
<div class="lg:w-1/2">
<h2
class="font-bold my-5 text-center lg:text-xl uppercase dark:text-slate-100">
School Library 📚
</h2>
<p
class="text-slate-600 font-medium lg:max-w-sm mx-auto px-4 text-center dark:text-slate-100">
a school library website is a place where people can explore,
acquire, and share knowledge.
</p>
<div class="mt-12 flex flex-wrap justify-center items-center">
<a
href="https://github.com/Immanuelsinaga/perpus-smancil"
class="font-medium text-slate-900 flex items-center text-lg hover:text-blue-500 dark:text-slate-200 dark:hover:text-blue-500"
>Code
<svg
viewBox="0 0 24 24"
class="w-6 h-6"
astro-icon="mdi:github">
<path
fill="currentColor"
d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33.85 0 1.71.11 2.5.33 1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2z"></path></svg
></a>
<a
href="https://immanuelsinaga.github.io/perpus-smancil/"
class="font-medium text-slate-900 flex items-center text-lg hover:text-blue-500 ml-3 dark:text-slate-200 dark:hover:text-blue-500"
>Live Demo
<svg
viewBox="0 0 15 15"
class="w-6 h-6"
astro-icon="mdi:github">
<path
fill="currentColor"
d="M12 13C12.5523 13 13 12.5523 13 12V3C13 2.44771 12.5523 2 12 2H3C2.44771 2 2 2.44771 2 3V6.5C2 6.77614 2.22386 7 2.5 7C2.77614 7 3 6.77614 3 6.5V3H12V12H8.5C8.22386 12 8 12.2239 8 12.5C8 12.7761 8.22386 13 8.5 13H12ZM9 6.5C9 6.5001 9 6.50021 9 6.50031V6.50035V9.5C9 9.77614 8.77614 10 8.5 10C8.22386 10 8 9.77614 8 9.5V7.70711L2.85355 12.8536C2.65829 13.0488 2.34171 13.0488 2.14645 12.8536C1.95118 12.6583 1.95118 12.3417 2.14645 12.1464L7.29289 7H5.5C5.22386 7 5 6.77614 5 6.5C5 6.22386 5.22386 6 5.5 6H8.5C8.56779 6 8.63244 6.01349 8.69139 6.03794C8.74949 6.06198 8.80398 6.09744 8.85143 6.14433C8.94251 6.23434 8.9992 6.35909 8.99999 6.49708L8.99999 6.49738"></path></svg
></a>
</div>
</div>
</div>
<div
class="flex flex-wrap justify-center bg-white p-2 lg:p-6 rounded-xl shadow-xl dark:bg-slate-800 dark:shadow-slate-700">
<div class="w-full lg:w-1/2">
<img
class="rounded-lg bg-gray-400 w-full"
src="dist/img/portofolio/p-2.png"
alt="website school library" />
</div>
<div class="lg:w-1/2">
<h2
class="font-bold my-5 text-center lg:text-xl uppercase dark:text-slate-100">
Personal Web Profile 💻
</h2>
<p
class="text-slate-600 font-medium lg:max-w-sm mx-auto px-4 text-center dark:text-slate-100">
A portfolio website is a personal website that provides
information about what you do, what services you may offer, and
how to contact you or your company.
</p>
<div class="mt-12 flex flex-wrap justify-center items-center">
<a
href="https://github.com/Immanuelsinaga/Portofolio"
class="font-medium text-slate-900 flex items-center text-lg hover:text-blue-500 dark:text-slate-200 dark:hover:text-blue-500"
>Code
<svg
viewBox="0 0 24 24"
class="w-6 h-6"
astro-icon="mdi:github">
<path
fill="currentColor"
d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33.85 0 1.71.11 2.5.33 1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2z"></path></svg
></a>
<a
href="https://immanuelsinaga.github.io/Portofolio/"
class="font-medium text-slate-900 flex items-center text-lg hover:text-blue-500 ml-3 dark:text-slate-200 dark:hover:text-blue-500"
>Live Demo
<svg
viewBox="0 0 15 15"
class="w-6 h-6"
astro-icon="mdi:github">
<path
fill="currentColor"
d="M12 13C12.5523 13 13 12.5523 13 12V3C13 2.44771 12.5523 2 12 2H3C2.44771 2 2 2.44771 2 3V6.5C2 6.77614 2.22386 7 2.5 7C2.77614 7 3 6.77614 3 6.5V3H12V12H8.5C8.22386 12 8 12.2239 8 12.5C8 12.7761 8.22386 13 8.5 13H12ZM9 6.5C9 6.5001 9 6.50021 9 6.50031V6.50035V9.5C9 9.77614 8.77614 10 8.5 10C8.22386 10 8 9.77614 8 9.5V7.70711L2.85355 12.8536C2.65829 13.0488 2.34171 13.0488 2.14645 12.8536C1.95118 12.6583 1.95118 12.3417 2.14645 12.1464L7.29289 7H5.5C5.22386 7 5 6.77614 5 6.5C5 6.22386 5.22386 6 5.5 6H8.5C8.56779 6 8.63244 6.01349 8.69139 6.03794C8.74949 6.06198 8.80398 6.09744 8.85143 6.14433C8.94251 6.23434 8.9992 6.35909 8.99999 6.49708L8.99999 6.49738"></path></svg
></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Feature Project End -->
<!-- Footer Start -->
<footer id="footer" class="border-t border-gray-200 dark:border-gray-800">
<div class="mx-auto max-w-6xl px-4 sm:px-6">
<div class="grid grid-cols-12 gap-4 gap-y-8 py-8 sm:gap-8 md:py-12">
<div class="col-span-12 lg:col-span-4">
<div class="mb-2">
<a
class="inline-block text-xl font-medium opacity-50 grayscale transition hover:opacity-100"
href="/">
<span
class="flex items-center gap-2 self-center text-2xl font-bold text-gray-900 hover:text-primary-700 whitespace-nowrap dark:text-slate-300">
<img class="w-6 h-6" alt="Logo" src="dist/img/logo.svg" />
<span> Immanuel Sinaga</span>
</span>
</a>
</div>
<div class="text-sm text-gray-600">
<a class="footer-link" href="/">Terms</a>
<span> · </span>
<a class="footer-link" href="/">Privacy Policy</a>
</div>
</div>
<div class="col-span-6 md:col-span-3 lg:col-span-2">
<div class="footer-title dark:text-slate-200">Product</div>
<ul class="text-sm">
<li class="mb-2">
<a class="footer-link" href="/">Features</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Security</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Team</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Enterprise</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Customer stories</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Pricing</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Resources</a>
</li>
</ul>
</div>
<div class="col-span-6 md:col-span-3 lg:col-span-2">
<div class="footer-title dark:text-slate-200">Platform</div>
<ul class="text-sm">
<li class="mb-2">
<a class="footer-link" href="/">Developer API</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Partners</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Atom</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Electron</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">GitHub Desktop</a>
</li>
</ul>
</div>
<div class="col-span-6 md:col-span-3 lg:col-span-2">
<div class="footer-title dark:text-slate-200">Support</div>
<ul class="text-sm">
<li class="mb-2">
<a class="footer-link" href="/">Docs</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Community Forum</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Professional Services</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Skills</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Status</a>
</li>
</ul>
</div>
<div class="col-span-6 md:col-span-3 lg:col-span-2">
<div class="footer-title dark:text-slate-200">Company</div>
<ul class="text-sm">
<li class="mb-2">
<a class="footer-link" href=""> About</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/"> Blog</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/"> Careers</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/">Press</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/"> Inclusion</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/"> Social Impact</a>
</li>
<li class="mb-2">
<a class="footer-link" href="/"> Shop</a>
</li>
</ul>
</div>
</div>
<div class="py-6 md:flex md:items-center md:justify-between md:py-8">
<div class="mr-4 text-sm text-gray-700 dark:text-slate-400">
<span>© 2023</span>
<span class="font-medium">Immanuel Sinaga</span>
<span> 🚀 All rights reserved.</span>
</div>
</div>
</div>
</footer>
<!-- Footer End -->
<!-- Script -->
<script src="./dist/js/script.js"></script>
</body>
</html>