-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1684 lines (1667 loc) · 69.7 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" class="no-js">
<head>
<title>Balogun Ridwan Babatunde Ridbay, Software Engineer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Full Stack Software Developer, NodeJS, ReactJS, TypeScript, AngularJS, NodeJS, C#, MongoDB, PostgreSQL, MySQL, RESTful APIs, Microservices, Monoliths, GitHub, Azure DevOps, cPanel, Windows server, Linux servers, CDN, Unit testing, Docker, Kubernetes, WordPress Ikeja, Lagos, Nigeria"
/>
<meta
name="keywords"
content="Full Stack Software Developer, NodeJS, ReactJS, TypeScript, AngularJS, NodeJS, C#, MongoDB, PostgreSQL, MySQL, RESTful APIs, Microservices, Monoliths, GitHub, Azure DevOps, cPanel, Windows server, Linux servers, CDN, Unit testing, Docker, Kubernetes, WordPress Ikeja, Lagos, Nigeria"
/>
<meta name="author" content="Ridwan Balogun" />
<link
href="https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:300,400,500,700,900"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="assets/css/animate.css" />
<link
rel="stylesheet"
type="text/css"
href="assets/css/bootstrap-grid.css"
/>
<link rel="stylesheet" type="text/css" href="assets/css/lightcase.css" />
<link rel="stylesheet" type="text/css" href="assets/css/swiper.min.css" />
<link rel="stylesheet" type="text/css" href="assets/css/icofont.min.css" />
<link
rel="shortcut icon"
href="https://res.cloudinary.com/ridbay/image/upload/v1672342058/My%20Website%20Assets/favicon.ico"
/>
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
</head>
<body>
<div class="shape-top"></div>
<div class="shape-bottom"></div>
<!-- mobile-nav section start here -->
<div class="mobile-menu">
<nav class="mobile-header d-xl-none">
<div class="header-logo">
<a href="index.html" class="logo"
><img
src="https://res.cloudinary.com/ridbay/image/upload/v1672346227/My%20Website%20Assets/rsz_1rb_logo__1_-removebg-preview_180x40.png"
alt="logo"
/></a>
</div>
<div class="header-bar" id="open-button">
<span></span>
<span></span>
<span></span>
</div>
</nav>
<div class="menu-wrap">
<div
class="morph-shape"
id="morph-shape"
data-morph-open="M-1,0h101c0,0,0-1,0,395c0,404,0,405,0,405H-1V0z"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 100 800"
preserveAspectRatio="none"
>
<path
d="M-1,0h101c0,0-97.833,153.603-97.833,396.167C2.167,627.579,100,800,100,800H-1V0z"
/>
</svg>
</div>
<nav class="menu">
<div class="mobile-menu-area d-xl-none">
<div class="mobile-menu-area-inner" id="scrollbar">
<div class="header-bar m-menu-bar">
<a href="index.html" class="logo"
><img
src="https://res.cloudinary.com/ridbay/image/upload/v1672346227/My%20Website%20Assets/rsz_1rb_logo__1_-removebg-preview_180x40.png"
alt="logo"
/></a>
<div class="close-button" id="close-button"></div>
</div>
<ul class="m-menu">
<li><a href="#Banner">Home</a></li>
<li><a href="#About">About Me</a></li>
<li><a href="#Resume">Experience</a></li>
<li><a href="#Services">Services</a></li>
<!-- <li><a href="#Portfolio">Portfolio</a></li> -->
<!-- <li><a href="#Pricing">Pricing</a></li> -->
<li><a href="#Clients">Testimonials</a></li>
<!-- <li><a href="#Blog">Blog</a></li> -->
<li><a href="#Contact">Contact</a></li>
</ul>
<ul class="social-link-list d-flex flex-wrap">
<li>
<a
href="https://facebook.com/ridbay"
class="facebook"
target="_blank"
><i class="icofont-facebook"></i
></a>
</li>
<li>
<a
href="https://twitter.com/ridbay"
target="_blank"
class="twitter-sm"
><i class="icofont-twitter"></i
></a>
</li>
<li>
<a
href="https://linkedin.com/in/ridbay"
target="_blank"
class="linkedin"
><i class="icofont-linkedin"></i
></a>
</li>
<li>
<a
href="https://wa.me/2348078197526"
target="_blank"
class="google"
><i class="icofont-whatsapp"></i
></a>
</li>
</ul>
</div>
</div>
</nav>
</div>
</div>
<!-- mobile-nav section ending here -->
<!-- header section start here -->
<div class="header-section d-none d-xl-block">
<div class="header">
<nav class="primary-menu" id="navbar">
<div class="container">
<div class="menu-area">
<div
class="row no-gutters justify-content-between align-items-center"
>
<div class="header-logo">
<a href="index.html" class="logo"
><img
src="https://res.cloudinary.com/ridbay/image/upload/v1672346227/My%20Website%20Assets/rsz_1rb_logo__1_-removebg-preview_180x40.png"
alt="logo"
/></a>
</div>
<ul class="main-menu d-flex">
<li class="active"><a href="#Banner">Home</a></li>
<li><a href="#About">About Me</a></li>
<li><a href="#Resume">Experience</a></li>
<li><a href="#Services">Services</a></li>
<!-- <li><a href="#Portfolio">Portfolio</a></li> -->
<!-- <li><a href="#Pricing">Pricing</a></li> -->
<li><a href="#Clients">Testimonials</a></li>
<!-- <li><a href="#Blog">Blog</a></li> -->
<li><a href="#Contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</nav>
</div>
</div>
<!-- header section ending here -->
<section class="banner" id="Banner">
<div class="banner-area">
<div class="container">
<div class="section-wrapper banner-wrapper">
<div class="row align-items-center">
<div class="col-lg-6 col-12">
<div class="banner-content">
<h1>Hello...</h1>
<h1>I'm <span>Ridwan</span> Balogun,</h1>
<h1>A Professional</h1>
<div class="dynamic-title cd-headline clip is-full-width">
<h1 class="cd-words-wrapper">
<b class="is-visible gold-title">Back-End Engineer</b>
<b class="gold-title">Front-End Engineer</b>
<b class="gold-title">IT Business Analyst</b>
<b class="gold-title">Digital Marketer</b>
<b class="gold-title">Team Manager</b>
</h1>
</div>
<a
class="btn"
href="https://drive.google.com/drive/folders/1foYmg4Knq_iPIxEc6keo_WTSl337gtgy?usp=sharing"
target="_blank"
><span>Download my Resume</span
><img
src="assets/images/icon/btn-1.png"
alt="icon"
class="img-fluid"
/></a>
</div>
</div>
<div class="col-lg-6 col-12">
<div class="banner-thumb">
<img
src="https://res.cloudinary.com/ridbay/image/upload/v1672339149/My%20Website%20Assets/ridbay_native.png"
alt="ridbay"
class="img-fluid"
width="450px"
/>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- box lay out -->
<div class="box-shadow-style">
<section class="banner-bottom">
<div class="banner-bottom-pattan"></div>
<div class="container">
<div class="bottom-wrapper section-wrapper">
<div
class="post-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>
<div class="post-thumb">
<img src="assets/images/icon/01.png" alt="banner" />
</div>
<div class="post-content">
<h5>Give me a Call</h5>
<a href="tel:+2348078197526">
<h5><span>08078197526</span></h5></a
>
</div>
</div>
<div
class="post-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".2s"
>
<div class="post-thumb">
<img src="assets/images/icon/02.png" alt="banner" />
</div>
<div class="post-content">
<h5>Send us a Message</h5>
<a href="mailto:me@balogunridwan.com"
><h5><span>me@balogunridwan.com</span></h5></a
>
</div>
</div>
<div
class="post-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>
<div class="post-thumb">
<img src="assets/images/icon/03.png" alt="banner" />
</div>
<div class="post-content">
<h5>Check my codes on GitHub</h5>
<a href="https://github.com/ridbay" target="_blank"
><h5><span>https://github.com/ridbay</span></h5></a
>
</div>
</div>
<div
class="post-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>
<div class="post-thumb">
<img src="assets/images/icon/bc-icon.png" alt="banner" />
</div>
<div class="post-content">
<h5>Social Media Accounts</h5>
<a href="https://linktr.ee/ridbay" target="_blank"
><h5><span>https://linktr.ee/ridbay</span></h5></a
>
</div>
</div>
</div>
</div>
</section>
<section class="about padding-tb" id="About">
<div class="particles" id="particles-js"></div>
<div class="container">
<div class="section-wrapper">
<div class="about-left">
<div
class="title wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>
<h3>Welcome to Ridbay's World</h3>
<!-- <h2>
Software Development Manager with 6+ years of experience in
Web technologies, Training, Documentation, Database,
Publishing, Testing and Migration, IT applications, along with
Project Management skills. Thorough knowledge of digital
marketing and IT business analysis. Presently looking into
Web3.0 and Metaverse development.
</h2> -->
</div>
<div
class="about-thumb wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".2s"
>
<img
src="https://res.cloudinary.com/ridbay/image/upload/v1672345561/My%20Website%20Assets/44CBB588-BB8C-4385-94E7-53D849D56F65_2.jpg"
alt="about"
class="img-fluid"
/>
</div>
</div>
<div class="about-right">
<div class="about-item">
<div class="title">
<span
class="category wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>Hello World</span
>
<h2
class="wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".2s"
>
Hi, I'm <span>Ridwan Balogun</span>, a seasoned software
development engineer, tech content creator, and leader with
a passion for driving innovation and empowering others.
</h2>
<div
class="wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
<!-- <strong>Ridwan Balogun</strong> is a seasoned software
engineer who has extensive knowledge and experience in
various front-end and back-end technologies, responsive
frameworks, databases, and coding best practices. He is
passionate about developing high-quality software solutions
that can benefit the technology industry and society. He is
always open to learning new skills and technologies from
other experts in the field and improving his craft. -->
<strong>Expertise</strong>
<ul>
<li>
Backend and frontend development expertise with
JavaScript, Node.js, and React
</li>
<li>
Proven experience in fintech, agric, and banking
industries
</li>
<li>
Strategic digital marketing skills, leading a team to
the 2015 Google Online Marketing Challenge Finals
(Middle East/Africa Business categories)
</li>
</ul>
</div>
<div
class="wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
<!-- He has a degree in Metallurgical and Materials Engineering
from Federal University of Technology, Akure, where he led a
successful team to the 2015 Google Online Marketing
Challenge Finals (Middle East/Africa Business categories). -->
<strong>Impact</strong>
<ul>
<li>
Facilitated training for over 100 youths in web
development, graphic design, and digital marketing in
2016
</li>
<li>
Conducted virtual software development trainings during
the COVID-19 pandemic, helping others upskill and
reskill
</li>
<li>
Currently creating tech video content to share knowledge
and inspire the next generation of tech leaders
</li>
</ul>
</div>
<div
class="wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
<!-- He has also trained over 100 youths on web development,
graphic design, and digital marketing in 2016. He is
currently working as a senior software engineer and a
business analyst with a leading startup company in Lagos,
Nigeria. He has demonstrated skills in organization,
teamwork, and analysis. -->
<strong>Aspirations</strong>
<ul>
<li>
Committed to improving digital inclusion and developing
innovative solutions for social good
</li>
<li>
Aspiring tech leader and entrepreneur seeking to make a
lasting impact in the industry
</li>
</ul>
</div>
<!-- <p
class="wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
He is an innovative problem solver who thrives on the
challenge of deploying cutting-edge software solutions. He
is ambitious, adventurous, diligent, and lively.
</p> -->
<!-- <p
class="wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
In addition to his professional roles as a Software
Engineer, a Digital Marketer, and an IT Business Analyst, he
enjoys outdoor activities such as sports and gaming. He is a
fan of sci-fi and fantasy movies. He has a keen interest in
Machine Learning and Artificial Intelligence and follows the
latest technology trends in the software development world.
</p> -->
</div>
<a
class="btn wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".5s"
href="https://drive.google.com/drive/folders/1foYmg4Knq_iPIxEc6keo_WTSl337gtgy?usp=sharing"
target="_blank"
><span>Download Resume</span
><img
src="assets/images/icon/btn-1.png"
alt="icon"
class="img-fluid"
/></a>
</div>
</div>
</div>
</div>
</section>
<section
class="experience padding-tb"
id="Resume"
style="background-image: url(assets/images/exp/bg.png)"
>
<div class="container">
<div class="section-header">
<div class="title">
<span
class="category wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>Education</span
>
<!-- <h2
class="wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".2s"
>
I Have Completed My Master <span>Degree & Experience</span> With
Leading Companies
</h2> -->
</div>
</div>
<div class="section-wrapper">
<div
class="exp-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>
<div class="exp-inner">
<div class="exp-thumb">
<img src="assets/images/exp/01.png" alt="experience" />
<h6>Federal University of Technology, Akure</h6>
<div class="exp-cata">
<span>2010 - 2015</span>
</div>
</div>
<div class="exp-content">
<h3>
B. Eng. (Hons) Metallurgical and Materials Engineering
</h3>
</div>
</div>
</div>
<div
class="exp-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".2s"
>
<div class="exp-inner">
<div class="exp-thumb">
<img src="assets/images/exp/02.png" alt="experience" />
<h6>Ibadan Grammar School, Molete, Ibadan</h6>
<div class="exp-cata">
<span>2001 - 2007</span>
</div>
</div>
<div class="exp-content">
<h3>Senior Secondary Certificate Examination (WAEC)</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="experience padding-tb"
id="Resume"
style="background-image: url(assets/images/exp/bg.png)"
>
<div class="container">
<div class="section-header">
<div class="title">
<span
class="category wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>Experience</span
>
</div>
</div>
<div class="section-wrapper">
<div
class="exp-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
<div class="exp-inner">
<div class="exp-thumb">
<img src="assets/images/exp/03.png" alt="experience" />
<h6>Pandar Resources, Lagos, Nigeria</h6>
<div class="exp-cata">
<span>Oct. 2020 - Till date</span>
</div>
</div>
<div class="exp-content">
<h3>
Senior Back-End Developer (Cryptocurrency Trading & Digital
Wallets)
</h3>
<p>
Developed RESTful APIs and Services for e-wallet and
cryptocurrency trading features.
</p>
</div>
</div>
</div>
<div
class="exp-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
<div class="exp-inner">
<div class="exp-thumb">
<img src="assets/images/exp/03.png" alt="experience" />
<h6>WEMA Bank Plc., Marina, Lagos, Nigeria</h6>
<div class="exp-cata">
<span>2021 - 2023</span>
</div>
</div>
<div class="exp-content">
<h3>Software Development Engineer</h3>
<p>
Designed and developed web applications for banking
functions.
</p>
</div>
</div>
</div>
<div
class="exp-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".4s"
>
<div class="exp-inner">
<div class="exp-thumb">
<img src="assets/images/exp/04.png" alt="experience" />
<h6>
Prudent Digital International, Dartford, Kent, England
</h6>
<div class="exp-cata">
<span>Apr. 2020 - Oct. 2020</span>
</div>
</div>
<div class="exp-content">
<h3>Full-stack Developer/Tech Lead (Remote)</h3>
<p>
Led the development of e-commerce and real estate
applications.
</p>
</div>
</div>
</div>
<div
class="exp-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".5s"
>
<div class="exp-inner">
<div class="exp-thumb">
<img src="assets/images/exp/05.png" alt="experience" />
<h6>TechDigi Media Solutions, Lagos, Nigeria</h6>
<div class="exp-cata">
<span>Mar. 2019 - Apr. 2020</span>
</div>
</div>
<div class="exp-content">
<h3>Full-Stack Software Developer/Project Manager</h3>
<p>
Developed a full-stack banking app and facial recognition
app.
</p>
</div>
</div>
</div>
<div
class="exp-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".6s"
>
<div class="exp-inner">
<div class="exp-thumb">
<img src="assets/images/exp/06.png" alt="experience" />
<h6>Artoas Global Limited, Lagos, Nigeria</h6>
<div class="exp-cata">
<span>Feb. 2018 - Mar. 2019</span>
</div>
</div>
<div class="exp-content">
<h3>Web Developer & IT Business Analyst</h3>
<p>Developed new websites and maintained existing ones.</p>
</div>
</div>
</div>
<div
class="exp-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>
<div class="exp-inner">
<div class="exp-thumb">
<img src="assets/images/exp/01.png" alt="experience" />
<h6>Red Media, Lagos, Nigeria</h6>
<div class="exp-cata">
<span>May 2017 - Sept. 2017</span>
</div>
</div>
<div class="exp-content">
<h3>Digital Marketing Analyst</h3>
<p>Developed digital marketing campaign strategies.</p>
</div>
</div>
</div>
<div
class="exp-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".2s"
>
<div class="exp-inner">
<div class="exp-thumb">
<img src="assets/images/exp/02.png" alt="experience" />
<h6>Niji Group, Lagos, Nigeria</h6>
<div class="exp-cata">
<span>Oct. 2015 - May 2017</span>
</div>
</div>
<div class="exp-content">
<h3>Website Developer & Digital Marketer</h3>
<p>
Developed and maintained websites and implemented digital
marketing strategies.
</p>
</div>
</div>
</div>
<div
class="exp-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
<div class="exp-inner">
<div class="exp-thumb">
<img src="assets/images/exp/03.png" alt="experience" />
<h6>
Google Online Marketing Challenge <br />
(Middle East & Africa Business Award Finals)
</h6>
<div class="exp-cata">
<span>Jan. 2015 - July 2015</span>
</div>
</div>
<div class="exp-content">
<h3>Team captain</h3>
<p>
Led a team in partnership with Niji Group to develop a
3-week Google AdWords campaign, driving awareness and
website traffic for their processed foods, engineering,
farms, and hotel services.
</p>
</div>
</div>
</div>
</div>
<div
class="text-center wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
<a
class="btn"
href="https://drive.google.com/drive/folders/1foYmg4Knq_iPIxEc6keo_WTSl337gtgy?usp=sharing"
target="_blank"
><span>Download My CV</span
><img
src="assets/images/icon/btn-1.png"
alt="icon"
class="img-fluid"
/></a>
</div>
</div>
</section>
<section
class="services padding-tb"
id="Services"
style="background-image: url(assets/images/service/bg.png)"
>
<div class="container">
<div class="section-header">
<div class="title">
<span
class="category wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>My Services</span
>
<!-- <h2
class="wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".2s"
>
We Have Done Lot's of <span>My Best Services</span> Lets Check
Some of Them
</h2> -->
</div>
</div>
<div class="section-wrapper">
<div
class="service-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>
<div class="service-inner">
<div class="service-content">
<h3>Software Engineering</h3>
<p>Diligent software engineer with 5+ years of experience.</p>
<p>
Eager to build innovative and cutting-edge business
solutions for the impressive suite of clients within its
global reach.
</p>
</div>
<div class="service-thumb">
<img
src="https://res.cloudinary.com/ridbay/image/upload/v1672330129/My%20Website%20Assets/laptop.png"
alt="services"
/>
</div>
</div>
</div>
<div
class="service-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".2s"
>
<div class="service-inner">
<div class="service-content">
<h3>Digital Marketing/SEO</h3>
<p>
Highly capable marketing manager with 8+ years experience,
seeking to leverage proven leadership and strategy skills to
grow revenue.
</p>
</div>
<div class="service-thumb">
<img
src="https://res.cloudinary.com/ridbay/image/upload/v1672346917/My%20Website%20Assets/Digital%20Marketing.png"
alt="services"
/>
</div>
</div>
</div>
<div
class="service-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
<div class="service-inner">
<div class="service-content">
<h3>IT Business Analysis</h3>
<p>
Experienced professional with comprehensive strategic
planning and implementation skills. Innovative problem
solver, with the ability to see the business and technical
sides of a problem.
</p>
</div>
<div class="service-thumb">
<img
src="https://res.cloudinary.com/ridbay/image/upload/v1672346699/My%20Website%20Assets/Business%20Analysis.png"
alt="services"
/>
</div>
</div>
</div>
<div
class="service-item wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".4s"
>
<div class="service-inner">
<div class="service-content">
<h3>IT Project Management</h3>
<p>
Experienced in overseeing software projects, detailed
oriented,a team player, Effective at managing all phases of
the project life cycle, from planning through deployment.
</p>
</div>
<div class="service-thumb">
<img
src="https://res.cloudinary.com/ridbay/image/upload/v1672346923/My%20Website%20Assets/Project%20Management.png"
alt="services"
/>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="testimonial padding-tb"
id="Clients"
style="background-image: url(assets/images/testimonial/bg.png)"
>
<div class="particles" id="particles-js2"></div>
<div class="container">
<div class="section-header">
<div class="title">
<span
class="category wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".1s"
>Testimonial</span
>
<h2
class="wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".2s"
>
<span>Feedback</span> from the People I have worked with
</h2>
</div>
</div>
<div
class="section-wrapper wow fadeInUp"
data-wow-duration="1s"
data-wow-delay=".3s"
>
<div class="testimonial-slider">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<div class="testimonial-inner">
<div class="testimonial-head">
<div class="testi-top">
<div class="testimonial-thumb">
<img
src="assets/images/testimonial/01.png"
alt="testimonial"
/>
</div>
<div class="name-des">
<h5>Rokeeb Oyebola</h5>
<h6>Digital Flames Internet Technologies</h6>
</div>
</div>
<!-- <img
src="assets/images/testimonial/logo/01.png"
alt="testimonial"
/> -->
</div>
<div class="testimonial-body">
<p>
Working with ridwan balogun for several year has made
me realize consistency can be mixed with efficiency.
Ridwan is a very prudent person to work with and
always go out of normals to find a solution to the
problem at hand.
</p>
</div>
<div class="testimonial-footer">
<ul>
<li><i class="icofont-star"></i></li>
<li><i class="icofont-star"></i></li>
<li><i class="icofont-star"></i></li>
<li><i class="icofont-star"></i></li>
<li><i class="icofont-star"></i></li>
</ul>
<img
src="assets/images/testimonial/logo/04.png"
alt="testimonial"
/>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<div class="testimonial-inner">
<div class="testimonial-head">
<div class="testi-top">
<div class="testimonial-thumb">
<img
src="assets/images/testimonial/03.png"
alt="testimonial"
/>
</div>
<div class="name-des">
<h5>Mr. Busayo</h5>
<h6>CEO, Almond Group</h6>
</div>
</div>
<!-- <img
src="assets/images/testimonial/logo/02.png"
alt="testimonial"
/> -->
</div>
<div class="testimonial-body">
<p>
I will admit - originally the thought of outsourcing
scared the hell out of me. As a business owner I am
used to control and always having my finger on the
pulse of my employees and contractors. Ridwan has
delivered great results and has convinced me of the
value of outsourcing. I have really enjoyed working
with Ridwan and he can really deliver outstanding
results.
</p>
</div>
<div class="testimonial-footer">
<ul>
<li><i class="icofont-star"></i></li>
<li><i class="icofont-star"></i></li>
<li><i class="icofont-star"></i></li>
<li><i class="icofont-star"></i></li>
<li><i class="icofont-star"></i></li>
</ul>
<img
src="assets/images/testimonial/logo/04.png"
alt="testimonial"
/>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<div class="testimonial-inner">
<div class="testimonial-head">
<div class="testi-top">
<div class="testimonial-thumb">
<img
src="assets/images/testimonial/02.png"
alt="testimonial"
/>