-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
797 lines (773 loc) · 35.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta property="og:image" content="https://i.ibb.co/PZ9WBgV/main.png">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="images/favicon.png" rel="icon" />
<title>Portfolio | Kai Indigo Wolf</title>
<!-- Web Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Comfortaa:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css2?family=Truculenta:opsz,wght@12..72,400;12..72,500;12..72,600&display=swap" rel="stylesheet">
<!-- Stylesheet
============================== -->
<!-- Bootstrap -->
<link
rel="stylesheet"
type="text/css"
href="vendor/bootstrap/css/bootstrap.min.css"
/>
<!-- Font Awesome Icon -->
<link
rel="stylesheet"
type="text/css"
href="vendor/font-awesome/css/all.min.css"
/>
<!-- Owl Carousel -->
<link
rel="stylesheet"
type="text/css"
href="vendor/owl.carousel/assets/owl.carousel.min.css"
/>
<!-- Magnific Popup -->
<link
rel="stylesheet"
type="text/css"
href="vendor/magnific-popup/magnific-popup.min.css"
/>
<!-- Custom Stylesheet -->
<link rel="stylesheet" type="text/css" href="css/stylesheet.css" />
</head>
<body
class="side-header"
data-bs-spy="scroll"
data-bs-target="#header-nav"
data-bs-offset="1"
>
<!-- Preloader -->
<div class="preloader preloader-dark">
<div class="lds-ellipsis">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- Preloader End -->
<!-- Document Wrapper
=============================== -->
<div id="main-wrapper">
<!-- Header
============================ -->
<header id="header" class="sticky-top">
<!-- Navbar -->
<nav
class="primary-menu navbar navbar-expand-lg bg-dark navbar-text-light border-bottom-0"
>
<div
class="container-fluid position-relative h-100 flex-lg-column ps-3 px-lg-3 pt-lg-3 pb-lg-2"
>
<!-- Logo -->
<a href="index.html" class="mb-lg-auto mt-lg-4">
<span
class="bg-dark-2 rounded-pill p-2 mb-lg-1 d-none d-lg-inline-block"
>
<img
class="img-fluid rounded-pill d-block"
src="images/profile.jpeg"
title="I'm Kai Indigo Wolf"
alt=""
/>
</span>
<h1 class="text-8 text-white text-center mb-0 d-lg-block" id="title">
Kai Indigo Wolf
</h1>
</a>
<ul
class="social-icons social-icons-muted social-icons-sm mt-lg-auto ms-auto ms-lg-0 d-flex"
>
<li class="social-icons-linkedin">
<a
data-bs-toggle="tooltip"
title="LinkedIn"
data-bs-placement="top"
href="http://www.linkedin.com/in/indigowolf"
target="_blank"
><i class="fab fa-linkedin"></i
></a>
</li>
<li class="social-icons-github">
<a
data-bs-toggle="tooltip"
title="GitHub"
data-bs-placement="top"
href="http://www.github.com/indigow0lf"
target="_blank"
><i class="fab fa-github"></i
></a>
</li>
</ul>
<!-- Logo End -->
<div
id="header-nav"
class="collapse navbar-collapse w-100 my-lg-auto"
>
<ul class="navbar-nav text-lg-center my-lg-auto py-lg-3">
<li class="nav-item">
<a class="nav-link smooth-scroll active" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-scroll" href="#about">About Me</a>
</li>
<li class="nav-item"><a class="nav-link smooth-scroll" href="#services">What I Do</a></li>
<li class="nav-item">
<a class="nav-link smooth-scroll" href="#resume">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link smooth-scroll" href="#portfolio"
>Projects</a
>
</li>
<li class="nav-item">
<a class="nav-link smooth-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#header-nav"
>
<span></span><span></span><span></span>
</button>
</div>
</nav>
<!-- Navbar End -->
</header>
<!-- Header End -->
<!-- Content
============================================= -->
<div id="content" role="main">
<!-- Intro
============================================= -->
<section id="home">
<div class="hero-wrap">
<div class="hero-mask opacity-6 bg-dark"></div>
<div
class="hero-bg parallax"
style="background-image: url('https://i.ibb.co/ZccNzJK/newbkg.jpg')"
></div>
<div class="hero-content section d-flex fullscreen">
<div class="container my-auto">
<div class="row">
<div class="col-12 text-end">
<div class="typed-strings">
<p>I'm Kai Indigo Wolf.</p>
<p>I'm a Software Engineer.</p>
<p>I'm a Data Explorer.</p>
<p> I'm a Change Maker.</p>
<p>I Uncover Insights.</p>
<p>I Build Solutions.</p>
</div>
<p class="text-10 fw-500 text-white mb-2 mb-md-3">
Nice to meet you
</p>
<h2 class="text-17 fw-600 text-white mb-2 mb-md-3">
<span class="typed"></span>
</h2>
<p class="text-5 text-light mb-4">
Let's transform data into wisdom together.
</p>
<a
href="#contact"
class="btn btn-outline-primary rounded-pill shadow-none smooth-scroll mt-2"
>Contact</a
>
</div>
</div>
</div>
<a
href="#about"
class="scroll-down-arrow text-white smooth-scroll"
><span class="animated"><i class="fa fa-chevron-down"></i></span
></a>
</div>
</div>
</section>
<!-- Intro end -->
<!-- About
============================================= -->
<section id="about" class="section bg-dark-1">
<div class="container px-lg-5">
<!-- Heading -->
<div class="position-relative d-flex text-center mb-5">
<h2
class="text-24 text-white opacity-2 text-uppercase fw-600 w-100 mb-0" id="title"
>
About Me
</h2>
<p
class="text-9 text-white fw-600 position-absolute w-100 align-self-center lh-base mb-0"
>
Hello there.<span
class="heading-separator-line border-bottom border-3 border-primary d-block mx-auto"
></span>
</p>
</div>
<!-- Heading end-->
<div class="row gy-5">
<div class="col-lg-7 col-xl-8 text-center text-lg-start">
<h2 class="text-7 text-white fw-600 mb-3">
I'm <span class="text-primary">Kai Indigo Wolf,</span>
a Software Engineer enthralled with data analysis/science and social good.
</h2>
<p class="text-white-50">
I'm a prolific student and current solo software engineer with a flair for
innovative solutions. I am fascinated with the <span class="text-primary">user experience</span> and
place special emphasis on this while bringing my ideas to life.
I'm passionate about improving processes and being a catalyst for
<span class="text-primary">positive societal and technical change.</span>
</p>
<p class="text-white-50">When I'm not working on projects, you can find me living adventurously with my four eclectic, homeschooled kiddos, propagating my ever-growing houseplant collection, hiking and enjoying nature, petting my three cuddly cats, dancing under a full moon with a bonfire, or drinking my morning masala chai tea. Under it all, is a deep seeded committment to bettering the planet and the lives of everyone who calls it home. </p>
</div>
<div class="col-lg-5 col-xl-4">
<div class="ps-lg-4">
<ul class="list-style-2 list-style-light text-light">
<li>
<span class="fw-600 me-2">Email:</span
><a href="mailto:kai.indigo.wolf@gmail.com"
>kai.indigo.wolf@gmail.com</a
>
</li>
<li>
<span class="fw-600 me-2">Currently In:</span>Columbia,
Missouri
</li>
<li class="border-0">
<span class="fw-600 me-2">Seeking Remote Work</span>
</li>
</ul>
<a href="images/KaiIndigoWolf_Resume.pdf" class="btn btn-primary rounded-pill"
>Download Resume</a
>
</div>
</div>
</div>
<div
class="brands-grid separator-border separator-border-light mt-5"
>
<div class="row">
<div class="col-6 col-md-3">
<!-- <div class="featured-box text-center"> -->
<!-- <h4 class="text-12 text-white-50 mb-0">
<span class="counter" data-from="0" data-to="10">10</span
>+
</h4>
<p class="text-light mb-0">Years Experience</p> -->
<!-- </div> -->
</div>
<div class="col-6 col-md-3">
<!-- <div class="featured-box text-center"> -->
<!-- <h4 class="text-12 text-white-50 mb-0"> -->
<!-- <span class="counter" data-from="0" data-to="250"
>250</span
>+
</h4>
<p class="text-light mb-0">Happy Clients</p> -->
<!-- </div> -->
</div>
<div class="col-6 col-md-3">
<!-- <div class="featured-box text-center"> -->
<!-- <h4 class="text-12 text-white-50 mb-0"> -->
<!-- <span class="counter" data-from="0" data-to="650"
>650</span
>+
</h4>
<p class="text-light mb-0">Projects Done</p> -->
<!-- </div> -->
</div>
<div class="col-6 col-md-3">
<!-- <div class="featured-box text-center"> -->
<!-- <h4 class="text-12 text-white-50 mb-0">
<span class="counter" data-from="0" data-to="38">20</span>
</h4>
<p class="text-light mb-0">Get Awards</p> -->
<!-- </div> -->
</div>
</div>
</div>
</div>
</section>
<!-- About end -->
<!-- Services
============================================= -->
<section id="services" class="section bg-dark-2">
<div class="container px-lg-5">
<!-- Heading -->
<div class="position-relative d-flex text-center mb-5">
<h2
class="text-24 text-white opacity-2 text-uppercase fw-600 w-100 mb-0" id="title"
>
Skillset
</h2>
<p
class="text-9 text-white fw-600 position-absolute w-100 align-self-center lh-base mb-0"
>
My Passions<span
class="heading-separator-line border-bottom border-3 border-primary d-block mx-auto"
></span>
</p>
</div>
<!-- Heading end-->
<div class="row">
<div class="col-lg-11 mx-auto">
<div class="row">
<div class="col-md-6">
<div class="featured-box style-3 mb-5 mb-md-0">
<div
class="featured-box-icon text-primary bg-dark-1 shadow-sm rounded"
>
<i class="fas fa-chart-area"></i>
</div>
<h3 class="text-white">Data Analysis</h3>
<p class="text-white-50 mb-0">
I am proficient with Python, NumPy, ScikitLearn, Pandas, MatPlotLib, Machine
Learning, Tensorflow, AWS, Excel, and Data Viz with Tableau.
</p>
</div>
</div>
<div class="col-md-6">
<div class="featured-box style-3 mb-5">
<div
class="featured-box-icon text-primary bg-dark-1 shadow-sm rounded"
>
<i class="fas fa-palette"></i>
</div>
<h3 class="text-white">Front-End Development</h3>
<p class="text-white-50 mb-0">
I am currently working with React, HTML, CSS, JavaScript, Bootstrap, and multiple 3rd-party React libraries.
</p>
</div>
</div>
<div class="col-md-6">
<div class="featured-box style-3 mb-5">
<div
class="featured-box-icon text-primary bg-dark-1 shadow-sm rounded"
>
<i class="fas fa-desktop"></i>
</div>
<h3 class="text-white">Back-End Development</h3>
<p class="text-white-50 mb-0">
Comfortable with Python and Java for back-end development, cloud technologies, utilizing frameworks like Flask and SpringBoot. Experienced in API integration, version control, and managing SQL/NoSQL databases, ensuring efficient data handling and retrieval.
</p>
</div>
</div>
<div class="col-md-6">
<div class="featured-box style-3 mb-5">
<div
class="featured-box-icon text-primary bg-dark-1 shadow-sm rounded"
>
<i class="fas fa-pencil-ruler"></i>
</div>
<h3 class="text-white">UI/UX Design</h3>
<p class="text-white-50 mb-0">
I am passionate about the user experience, and enjoy quantitative/qualitative research, information architecture, wireframing, prototyping, visual communication, Figma, Sketch, and AdobeXD.
</p>
</div>
</div>
<div class="col-md-6">
<div class="featured-box style-3 mb-5">
<div
class="featured-box-icon text-primary bg-dark-1 shadow-sm rounded"
>
<i class="fas fa-paint-brush"></i>
</div>
<h3 class="text-white">Agile Methodologies</h3>
<p class="text-white-50 mb-0">
Certified in ITIL Foundations and as a Scrum Master, I am confident utilizing Agile and Scrum methodologies as well as working with iterative processes. I enjoy teamwork, facilitation, and communication in cross-functional, collaborative settings.
</p>
</div>
</div>
<div class="col-md-6">
<div class="featured-box style-3 mb-0">
<div
class="featured-box-icon text-primary bg-dark-1 shadow-sm rounded"
>
<i class="fas fa-bullhorn"></i>
</div>
<h3 class="text-white">Philomath - Autodidact</h3>
<p class="text-white-50 mb-0">
A committed lifelong learner, continuously expanding my skill set to include emerging technologies and methodologies, ready to adapt and innovate in any technological landscape.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services end -->
<!-- Resume
============================================= -->
<section id="resume" class="section bg-dark-1">
<div class="container px-lg-5">
<!-- Heading -->
<div class="position-relative d-flex text-center mb-5">
<h2
class="text-24 text-white opacity-2 text-uppercase fw-600 w-100 mb-0" id="title"
>
Summary
</h2>
<p
class="text-9 text-white fw-600 position-absolute w-100 align-self-center lh-base mb-0"
>
Skills<span
class="heading-separator-line border-bottom border-3 border-primary d-block mx-auto"
></span>
</p>
</div>
<!-- Heading end-->
<div class="row gx-5">
<!-- My Skills -->
<!-- <h2 class="text-6 text-white fw-600 mt-4 mb-4">My Skills</h2> -->
<div class="row gx-5">
<div class="col-md-6">
<div class="bg-dark rounded p-4 mb-4">
<p></p>
<h3 class="text-white" id="title">Front-End<span style="float:right;">Back-End</span></h3><p></p>
<p class="text-light fw-500 text-start mb-2">JavaScript<span style="float:right;">Python</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">React<span style="float:right;">Java</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">HTML<span style="float:right;">AWS</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">Apollo/GraphQL<span style="float:right;">Version Control</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">Open-Source Libraries<span style="float:right;">APIs</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">CSS<span style="float:right;">Flask</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">Accessibility<span style="float:right;">SQL/NoSQL</span></p>
</div>
</div>
<div class="col-md-6">
<div class="bg-dark rounded p-4 mb-4">
<p></p>
<h3 class="text-white" id="title">UI/UX<span style="float:right;">Data Analysis</span></h3><p></p>
<p class="text-light fw-500 text-start mb-2">UX Research<span style="float:right;">Pandas</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">Wireframing<span style="float:right;">NumPy</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">Prototyping<span style="float:right;">Scikit-Learn</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">Figma<span style="float:right;">Machine Learning</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">Adobe XD<span style="float:right;">Tensorflow</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">Sketch<span style="float:right;">Data Visualization</span></p><p></p>
<p class="text-light fw-500 text-start mb-2">Interaction Design<span style="float:right;">Data Cleaning/Modeling</span></p>
</div>
</div>
</div>
<div class="text-center mt-5">
<a
href="images/KaiIndigoWolf_Resume.pdf"
class="btn btn-primary rounded-pill"
>Download Resume
<span class="ms-1"><i class="fas fa-download"></i></span
></a>
</div>
</div>
</section>
<!-- Resume end -->
<!-- Portfolio
============================================= -->
<section id="portfolio" class="section bg-dark-2">
<div class="container px-lg-5">
<!-- Heading -->
<div class="position-relative d-flex text-center mb-5">
<h2 class="text-24 text-white opacity-2 text-uppercase fw-600 w-100 mb-0" id="title">Projects</h2>
<p class="text-9 text-white fw-600 position-absolute w-100 align-self-center lh-base mb-0">My Work<span class="heading-separator-line border-bottom border-3 border-primary d-block mx-auto"></span> </p>
</div>
<!-- Heading end-->
<!-- Filter Menu -->
<ul class="portfolio-menu nav nav-tabs nav-light justify-content-center border-bottom-0 mb-5">
<li class="nav-item"> <a data-filter="*" class="nav-link active" href="">All</a></li>
<li class="nav-item"> <a data-filter=".website" href="" class="nav-link">Websites</a></li>
<li class="nav-item"> <a data-filter=".ux" href="" class="nav-link">UX Design</a></li>
<li class="nav-item"> <a data-filter=".data" href="" class="nav-link">Data Analysis</a></li>
<li class="nav-item"> <a data-filter=".api" href="" class="nav-link">APIs</a></li>
</ul>
<!-- Filter Menu end -->
<div class="portfolio popup-ajax-gallery">
<div class="row portfolio-filter g-4">
<div class="col-sm-6 col-lg-4 data">
<div class="portfolio-box rounded">
<div class="portfolio-img rounded"> <img class="img-fluid d-block" src="images/projects/project-8.png" alt="">
<div class="portfolio-overlay"> <a class="popup-ajax stretched-link" href="ajax/portfolio-ajax-project-dark-8.html"></a>
<div class="portfolio-overlay-details">
<h5 class="text-white fw-400">Movie Recommendation Chatbot</h5>
<span class="text-white">First personal project utilizing Jupyter Notebooks, Pandas, and MatPlotLib</span> </div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 api website">
<div class="portfolio-box rounded">
<div class="portfolio-img rounded"> <img class="img-fluid d-block" src="images/projects/project-9.png" alt="">
<div class="portfolio-overlay"> <a class="popup-ajax stretched-link" href="ajax/portfolio-ajax-project-dark-9.html"></a>
<div class="portfolio-overlay-details">
<h5 class="text-white fw-400">Outdated Educator</h5>
<span class="text-white">Interactive Web App Leveraging OpenAI's GPT to Retrieve Outdated Facts Based on Country and Year. </span> </div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 website">
<div class="portfolio-box rounded">
<div class="portfolio-img rounded"> <img class="img-fluid d-block" src="images/projects/project-1.jpg" alt="">
<div class="portfolio-overlay"> <a class="popup-ajax stretched-link" href="ajax/portfolio-ajax-project-dark-1.html"></a>
<div class="portfolio-overlay-details">
<h5 class="text-white fw-400">Breaking Through</h5>
<span class="text-white">A Resource and Mentorship Website</span> </div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 website">
<div class="portfolio-box rounded">
<div class="portfolio-img rounded"> <img class="img-fluid d-block" src="images/projects/project-2.png" alt="">
<div class="portfolio-overlay"> <a class="popup-ajax stretched-link" href="ajax/portfolio-ajax-project-dark-2.html"></a>
<div class="portfolio-overlay-details">
<h5 class="text-white fw-400">Mindful Mantras</h5>
<span class="text-white">Peaceful Images for Meditation</span> </div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 website ux">
<div class="portfolio-box rounded">
<div class="portfolio-img rounded"> <img class="img-fluid d-block" src="images/projects/project-3.png" alt="">
<div class="portfolio-overlay"> <a class="popup-ajax stretched-link" href="ajax/portfolio-ajax-project-dark-3.html"></a>
<div class="portfolio-overlay-details">
<h5 class="text-white fw-400">Homeschool Haven</h5>
<span class="text-white">Logistical Time and Assignment Tracker For Homeschooled Children</span> </div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 website data ux">
<div class="portfolio-box rounded">
<div class="portfolio-img rounded"> <img class="img-fluid d-block" src="images/projects/project-4.png" alt="">
<div class="portfolio-overlay"> <a class="popup-ajax stretched-link" href="ajax/portfolio-ajax-project-dark-4.html"></a>
<div class="portfolio-overlay-details">
<h5 class="text-white fw-400">Black Lives Still Matter</h5>
<span class="text-white">3D Conceptual Art</span> </div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 website ux">
<div class="portfolio-box rounded">
<div class="portfolio-img rounded"> <img class="img-fluid d-block" src="images/projects/project-5.jpg" alt="">
<div class="portfolio-overlay"> <a class="popup-ajax stretched-link" href="ajax/portfolio-ajax-project-dark-5.html"></a>
<div class="portfolio-overlay-details">
<h5 class="text-white fw-400">Storytime</h5>
<span class="text-white"></span>Family Reading Tracker</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 ux">
<div class="portfolio-box rounded">
<div class="portfolio-img rounded"> <img class="img-fluid d-block" src="images/projects/project-6.png" alt="">
<div class="portfolio-overlay"> <a class="popup-ajax stretched-link" href="ajax/portfolio-ajax-project-dark-6.html"></a>
<div class="portfolio-overlay-details">
<h5 class="text-white fw-400">Storytime UX</h5>
<span class="text-white">Pre-project UX Planning</span> </div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 ux website api">
<div class="portfolio-box rounded">
<div class="portfolio-img rounded"> <img class="img-fluid d-block" src="images/projects/project-7.png" alt="">
<div class="portfolio-overlay"> <a class="popup-ajax stretched-link" href="ajax/portfolio-ajax-project-dark-7.html"></a>
<div class="portfolio-overlay-details">
<h5 class="text-white fw-400">SpaceX GraphQL API</h5>
<span class="text-white">First personal project using React, GraphQL, and React Router</span> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio end -->
<!-- Contact Me
============================================= -->
<section id="contact" class="section bg-dark-2">
<div class="container px-lg-5 pb-4">
<!-- Heading -->
<div class="position-relative d-flex text-center mb-5">
<h2
class="text-24 text-white opacity-2 text-uppercase fw-600 w-100 mb-0" id="title"
>
Contact
</h2>
<p
class="text-9 text-white fw-600 position-absolute w-100 align-self-center lh-base mb-0"
>
Get in Touch<span
class="heading-separator-line border-bottom border-3 border-primary d-block mx-auto"
></span>
</p>
</div>
<!-- Heading end-->
<div class="row gy-5">
<div
class="col-md-4 col-xl-3 order-1 order-md-0 text-center text-md-start"
>
<h2 class="mb-3 text-5 text-white text-uppercase">Email</h2>
<p class="text-3 text-light mb-4">
<span class="text-primary text-4 me-2"
><i class="fas fa-envelope"></i></span
>kai.indigo.wolf@gmail.com
</p>
<h2 class="mb-3 text-5 text-white text-uppercase">Follow Me</h2>
<ul
class="social-icons social-icons-muted justify-content-center justify-content-md-start"
>
<li class="social-icons-facebook">
<a
data-bs-toggle="tooltip"
href="http://www.instagram.com/indigow0lf/"
target="_blank"
title="Instagram"
><i class="fab fa-instagram"></i
></a>
</li>
<li class="social-icons-github">
<a
data-bs-toggle="tooltip"
href="http://www.github.com/indigow0lf"
target="_blank"
title="GitHub"
><i class="fab fa-github"></i
></a>
</li>
<li class="social-icons-github">
<a
data-bs-toggle="tooltip"
href="http://www.linkedin.com/in/indigowolf"
target="_blank"
title="LinkedIn"
><i class="fab fa-linkedin"></i
></a>
</li>
</ul>
</div>
<div class="col-md-8 col-xl-9 order-0 order-md-1">
<h2
class="mb-3 text-5 text-white text-uppercase text-center text-md-start"
>
Send me a note
</h2>
<form
id="contact-form"
class="form-dark"
action="https://formspree.io/f/xrgjlyeg"
method="post"
>
<div class="row g-4">
<div class="col-xl-6">
<input
name="name"
type="text"
class="form-control"
required
placeholder="Name"
/>
</div>
<div class="col-xl-6">
<input
name="email"
type="email"
class="form-control"
required
placeholder="Email"
/>
</div>
<div class="col">
<textarea
name="form-message"
class="form-control"
rows="5"
required
placeholder="Share some thoughts with me........"
></textarea>
</div>
</div>
<p class="text-center mt-4 mb-0">
<button
id="submit-btn"
class="btn btn-primary rounded-pill d-inline-flex"
type="submit"
>
Send Message
</button>
</p>
</form>
</div>
</div>
</div>
<!-- </section> -->
<!-- Contact Me end -->
<!-- </div> -->
<!-- Content end -->
<!-- Footer
============================================= -->
<footer id="footer" class="section footer-text-light bg-dark-1">
<div class="container px-lg-5">
<div class="row">
<div class="col-lg-6 text-center text-lg-start">
<p class="mb-3 mb-lg-0">
Copyright © 2024 <a href="#" class="fw-500">Kai Indigo Wolf</a>. All Rights Reserved.
</p>
</div>
</div>
</div>
</footer>
<!-- Footer end -->
</div>
<!-- Document Wrapper end -->
<!-- Back to Top
============================================= -->
<a
id="back-to-top"
class="rounded-circle"
data-bs-toggle="tooltip"
title="Back to Top"
href="javascript:void(0)"
><i class="fa fa-chevron-up"></i
></a>
<!-- JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Easing -->
<script src="vendor/jquery.easing/jquery.easing.min.js"></script>
<!-- Appear -->
<script src="vendor/jquery.appear/jquery.appear.min.js"></script>
<!-- Images Loaded -->
<script src="vendor/imagesloaded/imagesloaded.pkgd.min.js"></script>
<!-- Counter -->
<script src="vendor/jquery.countTo/jquery.countTo.min.js"></script>
<!-- Parallax Bg -->
<script src="vendor/parallaxie/parallaxie.min.js"></script>
<!-- Typed -->
<script src="vendor/typed/typed.min.js"></script>
<!-- Owl Carousel -->
<script src="vendor/owl.carousel/owl.carousel.min.js"></script>
<!-- isotope Portfolio Filter -->
<script src="vendor/isotope/isotope.pkgd.min.js"></script>
<!-- Magnific Popup -->
<script src="vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<!-- Custom Script -->
<script src="js/theme.js"></script>
</body>
</html>