-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
948 lines (831 loc) · 27.7 KB
/
index.html
File metadata and controls
948 lines (831 loc) · 27.7 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
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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elkanah Kindness</title>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=JetBrains+Mono:wght@300;400&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0a0a0a;
--border: #1e1e1e;
--text: #e8e8e8;
--muted: #555;
--accent: #c8f060;
--accent-dim: rgba(200, 240, 96, 0.08);
--tag-color: #444;
--tag-border: #1e1e1e;
--contact-label: #333;
--footer-color: #2a2a2a;
--nav-glass: rgba(10, 10, 10, 0.86);
}
@media (prefers-color-scheme: light) {
:root {
--bg: #f5e6c8;
--border: #e0d4b8;
--text: #2a2114;
--muted: #7a6a50;
--accent: #8b5e1a;
--accent-dim: rgba(139, 94, 26, 0.08);
--tag-color: #7a6a50;
--tag-border: #e0d4b8;
--contact-label: #b39a70;
--footer-color: #b39a70;
--nav-glass: rgba(245, 230, 200, 0.92);
}
}
:root[data-theme="dark"] {
--bg: #0a0a0a;
--border: #1e1e1e;
--text: #e8e8e8;
--muted: #555;
--accent: #c8f060;
--accent-dim: rgba(200, 240, 96, 0.08);
--tag-color: #444;
--tag-border: #1e1e1e;
--contact-label: #333;
--footer-color: #2a2a2a;
--nav-glass: rgba(10, 10, 10, 0.86);
}
:root[data-theme="light"] {
--bg: #f5e6c8;
--border: #e0d4b8;
--text: #2a2114;
--muted: #7a6a50;
--accent: #8b5e1a;
--accent-dim: rgba(139, 94, 26, 0.08);
--tag-color: #7a6a50;
--tag-border: #e0d4b8;
--contact-label: #b39a70;
--footer-color: #b39a70;
--nav-glass: rgba(245, 230, 200, 0.92);
}
html { scroll-behavior: smooth; }
body {
font-family: 'JetBrains Mono', monospace;
background: var(--bg);
color: var(--text);
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
body::before {
content: '';
position: fixed;
inset: -40%;
background:
radial-gradient(circle at top left, rgba(200, 240, 96, 0.09), transparent 60%),
radial-gradient(circle at bottom right, rgba(139, 94, 26, 0.16), transparent 55%);
opacity: 0.9;
mix-blend-mode: soft-light;
pointer-events: none;
z-index: -1;
animation: backgroundFloat 40s ease-in-out infinite alternate;
}
.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
nav {
padding: 32px 0 0;
display: flex;
justify-content: space-between;
align-items: center;
opacity: 0;
animation: up 0.6s ease 0.1s forwards;
position: sticky;
top: 0;
z-index: 40;
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
background: linear-gradient(to bottom, var(--nav-glass), transparent);
}
.nav-right {
display: flex;
align-items: center;
gap: 20px;
}
.nav-logo {
font-family: 'Syne', sans-serif;
font-weight: 800;
font-size: 15px;
letter-spacing: 0.05em;
color: var(--accent);
text-decoration: none;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
font-size: 11px;
color: var(--muted);
text-decoration: none;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: color 0.2s;
position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
content: '';
position: absolute;
left: 0;
bottom: -6px;
width: 100%;
height: 1px;
background: var(--accent);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.22s ease;
opacity: 0.7;
}
.nav-links a:hover::after {
transform: scaleX(1);
}
.theme-toggle {
border: 1px solid var(--border);
background: transparent;
color: var(--muted);
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 6px 10px;
display: inline-flex;
align-items: center;
gap: 6px;
cursor: pointer;
transition: all 0.2s;
}
.theme-toggle:hover {
border-color: var(--accent);
color: var(--accent);
}
.theme-toggle-icon {
transition: transform 0.3s ease;
}
.theme-toggle:hover .theme-toggle-icon {
transform: rotate(18deg);
}
.hero {
padding: 100px 0 80px;
position: relative;
}
.hero::before {
content: '';
position: absolute;
top: -80px;
right: -140px;
width: 260px;
height: 260px;
background: radial-gradient(circle at center, var(--accent-dim), transparent 65%);
filter: blur(2px);
opacity: 0.9;
mix-blend-mode: screen;
pointer-events: none;
animation: floatOrbit 18s ease-in-out infinite alternate;
}
.hero-tag {
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 24px;
opacity: 0;
animation: up 0.6s ease 0.2s forwards;
}
.hero-name {
font-family: 'Syne', sans-serif;
font-weight: 800;
font-size: clamp(48px, 10vw, 88px);
line-height: 0.95;
letter-spacing: -0.03em;
color: var(--text);
margin-bottom: 32px;
opacity: 0;
animation: up 0.6s ease 0.3s forwards;
}
.hero-name span { color: var(--accent); }
.hero-bio {
font-size: 13px;
line-height: 1.8;
color: var(--muted);
max-width: 480px;
margin-bottom: 40px;
opacity: 0;
animation: up 0.6s ease 0.4s forwards;
}
.hero-bio strong { color: var(--text); font-weight: 400; }
.hero-links {
display: flex;
gap: 16px;
flex-wrap: wrap;
opacity: 0;
animation: up 0.6s ease 0.5s forwards;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
text-decoration: none;
border: 1px solid var(--border);
color: var(--muted);
transition: all 0.2s;
background: none;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn.primary { border-color: var(--accent); color: var(--accent); }
.btn.primary:hover { background: var(--accent); color: var(--bg); }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
section { padding: 72px 0; }
.section-label {
font-size: 10px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 48px;
display: flex;
align-items: center;
gap: 12px;
}
.section-label::after {
content: '';
flex: 1;
height: 1px;
background: var(--border);
}
.projects { display: flex; flex-direction: column; gap: 2px; }
.projects,
.stack-grid,
#contact {
position: relative;
}
.project {
border: 1px solid var(--border);
padding: 32px;
transition: border-color 0.2s, background 0.2s, transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease;
opacity: 0;
transform: translateY(20px);
position: relative;
overflow: hidden;
}
.project::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 3px;
height: 100%;
background: var(--accent);
opacity: 0;
transition: opacity 0.2s;
}
.project:hover {
background: var(--accent-dim);
transform: translateY(-4px);
box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}
.project:hover::before { opacity: 1; }
.project.visible {
opacity: 1;
transform: translateY(0);
transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s;
}
.project-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 16px;
gap: 16px;
}
.project-name {
font-family: 'Syne', sans-serif;
font-weight: 700;
font-size: 18px;
color: var(--text);
}
.project-status {
font-size: 9px;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 4px 10px;
border: 1px solid;
white-space: nowrap;
}
.project-status.live { color: #4ade80; border-color: rgba(74,222,128,0.3); }
.project-status.shipped { color: #a78bfa; border-color: rgba(167,139,250,0.3); }
.project-status.private { color: #f59e0b; border-color: rgba(245,158,11,0.3); }
.project-desc {
font-size: 12px;
line-height: 1.7;
color: var(--muted);
margin-bottom: 20px;
}
.project-stack {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 20px;
}
.tag {
font-size: 10px;
letter-spacing: 0.08em;
color: var(--tag-color);
padding: 3px 8px;
border: 1px solid var(--tag-border);
}
.project-links { display: flex; gap: 12px; }
.project-link {
font-size: 10px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--muted);
text-decoration: none;
transition: color 0.2s;
display: flex;
align-items: center;
gap: 5px;
}
.project-link:hover { color: var(--accent); }
.project-link svg { width: 10px; height: 10px; }
.stack-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
gap: 2px;
}
.stack-item {
padding: 16px;
border: 1px solid var(--border);
font-size: 11px;
color: var(--muted);
letter-spacing: 0.05em;
transition: all 0.2s;
display: flex;
align-items: center;
gap: 10px;
}
.stack-item:hover {
color: var(--text);
background: var(--accent-dim);
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.stack-info span {
display: block;
font-size: 9px;
color: var(--contact-label);
letter-spacing: 0.1em;
text-transform: uppercase;
margin-top: 3px;
}
.stack-icon {
width: 22px;
height: 22px;
flex-shrink: 0;
}
.stack-icon img {
width: 100%;
height: 100%;
object-fit: contain;
filter: grayscale(1) opacity(0.45);
transition: filter 0.2s;
}
.stack-item:hover .stack-icon img { filter: grayscale(0) opacity(1); }
.stack-icon svg { width: 22px; height: 22px; }
.contact-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 0;
border-bottom: 1px solid var(--border);
}
.contact-label { font-size: 10px; color: var(--contact-label); letter-spacing: 0.15em; text-transform: uppercase; }
.contact-value { font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.contact-value:hover { color: var(--accent); }
.stack-item,
.contact-item,
.section-label {
opacity: 0;
transform: translateY(18px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.stack-item.visible,
.contact-item.visible,
.section-label.visible {
opacity: 1;
transform: translateY(0);
}
footer {
padding: 40px 0;
border-top: 1px solid var(--border);
display: flex;
justify-content: space-between;
font-size: 10px;
color: var(--footer-color);
letter-spacing: 0.1em;
}
.scroll-progress {
position: fixed;
top: 0;
left: 0;
height: 2px;
width: 0;
background: linear-gradient(to right, var(--accent), transparent);
z-index: 100;
transform-origin: left center;
pointer-events: none;
}
.ambient-orbits {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 0;
}
.ambient-orbit {
position: absolute;
border-radius: 999px;
background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 65%);
border: 1px solid rgba(255, 255, 255, 0.12);
box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
overflow: hidden;
opacity: 0.8;
mix-blend-mode: soft-light;
}
.ambient-orbit img,
.ambient-orbit svg {
width: 64%;
height: 64%;
object-fit: contain;
filter: grayscale(1) opacity(0.6);
transform: translate3d(18%, 18%, 0);
}
.ambient-orbit--python {
width: 210px;
height: 210px;
top: 9%;
left: -40px;
animation: floatOrbit 32s ease-in-out infinite alternate;
}
.ambient-orbit--django {
width: 180px;
height: 180px;
bottom: 12%;
right: -30px;
animation: backgroundFloat 36s ease-in-out infinite alternate;
}
.ambient-orbit--postgres {
width: 160px;
height: 160px;
top: 46%;
right: 12%;
animation: floatOrbit 40s ease-in-out infinite alternate;
}
@keyframes up {
from { opacity: 0; transform: translateY(16px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes backgroundFloat {
from { transform: translate3d(0, 0, 0) scale(1); }
to { transform: translate3d(0, -30px, 0) scale(1.03); }
}
@keyframes floatOrbit {
from { transform: translate3d(0, 0, 0) scale(1); }
to { transform: translate3d(-18px, 18px, 0) scale(1.06); }
}
/* Tablet tweaks */
@media (max-width: 768px) {
.container { padding: 0 18px; }
nav { padding-top: 20px; }
.hero { padding: 80px 0 60px; }
section { padding: 56px 0; }
}
/* Mobile layout */
@media (max-width: 520px) {
.container { padding: 0 16px; }
nav {
padding-top: 16px;
gap: 10px;
}
.nav-right {
gap: 8px;
}
.nav-links {
gap: 10px;
}
.nav-links a {
font-size: 10px;
letter-spacing: 0.08em;
}
.theme-toggle {
padding: 4px 8px;
font-size: 9px;
letter-spacing: 0.08em;
}
.hero {
padding: 72px 0 48px;
}
.hero-bio {
font-size: 12px;
line-height: 1.7;
}
.hero-links {
flex-direction: column;
align-items: flex-start;
}
.project-header {
flex-direction: column;
align-items: flex-start;
}
.project {
padding: 24px 18px;
}
.stack-grid {
grid-template-columns: minmax(0, 1fr);
}
.contact-item {
flex-direction: column;
align-items: flex-start;
gap: 4px;
}
footer {
flex-direction: column;
gap: 8px;
}
.ambient-orbit--python {
top: 5%;
left: -90px;
opacity: 0.4;
}
.ambient-orbit--django {
bottom: 4%;
right: -80px;
opacity: 0.35;
}
.ambient-orbit--postgres {
top: 56%;
right: -40px;
opacity: 0.35;
}
}
</style>
</head>
<body>
<div class="scroll-progress"></div>
<div class="ambient-orbits" aria-hidden="true">
<div class="ambient-orbit ambient-orbit--python">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg" alt="">
</div>
<div class="ambient-orbit ambient-orbit--django">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/django/django-plain.svg" alt="">
</div>
<div class="ambient-orbit ambient-orbit--postgres">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/postgresql/postgresql-original.svg" alt="">
</div>
</div>
<div class="container">
<nav>
<a class="nav-logo" href="#">EK</a>
<div class="nav-right">
<div class="nav-links">
<a href="#projects">Projects</a>
<a href="#stack">Stack</a>
<a href="#contact">Contact</a>
</div>
<button class="theme-toggle" type="button" aria-label="Toggle light and dark mode">
<span class="theme-toggle-icon">☀</span>
<span class="theme-toggle-text">Light</span>
</button>
</div>
</nav>
<div class="hero">
<div class="hero-tag">// Backend Engineer · Nigeria · Remote</div>
<h1 class="hero-name">Elkanah<br><span>Kindness</span></h1>
<p class="hero-bio">
Backend engineer with <strong>3+ years</strong> building production systems in <strong>Python and Django</strong>. Started from C fundamentals. Co-founding engineer at <strong>Proplink</strong>, a proptech marketplace. I architect backends that ship and stay up.
</p>
<div class="hero-links">
<a href="https://github.com/ELKINDMAN" target="_blank" class="btn primary">GitHub</a>
<a href="https://linkedin.com/in/elkanahkindness" target="_blank" class="btn">LinkedIn</a>
<a href="mailto:elkanahkindness@gmail.com" class="btn">Email</a>
</div>
</div>
<hr class="divider">
<section id="projects">
<div class="section-label">Selected Projects</div>
<div class="projects">
<div class="project">
<div class="project-header">
<div class="project-name">FUNAIConnect</div>
<span class="project-status live">Live</span>
</div>
<p class="project-desc">Campus information platform serving the FUNAI university community. Events, announcements, academic updates and student life — centralized and always on. Built solo from concept to deployment. V2 rebuilding with Django REST API and React client.</p>
<div class="project-stack">
<span class="tag">Python</span><span class="tag">Flask</span><span class="tag">Django REST</span><span class="tag">SQLite</span><span class="tag">PWA</span><span class="tag">PythonAnywhere</span>
</div>
<div class="project-links">
<a href="http://elkanah.pythonanywhere.com" target="_blank" class="project-link">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6"/><polyline points="15,3 21,3 21,9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>
Live Site
</a>
<a href="https://github.com/ELKINDMAN/connect_v2_BE" target="_blank" class="project-link">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 00-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0020 4.77 5.07 5.07 0 0019.91 1S18.73.65 16 2.48a13.38 13.38 0 00-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 005 4.77a5.44 5.44 0 00-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 009 18.13V22"/></svg>
Source
</a>
</div>
</div>
<div class="project">
<div class="project-header">
<div class="project-name">Proplink</div>
<span class="project-status private">Private · In Progress</span>
</div>
<p class="project-desc">Proptech marketplace platform connecting property buyers, sellers, and agents. Architected the entire backend from scratch including listings management, search, user roles, and API design. Co-founding engineer and sole system architect.</p>
<div class="project-stack">
<span class="tag">Python</span><span class="tag">Django REST</span><span class="tag">PostgreSQL</span><span class="tag">API Design</span><span class="tag">System Architecture</span>
</div>
<div class="project-links">
<span class="project-link" style="opacity:0.35; cursor:default;">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="11" width="18" height="11" rx="2"/><path d="M7 11V7a5 5 0 0110 0v4"/></svg>
Private Repository
</span>
</div>
</div>
<div class="project">
<div class="project-header">
<div class="project-name">Brandvoice</div>
<span class="project-status shipped">Shipped</span>
</div>
<p class="project-desc">Invoice generation utility built in Python. Clean, reliable, and built for real use. Handles invoice creation and document output without the bloat.</p>
<div class="project-stack">
<span class="tag">Python</span><span class="tag">PDF Generation</span><span class="tag">CLI</span>
</div>
<div class="project-links">
<a href="https://github.com/ELKINDMAN/Brandvoice" target="_blank" class="project-link">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 00-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0020 4.77 5.07 5.07 0 0019.91 1S18.73.65 16 2.48a13.38 13.38 0 00-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 005 4.77a5.44 5.44 0 00-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 009 18.13V22"/></svg>
Source
</a>
</div>
</div>
<div class="project">
<div class="project-header">
<div class="project-name">OminiCopy</div>
<span class="project-status shipped">Shipped</span>
</div>
<p class="project-desc">REST API for managing copywriting campaigns. Designed for multi-channel content workflows with clean API design and modular structure, built to be consumed by frontend or third-party clients.</p>
<div class="project-stack">
<span class="tag">Python</span><span class="tag">Flask</span><span class="tag">REST API</span><span class="tag">JSON</span>
</div>
<div class="project-links">
<a href="https://github.com/ELKINDMAN/ominiCopy" target="_blank" class="project-link">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 00-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0020 4.77 5.07 5.07 0 0019.91 1S18.73.65 16 2.48a13.38 13.38 0 00-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 005 4.77a5.44 5.44 0 00-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 009 18.13V22"/></svg>
Source
</a>
</div>
</div>
</div>
</section>
<hr class="divider">
<section id="stack">
<div class="section-label">Stack</div>
<div class="stack-grid">
<div class="stack-item">
<div class="stack-icon"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg" alt="Python"></div>
<div class="stack-info">Python<span>Primary</span></div>
</div>
<div class="stack-item">
<div class="stack-icon"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/django/django-plain.svg" alt="Django"></div>
<div class="stack-info">Django<span>Backend</span></div>
</div>
<div class="stack-item">
<div class="stack-icon"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/flask/flask-original.svg" alt="Flask"></div>
<div class="stack-info">Flask<span>Backend</span></div>
</div>
<div class="stack-item">
<div class="stack-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" style="color:var(--muted)"><path d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"/></svg>
</div>
<div class="stack-info">DRF<span>APIs</span></div>
</div>
<div class="stack-item">
<div class="stack-icon"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/postgresql/postgresql-original.svg" alt="PostgreSQL"></div>
<div class="stack-info">PostgreSQL<span>Database</span></div>
</div>
<div class="stack-item">
<div class="stack-icon"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mysql/mysql-original.svg" alt="MySQL"></div>
<div class="stack-info">MySQL<span>Database</span></div>
</div>
<div class="stack-item">
<div class="stack-icon"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/sqlalchemy/sqlalchemy-original.svg" alt="SQLAlchemy"></div>
<div class="stack-info">SQLAlchemy<span>ORM</span></div>
</div>
<div class="stack-item">
<div class="stack-icon"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/c/c-original.svg" alt="C"></div>
<div class="stack-info">C<span>Foundation</span></div>
</div>
<div class="stack-item">
<div class="stack-icon"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/linux/linux-original.svg" alt="Linux"></div>
<div class="stack-info">Linux<span>Systems</span></div>
</div>
<div class="stack-item">
<div class="stack-icon"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original.svg" alt="Git"></div>
<div class="stack-info">Git<span>Version Control</span></div>
</div>
<div class="stack-item">
<div class="stack-icon"><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/github/github-original.svg" alt="GitHub"></div>
<div class="stack-info">GitHub<span>Collaboration</span></div>
</div>
<div class="stack-item">
<div class="stack-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" style="color:var(--muted)"><path d="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
</div>
<div class="stack-info">REST APIs<span>Design</span></div>
</div>
</div>
</section>
<hr class="divider">
<section id="contact">
<div class="section-label">Contact</div>
<div class="contact-item">
<span class="contact-label">Email</span>
<a href="mailto:elkanahkindness@gmail.com" class="contact-value">elkanahkindness@gmail.com</a>
</div>
<div class="contact-item">
<span class="contact-label">GitHub</span>
<a href="https://github.com/ELKINDMAN" target="_blank" class="contact-value">github.com/ELKINDMAN</a>
</div>
<div class="contact-item">
<span class="contact-label">LinkedIn</span>
<a href="https://linkedin.com/in/elkanahkindness" target="_blank" class="contact-value">linkedin.com/in/elkanahkindness</a>
</div>
<div class="contact-item">
<span class="contact-label">X</span>
<a href="https://x.com/Elkanah_builder" target="_blank" class="contact-value">@Elkanah_builder</a>
</div>
</section>
<footer>
<span>Elkanah Kindness</span>
<span>Open to remote work worldwide</span>
</footer>
</div>
<script>
// Theme toggle: respects saved preference or system, then allows manual switch
(function() {
const root = document.documentElement;
const storedTheme = localStorage.getItem('theme');
function getPreferredTheme() {
if (storedTheme === 'light' || storedTheme === 'dark') return storedTheme;
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: light)').matches) {
return 'light';
}
return 'dark';
}
function applyTheme(theme) {
root.setAttribute('data-theme', theme);
const btn = document.querySelector('.theme-toggle');
if (!btn) return;
const icon = btn.querySelector('.theme-toggle-icon');
const text = btn.querySelector('.theme-toggle-text');
if (theme === 'light') {
if (icon) icon.textContent = '\u2600';
if (text) text.textContent = 'Light';
} else {
if (icon) icon.textContent = '\u263E';
if (text) text.textContent = 'Dark';
}
}
const initialTheme = getPreferredTheme();
applyTheme(initialTheme);
window.addEventListener('DOMContentLoaded', function() {
const toggle = document.querySelector('.theme-toggle');
if (!toggle) return;
toggle.addEventListener('click', function() {
const current = root.getAttribute('data-theme') === 'light' ? 'light' : 'dark';
const next = current === 'light' ? 'dark' : 'light';
localStorage.setItem('theme', next);
applyTheme(next);
});
});
})();
const observer = new IntersectionObserver((entries) => {
entries.forEach((e, i) => {
if (e.isIntersecting) {
setTimeout(() => e.target.classList.add('visible'), i * 120);
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.project, .stack-item, .contact-item, .section-label').forEach(el => observer.observe(el));
const progressBar = document.querySelector('.scroll-progress');
function updateProgress() {
if (!progressBar) return;
const scrollTop = window.scrollY || window.pageYOffset;
const docHeight = document.documentElement.scrollHeight - window.innerHeight;
const progress = docHeight > 0 ? (scrollTop / docHeight) * 100 : 0;
progressBar.style.width = progress + '%';
}
window.addEventListener('scroll', updateProgress);
window.addEventListener('resize', updateProgress);
updateProgress();
</script>
</body>
</html>