-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2234 lines (1907 loc) · 103 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
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
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- * META TAGS FOR SOCIAL MEDIA * -->
<meta property="og:title" content="Ayo Adesanya - Portfolio Website"/>
<meta property="og:description" content="Featuring great projects built from the ground up for your pleasure." />
<meta name="description" content="Featuring great projects built from the ground up for your pleasure." >
<meta property="og:image" content="https://i.imgur.com/p0w6wD6.jpg" />
<meta property="og:url" content="https://v1.ayoadesanya.com" />
<meta property="og:site_name" content="Ayo Codes - Portfolio Website" />
<meta property="og:locale" content="en_GB" />
<meta property="og:type" content="website" />
<meta name="twitter:image" content="https://i.imgur.com/p0w6wD6.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Ayo Adesanya - Portfolio Website" />
<meta
name="twitter:description"
content="Featuring great projects built from the ground up for your pleasure."
/>
<meta name="twitter:site" content="@son_ayo" />
<meta name="twitter:creator" content="@son_ayo" />
<!-- * META TAGS FOR SOCIAL MEDIA ENDS * -->
<!--? Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-172956970-4"></script>
<script rel=preconnect>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-172956970-4');
</script>
<!--? Our project just needs Font Awesome solid + brand -->
<!-- <script defer src="/node_modules/@fortawesome/fontawesome-free/css/all.min.css"></script> -->
<!-- <script defer src="/node_modules/@fortawesome/fontawesome-free/js/all.min.js"></script> -->
<link rel="stylesheet" href="assets/css/style.css">
<!--? Font -->
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<!-- ? favicon -->
<link rel="shortcut icon" type="image/jpg" href="public/static/images/meta/vs.png">
<!-- <link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous"
/> -->
<title>Ayo Adesanya - Software Developer</title>
</head>
<body>
<!-- ////////////////////////////////////////////////////////////////////////////////////////
START SECTION 1 - THE NAVBAR SECTION
/////////////////////////////////////////////////////////////////////////////////////////////-->
<nav class="navbar navbar-expand-xl navbar-dark menu shadow fixed-top">
<div class="container">
<a class="navbar-brand" href="#home">Ayo Adesanya</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end py-1" id="navbarNav">
<ul class="navbar-nav align-items-lg-center">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://blogv1.ayoadesanya.com" target="_blank" rel="noopener">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-me">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#latest-projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faqs">FAQs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#testimonials">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact-me">Contact Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#join-us">Join Us</a>
</li>
<a href="mailto:[email protected]" target="_blank" rel="noopener">
<button type="button" class="rounded-pill btn-rounded">[email protected]
<span><i class="fas fa-envelope-square"></i></span>
</button>
</a>
</ul>
</div>
</div>
</nav>
<!-- ////////////////////////////////////////////////////////////////////////////////////////
START THE INTO SECTION
/////////////////////////////////////////////////////////////////////////////////////////////-->
<section id="home" class="intro-section" style="overflow-x: hidden;">
<div class="container">
<div class="row align-items-center intro-container">
<!-- ? TEXT AREAS -->
<div class="col-md-6 intro text-md-start text-center">
<div class="display-2">
<span class="display-2--intro">Hey, i'm Ayo</span>
<span class="display-2--description lh-base"> Working at WP Tech (Sweden) I lead the front-end development and tooling of our cross-platform applications. <br/><br/>I thrive in teams, helping others grow and building culture that fosters genuine collaboration.<br/><br/> ● My personal keywords<br/>
#sharedResponsibility #ClimateJustice #SocialJustice </span>
</div>
<a href="mailto:[email protected]" target="_blank" rel="noopener" aria-label="Email"><button type="button" class="rounded-pill btn-rounded">Get in Touch
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
<!-- ? IMAGE AREA -->
<div class="col-md-6 intros text-end">
<div class="video-box">
<img srcset="public/static/images/arts/ayo.png "alt="html image coding" class="img-fluid rounded-pill">
<a href="#portfolio" aria-label="Go to portfolio section" style="z-index: 10;" >
<span class="desktop-position">
<i class="fas fa-hand-point-up hand "></i>
</span>
<span class="border-animation border-animation--1"></span>
<span class="border-animation border-animation--2"></span>
</a>
</div>
</div>
</div>
</div>
<!-- ? BACKGROUND ROUNDED BOTTOM AREA -->
<div class="background-bottom"></div>
</section>
<!-- ////////////////////////////////////////////////////////////////////////////////////////
COMPANIES WORKED WITH
/////////////////////////////////////////////////////////////////////////////////////////////-->
<section id="companies" class="companies">
<div class="container">
<div class="row">
<h2 class="lead fw-bold mb-3 mt-4 text-center text-gradient ">Worked with</h2>
<div class="heading-line mb-3"></div>
</div>
</div>
<!--? company logo -->
<div class="container">
<div id="company-slide" class="carousel slide" data-bs-ride="carousel" data-bs-interval="500">
<div class="carousel-inner active">
<div class="carousel-item">
<a href="#" target="_blank" rel="noopener">
<img src="public/static/images/companies/wptech.webp" alt="wptech logo" title="wp tech logo" class="img-fluid lazyload">
</a>
</div>
<div class="carousel-item">
<a href="https://www.phenopolis.co.uk/" target="_blank" rel="noopener">
<img src="public/static/images/companies/pheno.png" alt="phenopolis nhs website" title="phenopolis nhs website" class="img-fluid lazyload">
</a>
</div>
<div class="carousel-item active">
<a href="http://www.stopholdingback.org" target="_blank" rel="noopener">
<img src="public/static/images/companies/company-1.png" alt="stop holding back logo" title="stop holding back logo" class="img-fluid lazyload">
</a>
</div>
<div class="carousel-item">
<a href="#" target="_blank" rel="noopener">
<img src="public/static/images/companies/pheno.png" alt="bluepreme website" title="bluepreme logo" class="img-fluid lazyload">
</a>
</div>
<div class="carousel-item">
<a href="http://www.benetalk.com" target="_blank" rel="noopener">
<img src="public/static/images/companies/company-3.png" alt="benetalk speech app logo" title="benetalk speech app logo stuttering therapy" class="img-fluid lazyload">
</a>
</div>
<div class="carousel-item">
<a href="#" target="_blank" rel="noopener">
<img src="public/static/images/companies/company-2.png" alt="bluepreme website" title="bluepreme logo" class="img-fluid lazyload">
</a>
</div>
</div>
<!-- <button class="carousel-control-prev" type="button" data-bs-target="#company-slide" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#company-slide" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button> -->
</div>
</div>
</section>
<div class="separator mb-5"></div>
<!-- ////////////////////////////////////////////////////////////////////////////////////////
About Me
/////////////////////////////////////////////////////////////////////////////////////////////-->
<div id="about-me"></div>
<section class="about-me">
<div class="container">
<div class="row text-center">
<h2 class="display-3 fw-bold">About Me</h2>
</div>
</div>
<!-- ? Description Content-->
<div class="container">
<div class="row about-me-text">
<div class="col-md-6 border-right">
<div class="bg-white p3">
<h2 class="fw-bold text-capitalize text-lg-center text-gradient">
Optimist, loves people & Action Taker.
</h2>
</div>
</div>
<div class="col-md-6">
<div class="bg-white text-start para border-line">
<p class="fw-bold text-danger">Please visit my github for my latest work.</p>
<p class="fw-light">
My name is Ayo but my friends call me <span >"Mr get sh*t done".</span><br><br>
I've been hopelessly immersed in Software Development for over 3 years.<br><br><b>Born and raised in London. </b>I have lots of experience working in teams, I'm also a co-founder of the Stop Holding Back Foundation, a UK charity helping people who have speech disabilities find careers.
</p>
</div>
</div>
</div>
</div>
<!-- <div class="container mt-5">
<div class="row about-me-text">
<div class="col-md-6 border-right">
<div class="d-flex flex-column align-items-center bg-white p3">
<h2 class="fw-bold text-lg-center text-gradient">
Click the image below to view my other links.
</h2>
<a href="https://linktr.ee/Ayocodes"target="_blank" rel="noopener"><img src="public/static/images/arts/linktree.png" alt="ayo codes linked tree" class="img-fluid lazyload" style="cursor: pointer;"></a>
</div>
</div>
</div>
</div> -->
</section>
<div class="separator mb-5"></div>
<!-- ////////////////////////////////////////////////////////////////////////////////////////
PROJECT SHOWCASE
/////////////////////////////////////////////////////////////////////////////////////////////-->
<div id="latest-projects"></div>
<section class="project-showcase">
<div class="container">
<div class="row text-center">
<h2 class="display-3 fw-bold project-showcase-title">Depreciated Projects</h2>
<div class=" mb-5"></div>
</div>
<!-- ? Project - Facebook clone-->
<div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-1 order-2">
<div class="project-showcase__content"><img src="public/static/images/key-projects/fbclone2.png" alt="facebook clone leave your mark" title="student database app"class="img-fluid lazyload"></div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-2 order-1">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<img class="icon" src="public/static/images/arts/fblogo.png"/>
<div class="display-3--title">Leave Your Mark - Facebook Clone <span style="Display: block;">(Full stack)</span></div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b> Next.js | Next.Auth | Typescript | Tailwind | Firebase V9 </b></p>
<p class="lh-lg">
This app acts as a pin board for anyone to use. Think of it like a mood board, a Pinterest-type app with a Facebook user interface. You can share your photos,posts and browse the posts of others. </p>
<div class="btn-container">
<a href="https://leaveyourmark.vercel.app/" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href="https://github.com/AyoCodess/Facebook-Clone-Functional-NextJs-Firebase-Tailwind-Typescript" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
</div>
<!-- ? Project - Ayo codes API -->
<div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<img class="icon" src="public/static/images/arts/ayocodesapi-logo.png"/>
<div class="display-3--title">AyoCodes REST API</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>Javascript | Tailwind CSS | Express | Vercel Deployment Service |</b></p>
<p class="lh-lg">
This project was originally built for my other project Ex-Student database.</p>
<p>The original third-party API suddenly stopped working so I decided to create my own API for some of my personal projects going forward.</p>
<div class="btn-container">
<a href="https://api-for-personal-projects.vercel.app" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href='https://github.com/AyoCodess/API-for-personal-projects' target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<img src="public/static/images/key-projects/ayocodesapi.png" alt="ayocodes rest api" title="ayocodes rest api"class="img-fluid lazyload"></div>
</div>
</div>
<!-- ? Project - Ex-student database -->
<div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-1 order-2">
<div class="project-showcase__content"><img src="public/static/images/key-projects/student-database.png" alt="student database app" title="student database app"class="img-fluid lazyload"></div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-2 order-1">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<img class="icon" src="public/static/images/arts/student-logo.jpeg"/>
<div class="display-3--title">EX-Student Database Web App</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>REACT | Tailwind CSS | My Own Personal API </b></p>
<p class="lh-lg">
A collection of schools want a web application to help them manage the contact information they hold on ex-students. The data was fetched from my own API. </p>
<div class="btn-container">
<a href="https://student-database-ayocodes.netlify.app/" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href="https://github.com/AyoCodess/Ex-Student-Database-Fullstack-REACT" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
</div>
<!-- ? crypto trading pairs -->
<!-- <div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<img class="icon" src="public/static/images/key-projects//tradingicon.png"/>
<div class="display-3--title">Crypto Trading Pairs App</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>REACT | reCharts | Tailwind CSS | Axios </b>
<p class="lh-lg">
This app was a half day build challenge. I completed the app in 7 hours. The readMe file in the repo details my experience.</p>
<p class="lh-lg">I created a small frontend application using any framework that allows users to select a trading pair from an API, display information about the trading pair and its live price change every 10 seconds and view the Bitcoin average price from 3 different exchanges</p>
<div class="btn-container">
<a href="https://crypto-trading-pairs-app.netlify.app" style="color: #2c3e50" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href="https://github.com/AyoCodess/Crypto-Trading-Pairs-App-REACT" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<img src="public/static/images/key-projects/trading.png" alt="Crypto Trading App" title="Crypto Trading App"class="img-fluid lazyload">
</div>
</div>
</div> -->
<!-- ? Project - Pokemon 2 -->
<div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<img class="icon" src="public/static/images/key-projects/pokeicon.png"/>
<div class="display-3--title">PokeDex & Vs App</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>REACT | Tailwind CSS | React Router V6 | React-Pagination | Axios | Pokemon API </b></p>
<p class="lh-lg">
This app was a 2 day build challenge with the task of building a React.js web UI that interfaces with the Pokemon API. I completed the build in 1.9 days. The readMe file in the repo details my experience.</p>
<p>This App is a PokeDex app with an added pokemon comparison feature.The readMe file in the repo details my experience.</p>
<div class="btn-container">
<a href="https://pokedex-ayocodes.netlify.app/" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href='https://github.com/AyoCodess/Pokedex-REACT' target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<img src="public/static/images/key-projects/poke.png" alt="pokedex and pokemon comparison app" title="pokedex and pokemon comparison app"class="img-fluid lazyload"></div>
</div>
</div>
<!-- ? Project - reiz-tech -->
<!-- <div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<img class="icon" src="public/static/images/arts/world.png"/>
<div class="display-3--title">Country Finder - React Web App</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>REACT | Rest Countries API | Tailwind CSS </b>
<p>This was a 2 day build challenge. I completed this project in 1.5 days. The readMe file in the repo details my experience.</p>
<p class="lh-lg">Find your country, sort and filter by country name, area size and region. </p>
<p class="lh-lg">This was a take home assignment for a hiring process. Please checkout the read me in the Github repo for more information about the project. </p>
<div class="btn-container">
<a href="https://reiz-tech-app.netlify.app" style="color: #2c3e50" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href="https://github.com/AyoCodess/Reiz-Tech-App-REACT" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<img src="public/static/images/key-projects/reiz.png" alt="reiz tech app" title="reiz tech app"class="img-fluid lazyload">
</div>
</div>
</div> -->
<!-- ? Project dashboard -->
<div class="row align-items-center mt-3">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-1 order-2">
<div class="project-showcase__content">
<img src="public/static/images/key-projects/d.png" alt="all in one dashboard" title="all in one dashboard"class="img-fluid lazyload"></div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-2 order-1">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<img class="icon" src="public/static/images/key-projects/dash-icon.jpeg"/>
<div class="display-3--title">All-in-one Dashboard</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>REACT | Tailwind CSS | React Router V6 | Auth0 | XML RSS Data | Open weather API | And many more... </b>
</p>
<p> This was a 5 day build challenge. I completed the app in 4.5 days. The readMe file in the repo details my experience.</p>
<p class="lh-lg">
app was created as a take home project to be completed within 5 days. I love these types of challenges as it's an opportunity to display my current skills and gain some new ones! <b>The read me file in the repo explains my project experience in depth.</b> </p>
<p class="lh-lg">
<b>App Features:</b>
<ol>
<li> Get the weather data at your current location with some visuals</li>
<li> Get the latest news via the GNews API and UN RSS feed</li>
<li> View the Italian football league 17/18 Champions League season match results and view what teams beat who</li>
<li> Upload your photos and view them in the main dashboard view</li>
<li> Task Manager - Local Storage and Backend (Express, MongoD options implemented</li>
<li> View the clothes someone wore in the past 1000 days (data visualisation)</li>
<li>API call error states are handled visually</li>
<li>Mobile responsive</li>
</ol>
</p>
<div class="btn-container">
<a href="https://ayocodes-dashboard.netlify.app/" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href='https://github.com/AyoCodess/All-in-one-dashboard-fullstack-REACT' target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
</div>
<!-- ? Project - coincora -->
<div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<div class="icon icon-m fab fa-bitcoin"></div>
<div class="display-3--title">Coincora - React Web App</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>REACT | Coingecko API | Material UI | Tailwind CSS </b></p>
<p class="lh-lg">Coincora is a coin forecasting tool and information hub for traversing the crypto market safely and securely.
</p><p>I'm working on project in my leisure time consistently, and I'm looking for support. Please Click <a href="https://www.beta.coincora.com/support-me" target="_blank" rel="noopener">here</a> to support this projects on-going development. Thank you.</p>
<div class="btn-container">
<a href="https://www.beta.coincora.com/" style="color: #2c3e50" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href="https://www.youtube.com/c/AyoDAdesanya" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">YouTube Updates
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<img src="public/static/images/key-projects/coincora.png" alt="coincora" title="coincora"class="img-fluid lazyload">
</div>
</div>
</div>
<!-- ? Project 0 -->
<!-- <div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-1 order-2">
<div class="project-showcase__content">
<img src="public/static/images/key-projects/shb-app.png" alt="stop holding back app find a mentor" title="stop holding back app find a mentor"class="img-fluid lazyload"></div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-2 order-1">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<img class="icon" src="public/static/images/key-projects/charity-icon.png"/>
<div class="display-3--title">Stop Holding Back - React Database App</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>REACT | SASS </b></p>
<p class="lh-lg">
This React app allows the public to filter and search through current SHB charity members, looking for a mentor to support them through their stuttering. Helping them build self-esteem and find the career they want despite their disability.</p>
<div class="btn-container">
<a href="https://staff.stopholdingback.org" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href="https://github.com/AyoCodess/SHB-Find-a-Mentor-REACT" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
</div> -->
<!-- ? Project 1 -->
<!-- <div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<div class="icon icon-m fab fa-bitcoin"></div>
<div class="display-3--title">Is it A Good Investment? - Landing Page</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>HTML | SASS | JS | AOS Library </b></p>
<p class="lh-lg">I had a lot of fun building this project. I have some nice on scroll animations going on too. I plan to expand this project in the future. <b>Checkout both the desktop and mobile versions</b></p>
<div class="btn-container">
<a href="https://isitagoodinvestment.netlify.app/" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href="https://github.com/AyoCodess/Crypto-Club-Landing-Page-VANILLA-JS" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<img src="public/static/images/key-projects/iiagi.png" alt="iiagi - is it a good investment crypto" title="iiagi - is it a good investment crypto"class="img-fluid lazyload">
</div>
</div>
</div> -->
<!-- ? Project 2 -->
<div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-1 order-2">
<div class="project-showcase__content"><img src="public/static/images/key-projects/sass.png" alt="sass demo landing page" title="sass website"class="img-fluid lazyload"></div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-2 order-1">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<div class="icon fab fa-sass"></div>
<div class="display-3--title">Website - Ultra Light/Dark Mode</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>HTML | SASS | JS </b></p>
<p class="lh-lg">
Re-envisioned the SASS landing page with a dark and light theme implementation. The darkmode is my favorite version of the website. Local storage automatically saves your choice of theme. </p>
<div class="btn-container">
<a href="https://sass-landing-page-ayocodess.netlify.app/#" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href="https://github.com/AyoCodess/Remake-of-the-SASS-Website-VANILLA-JS" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
</div>
<!-- ? Project 3 -->
<div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<div class="icon fas fa-smile-beam"></div>
<div class="display-3--title">This Website</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>HTML | SASS | JS | BOOTSTRAP V.5 </b></p>
<p class="lh-lg">This website was built from ground up and is continually being developed. This was also my first attempt and learning and implementing bootstrap for the very first time. </p>
<div class="btn-container">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">You're here
<span><i class="fas fas fa-home"></i></span>
</button>
<a href="https://github.com/AyoCodess/Portfolio-Website-VANILLA-JS" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<img src="public/static/images/key-projects/port.png" alt="ayo adesanya portfolio" title="ayo adesanya portfolio website "class="img-fluid lazyload">
</div>
</div>
</div>
<!-- ? Project 4 -->
<div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-1 order-2">
<div class="project-showcase__content"><img src="public/static/images/key-projects/the-blog.jpeg" alt="ayo adesanya blog" title="sayo adesanya blog"class="img-fluid lazyload"></div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase order-lg-2 order-1">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<div class="icon fas fa-blog"></div>
<div class="display-3--title">Ayo Codes - The Blog</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>HTML | SASS | JS | 11ty | Nunjunks | Netlify CMS | Disqus </b></p>
<p class="lh-lg">
This was my first time using a static site generator with a headless CMS. We have pagination functionality for every 10 posts. It was challenging at times but I got the job done. Visit the blog to read more about my coding ups and downs.</p>
<div class="btn-container">
<a href="https://blogv1.ayoadesanya.com" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href="https://github.com/AyoCodess/Personal-Coding-Blog-11ty-VANILLA-JS" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
</div>
<!-- ? Project 5 -->
<div class="row align-items-center">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<div class="project-showcase-main-heading">
<div class="icon icon-m fab fa-windows"></div>
<div class="display-3--title">Microsoft Website 2021</div>
</div>
<p class="lh-lg"><code>Technologies</code> <br><b>HTML | CSS | JS</b></p>
<p class="lh-lg">I had good time building the desktop and mobile versions, emulating the original website as best I could with a few new additions.</p>
<div class="btn-container">
<a href="https://microsoft-2021-website-ayocodess.netlify.app/" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase">Live Site
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
<a href="https://github.com/AyoCodess/Remake-of-Microsoft-Website-2021-VANILLA-JS" target="_blank" rel="noopener">
<button type="button" class="rounded-pill rounded-pill--mod btn-rounded btn-rounded--project-showcase btn2">GitHub Repo
<span><i class="fas fa-arrow-right"></i></span>
</button>
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12 project-showcase">
<div class="project-showcase__content">
<img src="public/static/images/key-projects/microsoft.jpeg" alt="ayo adesanya portfolio" title="ayo adesanya portfolio website "class="img-fluid lazyload">
</div>
</div>
</div>
</section>
<!-- ? BACKGROUND ROUNDED BOTTOM AREA -->
<div class="background-bottom--inverse mt-lg-5"></div>
<!-- ////////////////////////////////////////////////////////////////////////////////////////
TESTIMONIALS
/////////////////////////////////////////////////////////////////////////////////////////////-->
<div id="testimonials"></div>
<section class="testimonials">
<div class="container">
<div class="row text-center">
<h2 class="display-3 fw-bold h2-heading">
Testimonials
</h2>
<hr style="width: 100px; height: 3px;" class="mx-auto">
<p class="lead sub-head">What they say when I'm not around...</p>
</div>
</div>
<div class="container">
<!-- ? TESTIMONIAL CAROUSEL-->
<div class="row align-items-center">
<div id="c-items" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<!--! CAROUSEL ITEM 1-->
<div class="carousel-item active">
<!--? testimonial card-->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left quotes"></i>
Give Ayo a problem and he'll find a way to solve it. Always.
<i class="fas fa-quote-right quotes"></i>
<div class="ratings">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!--? client picture-->
<div class="testimonials__picture">
<img src="public/static/images/testimonials/angelica.jpeg" alt="angelia lundberg brand copywriter" class="img-fluid lazyload rounded-circle">
</div>
<!--? client name & job title -->
<div class="testimonials__name">
<div class="t-name">Angelica Lundberg</div>
<p class="fw-light">Brand Copywriter for Heja</p>
</div>
</div>
<!--! CAROUSEL ITEM 2 -->
<div class="carousel-item">
<!--? testimonial card-->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left quotes"></i>
Ayo is hardworking and dedicated to helping people with a stammer improve their speech. Having gone to Secondary school with Ayo it is fantastic to see how great his verbal communication has become. His speech is greatly improved and his stammer to me is now gone.
<i class="fas fa-quote-right quotes"></i>
<div class="ratings">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!--? client picture-->
<div class="testimonials__picture">
<img src="public/static/images/testimonials/nigel.jpeg" alt="nigel collins graduate project" class="img-fluid lazyload rounded-circle">
</div>
<!--? client name & job title -->
<div class="testimonials__name">
<div class="t-name">Nigel Collins</div>
<p class="fw-light">Team Leader at Graduate Project</p>
</div>
</div>
<!--! CAROUSEL ITEM 3-->
<div class="carousel-item">
<!--? testimonial card-->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left quotes"></i>
Ayo implements automation that transforms business processes and digital marketing communications significantly. He's also excellent at simplifying complicated techy programs and training people on how to get the best use out of them.
<i class="fas fa-quote-right quotes"></i>
<div class="ratings">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!--? client picture-->
<div class="testimonials__picture">
<img src="public/static/images/testimonials/chris-jackson.jpeg" alt="chris jackson stephanie jackson recruitment" class="img-fluid rounded-circle lazyload">
</div>
<!--? client name & job title -->
<div class="testimonials__name">
<div class="t-name">Chris Jackson</div>
<p class="fw-light">CEO of SJR London</p>
</div>
</div>
<!--! CAROUSEL ITEM 4-->
<div class="carousel-item">
<!--? testimonial card-->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left quotes"></i>
I loved working with Ayo! He gets stuff done and isn't afraid to ask the questions that really matter.
<i class="fas fa-quote-right quotes"></i>
<div class="ratings">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!--? client picture-->
<div class="testimonials__picture">
<img src="public/static/images/testimonials/raj-patel.jpeg" alt="raj patel ncino" class="img-fluid rounded-circle lazyload">
</div>
<!--? client name & job title -->
<div class="testimonials__name">
<div class="t-name">Raj Patel</div>
<p class="fw-light">Associate Manager at nCino</p>
</div>
</div>
<!--! CAROUSEL ITEM 5-->
<div class="carousel-item">
<!--? testimonial card-->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left quotes"></i>
Ayo is really fun and easy to work with, his passion is apparent during everyday conversations and I enjoy working with him! I would highly recommend taking an opportunity to work with Ayo both on a personal and professional level.
<i class="fas fa-quote-right quotes"></i>
<div class="ratings">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!--? client picture-->
<div class="testimonials__picture">
<img src="public/static/images/testimonials/kenneth.jpeg" alt="angelia brand copywriter" class="img-fluid rounded-circle lazyload">
</div>
<!--? client name & job title -->
<div class="testimonials__name">
<div class="t-name">Kenneth Ofosu</div>
<p class="fw-light">Client Operations Manager at Housing Hand</p>
</div>
</div>
<!--! CAROUSEL ITEM 6-->
<div class="carousel-item">
<!--? testimonial card-->
<div class="testimonials__card">
<p class="lh-lg">
<i class="fas fa-quote-left quotes"></i>
I've worked with Ayo on a number of different projects. He's always open to learning new things, always solution oriented and extremely easy to work with
<i class="fas fa-quote-right quotes"></i>
<div class="ratings">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</p>
</div>
<!--? client picture-->
<div class="testimonials__picture">
<img src="public/static/images/testimonials/ruban.jpeg" alt="Client Operations Manager" class="img-fluid rounded-circle lazyload">
</div>
<!--? client name & job title -->
<div class="testimonials__name">
<div class="t-name">Ruban Pillai</div>
<p class="fw-light">Manager at Macquarie Group</p>
</div>
</div>
</div>
<!--? BUTTONS -->
<div class="c-buttons text-center">
<button class="btn btn-outline-light fas fa-long-arrow-alt-left" type="button" data-bs-target="#c-items" data-bs-slide="prev" aria-label="Go Left">
</button>
<button class="btn btn-outline-light fas fa-long-arrow-alt-right" type="button" data-bs-target="#c-items" data-bs-slide="next" aria-label="Go Right">
</button>
</div>
</div>
</div>
</div>
</section>
<!-- ? BACKGROUND ROUNDED BOTTOM AREA -->
<div class="background-bottom"></div>
<!-- ////////////////////////////////////////////////////////////////////////////////////////
FAQs SECTION
/////////////////////////////////////////////////////////////////////////////////////////////-->
<div id="faqs"></div>
<section class="faq">
<div class="container">
<div class="row text-center faq-main-heading">
<h2 class="display-3 fw-bold text-uppercase">faq</h2>
<div class="heading-line"></div>
<p class="lead text-gradient text-gradient fw-bold">Curious about me</p>
</div>
<!--? ACCORDION MODULE-->
<div class="row mt-5">
<div class="col-md-12">
<div class="accordion" id="faq-section">
<!--? QUESTION 1-->
<div class="accordion-item shadow mb-3">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
How much experience do you have?
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#faq-section">