-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1587 lines (1360 loc) · 62.8 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>
<!-- Essential Meta Tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- SEO Meta Tags -->
<meta name="description" content="CyberSage - Empowering businesses with cutting-edge technology solutions. Explore our portfolio to see how we innovate and deliver exceptional results." />
<meta name="keywords" content="Abakwe Carrington, CyberSage, Technology Solutions, Business Innovation, Portfolio, Software Development, IT Services, Cutting-edge Technology" />
<meta name="robots" content="index, follow" />
<!-- Open Graph Meta Tags for Social Media -->
<meta property="og:title" content="CyberSage | Empowering Technology Solutions" />
<meta property="og:description" content="Discover Abakwe Carrington's portfolio showcasing our innovative technology solutions designed to drive business success. Let's innovate together." />
<meta property="og:image" content="https://cybersage-portfolio.vercel.app/images/og-image.jpg" />
<meta property="og:url" content="https://cybersage-portfolio.vercel.app/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Abakwe Carrington" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="CyberSage | Empowering Technology Solutions" />
<meta name="twitter:description" content="Explore Abakwe Carrington's portfolio of innovative technology solutions that drive business success. Let's collaborate and innovate together." />
<meta name="twitter:image" content="https://cybersage-portfolio.vercel.app/images/twitter-image.jpg" />
<!-- Favicon -->
<link rel="icon" href="circle2.png" type="image/png" />
<!-- Canonical Link -->
<link rel="canonical" href="https://cybersage-portfolio.vercel.app/" />
<!-- Preconnect to Improve Loading Times -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900&display=swap" rel="stylesheet">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-..." crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- AOS Library CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" integrity="sha512-..." crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Your Custom CSS -->
<link rel="stylesheet" href="css/styles.css">
<!-- Title Tag -->
<title>CyberSage | Empowering Technology Solutions</title>
<!-- Structured Data for SEO (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Abakwe Carrington",
"url": "https://cybersage-portfolio.vercel.app/",
"logo": "https://cybersage-portfolio.vercel.app/images/circle2.png",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+234-702-549-5506",
"contactType": "Customer Service",
"email": "[email protected]"
},
"sameAs": [
"https://github.com/donrington",
"https://www.linkedin.com/in/carrington-abakwe-b0b0a0217",
"https://x.com/CarlSwitch_CHUG?t=mVqSP_wXbVTsCJd573PGcg&s=09"
]
}
</script>
</head>
<body>
<body>
<!-- Page Loader -->
<div class="page-loader">
<div class="loader">
<div class="loader-container">
<div class="carousel">
<div class="love"></div>
<div class="love"></div>
<div class="love"></div>
<div class="love"></div>
<div class="love"></div>
<div class="love"></div>
<div class="love"></div>
</div>
</div>
<div class="loader-container">
<div class="carousel">
<div class="death"></div>
<div class="death"></div>
<div class="death"></div>
<div class="death"></div>
<div class="death"></div>
<div class="death"></div>
<div class="death"></div>
</div>
</div>
<div class="loader-container">
<div class="carousel">
<div class="robots"></div>
<div class="robots"></div>
<div class="robots"></div>
<div class="robots"></div>
<div class="robots"></div>
<div class="robots"></div>
<div class="robots"></div>
</div>
</div>
</div>
</div>
<!-- Navigation Bar -->
<!-- ... rest of your HTML content ... -->
<!-- Menu Trigger -->
<div class="container">
<div class="bars"></div>
</div>
<!-- Navigation Bar -->
<nav>
<h2> <img src="circle2.png" alt="CyberSage Logo" class="logo-image fa fa-fade"> CyberSage</h2>
<!-- Burger Menu Trigger -->
<label class="burger" for="nav-toggle">
<input type="checkbox" id="nav-toggle">
<span></span>
<span></span>
<span></span>
</label>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Theme Toggle Button -->
<div class="theme-toggle">
<label for="themeToggle" class="themeToggle st-sunMoonThemeToggleBtn">
<input type="checkbox" id="themeToggle" class="themeToggleInput" aria-label="Toggle light and dark mode" />
<svg
width="18"
height="18"
viewBox="0 0 20 20"
fill="currentColor"
stroke="none"
>
<mask id="moon-mask">
<rect x="0" y="0" width="20" height="20" fill="white"></rect>
<circle cx="11" cy="3" r="8" fill="black"></circle>
</mask>
<circle
class="sunMoon"
cx="10"
cy="10"
r="8"
mask="url(#moon-mask)"
></circle>
<g>
<circle class="sunRay sunRay1" cx="18" cy="10" r="1.5"></circle>
<circle class="sunRay sunRay2" cx="14" cy="16.928" r="1.5"></circle>
<circle class="sunRay sunRay3" cx="6" cy="16.928" r="1.5"></circle>
<circle class="sunRay sunRay4" cx="2" cy="10" r="1.5"></circle>
<circle class="sunRay sunRay5" cx="6" cy="3.1718" r="1.5"></circle>
<circle class="sunRay sunRay6" cx="14" cy="3.1718" r="1.5"></circle>
</g>
</svg>
</label>
</div>
<!-- Hero Section -->
<!-- Hero Section -->
<section class="hero-section" id="home">
<div class="parallax parrallax2 parallax-1"></div> <!-- Parallax Decorative Element -->
<div class="parallax parallax-2"></div> <!-- Another Parallax Decorative Element -->
<div class="hero-content">
<div class="word word-1 split-text">
<span>F</span><span>O</span><span>L</span><span>I</span><span>O</span>
</div>
<div class="word word-2 split-text">
<span>A</span><span class="space-holder"></span><span>C</span>
<div class="hero-text">
<h5 class="hero-title">ABAKWE <br> CARRINGTON</h5>
<p class="hero-subtitle">WEB DEVELOPER <br> FREELANCER</p>
</div>
</div>
<div class="word word-3 word-3-z split-text">
<span>2</span><span>0</span><span>2</span><span>4</span>
</div>
</div>
</section>
<!-- Introduction Section -->
<section class="introduction-section" id="about">
<div class="parallax parallax-1" data-aos="fade-up" data-aos-delay="200"></div> <!-- Parallax Decorative Element -->
<div class="parallax parallax-2" data-aos="fade-up" data-aos-delay="400"></div> <!-- Another Parallax Decorative Element -->
<div class="parallax parallax-3" data-aos="fade-up" data-aos-delay="600"></div> <!-- Additional Decorative Element -->
<div class="introduction-content" data-aos="fade-up" data-aos-duration="1000">
<div class="divider"></div> <!-- New Decorative Divider -->
<h2 class="split-text enhanced-title">
<!-- Wrapping each letter with a span for hover effect -->
<span>A</span><span>b</span><span>o</span><span>u</span><span>t</span> <span>M</span><span>e</span>
</h2>
<p class="intro-text enhanced-text">
Hello, I am Abakwe Carrington, a passionate Full Stack Software Developer specializing in building beautiful, functional, and cutting-edge web applications.
My focus is on utilizing Python frameworks like Flask and Django for seamless backend development, while delivering stunning front-end interfaces with modern frameworks and technologies.
With a deep love for problem-solving, I turn challenges into robust solutions, crafting responsive and highly interactive user experiences that solve real-world problems and elevate digital landscapes.
</p>
<div class="divider"></div> <!-- Bottom Divider -->
</div>
</section>
<!-- Work History Timeline Section -->
<section class="history-section" id="history">
<h2 class="section-title2" data-aos="fade-up">WORK HISTORY</h2>
<div class="container">
<h2 class="section-title" data-aos="fade-up">WORK HISTORY</h2>
<div class="timeline">
<!-- Timeline Item 1 -->
<div class="timeline-item" data-aos="fade-up">
<div class="timeline-icon">
<i class="fas fa-store-alt"></i>
</div>
<div class="timeline-content">
<h3>Rokeyla Store</h3>
<span class="timeline-date">January 2024 - Present</span>
<p>Developed a robust e-commerce platform, enhancing user experience and increasing sales by 40%.</p>
</div>
</div>
<!-- Timeline Item 2 -->
<div class="timeline-item" data-aos="fade-up" data-aos-delay="100">
<div class="timeline-icon">
<i class="fas fa-briefcase"></i>
</div>
<div class="timeline-content">
<h3>Samdus Oil & Gas</h3>
<span class="timeline-date">March 2024 - Present</span>
<p>Built and maintained the company portfolio website, improving online presence and client engagement.</p>
</div>
</div>
<!-- Timeline Item 3 -->
<div class="timeline-item" data-aos="fade-up" data-aos-delay="200">
<div class="timeline-icon">
<i class="fas fa-hammer"></i>
</div>
<div class="timeline-content">
<h3>All-A Handyman & Contractor</h3>
<span class="timeline-date">June 2024 - Present</span>
<p>Designed and implemented a responsive website, streamlining project management and client communications.</p>
</div>
</div>
<!-- Timeline Item 4 -->
<div class="timeline-item" data-aos="fade-up" data-aos-delay="300">
<div class="timeline-icon">
<i class="fas fa-code"></i>
</div>
<div class="timeline-content">
<h3>Zidio Development</h3>
<span class="timeline-date">August 2024 - Present</span>
<p>Developed multiple applications and a website for intern applications with bulk SMS functionality, enhancing recruitment processes.</p>
</div>
</div>
<!-- Timeline Item 5 -->
<div class="timeline-item" data-aos="fade-up" data-aos-delay="400">
<div class="timeline-icon">
<i class="fas fa-plane"></i>
</div>
<div class="timeline-content">
<h3>Amanigo Travels</h3>
<span class="timeline-date">May 2024 - june 2024</span>
<p>Led the development of a comprehensive travel management web application, boosting user engagement and administrative efficiency.</p>
</div>
</div>
<!-- Add more timeline items as needed -->
</div>
</div>
<div class="view-all" data-aos="fade-up" data-aos-delay="1400">
<a href="resume/ABAKWECARRINGTONCV.pdf" target="_blank" class="view-all-button">Download CV</a>
</div>
</section>
<!-- Projects Section -->
<section class="projects-section" id="projects">
<h2 class="projects-title" data-aos="fade-up">PROJECTS</h2>
<!-- Projects Container -->
<div class="projects-container">
<!-- Featured Project -->
<div class="project-item featured" data-aos="fade-up">
<div class="project-image-wrapper">
<a href="project1.html">
<img src="projects/rokey3_17.jpg" alt="Featured Project" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-star"></i>
<h3 class="project-title">Rokeyla</h3>
<p class="project-categories">Web App, E-Commerce</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"A Signature Of Style."</em></p>
</div>
<!-- Projects Grid -->
<div class="projects-grid">
<!-- Row for Projects 1 and 2 -->
<div class="project-row">
<!-- Project 1 -->
<div class="project-item size-small" data-aos="fade-up" data-aos-delay="200">
<div class="project-image-wrapper">
<a href="project2.html">
<img src="projects/samdus1_1.jpg" alt="Project 1" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-paint-brush"></i>
<h3 class="project-title">Samdus Oil and Gas Limited</h3>
<p class="project-categories">Web App, Company Portfolio </p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Innovation in Services."</em></p>
</div>
<!-- Project 2 -->
<div class="project-item size-medium" data-aos="fade-up" data-aos-delay="400">
<div class="project-image-wrapper">
<a href="project3.html">
<img src="projects/handyman3.jpg" alt="Project 2" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-code"></i>
<h3 class="project-title">All A Handyman & Contractor</h3>
<p class="project-categories">Web App, Company Portfolio</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Building Your Vision
Recreating Your Imagination."</em></p>
</div>
<!-- Project 3 - Standalone -->
<div class="project-item size-large standalone-left" data-aos="fade-up" data-aos-delay="600">
<div class="project-image-wrapper">
<a href="https://krk-motors.vercel.app/">
<img src="projects/krkmotors.png" alt="Project 3" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-car"></i>
<h3 class="project-title">KRK Motors</h3>
<p class="project-categories">Web App, Company Portfolio</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Delivering Your Dream Car."</em></p>
</div>
</div>
<!-- Row for Projects 4 and 5 -->
<div class="project-row">
<div class="project-item size-large standalone-left" data-aos="fade-up" data-aos-delay="600">
<div class="project-image-wrapper">
<a href="https://axflo-cybersage.vercel.app/">
<img src="axflo.png" alt="Project 3" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-shopping-cart"></i>
<h3 class="project-title">Axflo</h3>
<p class="project-categories">Web App, Company Portfolio</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Maximum Energy Minimum Emissions."</em></p>
</div>
<!-- Project 5 -->
<div class="project-item size-medium" data-aos="fade-up" data-aos-delay="1000">
<div class="project-image-wrapper">
<a href="https://lagosafrobeat.onrender.com/">
<img src="projects/con1.png" alt="Project 5" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-chart-line"></i>
<h3 class="project-title">Lagos AfroBeat Concert</h3>
<p class="project-categories">Web App, Event Website</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Experience the Heartbeat of Afrobeat in Lagos."</em></p>
</div>
<!-- Project 6 - Standalone -->
<div class="project-item size-large standalone-left" data-aos="fade-up" data-aos-delay="1200">
<div class="project-image-wrapper">
<a href="project4.html">
<img src="projects/resuglow1.jpg" alt="Project 6" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-mobile-alt"></i>
<h3 class="project-title">ResuGlow</h3>
<p class="project-categories">Web App, Utility</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>'Build Your Professional Resume.'</em></p>
</div>
</div>
<!-- View All Projects Button -->
<div class="hidden-projects" style="display: none;">
<!-- Add 6 more projects here -->
<div class="project-row">
<div class="project-item size-large standalone-left" data-aos="fade-up" data-aos-delay="600">
<div class="project-image-wrapper">
<a href="https://github.com/Donrington/techhub">
<img src="projects/T1.png" alt="Project 7" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-cogs"></i>
<h3 class="project-title">TECHHUB</h3>
<p class="project-categories">Web App, Blog</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Efficiently Manage Your Inventory."</em></p>
</div>
<div class="project-item size-medium" data-aos="fade-up" data-aos-delay="800">
<div class="project-image-wrapper">
<a href="https://github.com/Donrington/HeartfulConnect">
<img src="projects/HC2.png" alt="Project 8" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-users"></i>
<h3 class="project-title">Heartful Connect</h3>
<p class="project-categories">Web App, Social Platform</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Where Healing and Hope Begin"</em></p>
</div>
<div class="project-item size-small" data-aos="fade-up" data-aos-delay="1000">
<div class="project-image-wrapper">
<a href="https://github.com/Donrington/locationtracker">
<img src="projects/gps.png" alt="Project 9" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-chart-pie"></i>
<h3 class="project-title">GPS</h3>
<p class="project-categories">Web App, Location Tracker</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Guide You Every Step of The Way"</em></p>
</div>
</div>
<div class="project-row">
<div class="project-item size-large standalone-left" data-aos="fade-up" data-aos-delay="600">
<div class="project-image-wrapper">
<a href="https://github.com/Donrington/locationtracker">
<img src="projects/expensetrack1.png" alt="Project 10" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-chart-pie"></i>
<h3 class="project-title">Navigation</h3>
<p class="project-categories">Web App</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Take Control Of Your Finances With Ease."</em></p>
</div>
<div class="project-item size-small " data-aos="fade-up" data-aos-delay="800">
<div class="project-image-wrapper">
<a href="https://handyman-construction.vercel.app/">
<img src="projects/skylineconstruct.png" alt="Project 4" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-magic"></i>
<h3 class="project-title">Skyline Construction</h3>
<p class="project-categories">Landing Page, Company Portfolio</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Transforming Spaces into Stunning Environments."</em></p>
</div>
<div class="project-item size-medium" data-aos="fade-up" data-aos-delay="1200">
<div class="project-image-wrapper">
<a href="https://book-store-j9u7.vercel.app">
<img src="projects/ebook.png" alt="Project 10" class="project-image" loading="lazy">
<div class="overlay">
<div class="project-info">
<i class="project-icon fas fa-gamepad"></i>
<h3 class="project-title">E-Book Store</h3>
<p class="project-categories">Web App, Landing Page</p>
</div>
</div>
</a>
</div>
<p class="project-quote"><em>"Explore Our Library of Adventures."</em></p>
</div>
</div>
</div>
</div>
<!-- View All Projects Button -->
<div class="view-all" data-aos="fade-up" data-aos-delay="1400">
<button class="view-all-button" id="viewAllProjectsBtn">View All Projects</button>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="developer_skills" id="skills" unique-script-id="w-w-dm-id">
<div class="responsive-container-block bg">
<p class="text-blk title" data-aos="fade-up">
My Skills
</p>
<p class="text-blk heading" data-aos="fade-up" data-aos-delay="200">
Expertise in modern web development technologies.
</p>
<div class="responsive-container-block content" data-aos="fade-up" data-aos-delay="400">
<!-- Skill Card 1 -->
<div class="responsive-container-block card">
<div class="responsive-container-block img">
<i class="fab fa-react skill-icon" aria-hidden="true"></i>
</div>
<p class="text-blk desc">
<strong>React</strong>
</p>
<p class="text-blk info">
Building dynamic and responsive user interfaces with React.js.
</p>
<div class="skill-progress">
<div class="skill-progress-bar" data-progress="90%"></div>
</div>
</div>
<!-- Skill Card 2 -->
<div class="responsive-container-block card">
<div class="responsive-container-block img">
<i class="fab fa-css3-alt skill-icon" aria-hidden="true"></i>
</div>
<p class="text-blk desc">
<strong>CSS3</strong>
</p>
<p class="text-blk info">
Crafting visually appealing and responsive designs using CSS3.
</p>
<div class="skill-progress">
<div class="skill-progress-bar" data-progress="85%"></div>
</div>
</div>
<!-- Skill Card 3 -->
<div class="responsive-container-block card">
<div class="responsive-container-block img">
<i class="fas fa-database skill-icon" aria-hidden="true"></i>
</div>
<p class="text-blk desc">
<strong>SQL</strong>
</p>
<p class="text-blk info">
Managing and optimizing databases with SQL for efficient data retrieval.
</p>
<div class="skill-progress">
<div class="skill-progress-bar" data-progress="80%"></div>
</div>
</div>
<!-- Skill Card 4 -->
<div class="responsive-container-block card">
<div class="responsive-container-block img">
<i class="fab fa-python skill-icon" aria-hidden="true"></i>
</div>
<p class="text-blk desc">
<strong>Python</strong>
</p>
<p class="text-blk info">
Developing robust backend systems and automation scripts using Python.
</p>
<div class="skill-progress">
<div class="skill-progress-bar" data-progress="85%"></div>
</div>
</div>
<!-- Skill Card 5 -->
<div class="responsive-container-block card">
<div class="responsive-container-block img">
<i class="fas fa-flask skill-icon" aria-hidden="true"></i>
</div>
<p class="text-blk desc">
<strong>Project Management</strong>
</p>
<p class="text-blk info">
Leading and coordinating projects to ensure timely and successful delivery.
</p>
<div class="skill-progress">
<div class="skill-progress-bar" data-progress="70%"></div>
</div>
</div>
<!-- Add more skill cards as needed -->
</div>
</div>
</section>
<!-- My Process Section -->
<!-- My Process Section -->
<section class="my-process-section" id="my-process">
<h2 class="section-title" data-aos="fade-up">My Process</h2>
<p class="section-subtitle" data-aos="fade-up" data-aos-delay="200">
A structured approach to delivering exceptional results
</p>
<div class="process-steps">
<!-- Step 1 -->
<div class="process-step" data-aos="fade-up" data-aos-delay="400">
<div class="process-icon">
<i class="fas fa-lightbulb"></i>
</div>
<h3 class="process-title">Ideation</h3>
<p class="process-description">
Brainstorming and conceptualizing innovative solutions tailored to your needs.
</p>
</div>
<!-- Step 2 -->
<div class="process-step" data-aos="fade-up" data-aos-delay="600">
<div class="process-icon">
<i class="fas fa-pencil-ruler"></i>
</div>
<h3 class="process-title">Design</h3>
<p class="process-description">
Crafting intuitive and visually appealing designs that enhance user experience.
</p>
</div>
<!-- Step 3 -->
<div class="process-step" data-aos="fade-up" data-aos-delay="800">
<div class="process-icon">
<i class="fas fa-code"></i>
</div>
<h3 class="process-title">Development</h3>
<p class="process-description">
Building robust and scalable applications using modern technologies and best practices.
</p>
</div>
<!-- Step 4 -->
<div class="process-step" data-aos="fade-up" data-aos-delay="1000">
<div class="process-icon">
<i class="fas fa-rocket"></i>
</div>
<h3 class="process-title">Deployment</h3>
<p class="process-description">
Launching the final product and ensuring seamless integration and performance.
</p>
</div>
<!-- Step 5 -->
<div class="process-step" data-aos="fade-up" data-aos-delay="1200">
<div class="process-icon">
<i class="fas fa-headset"></i>
</div>
<h3 class="process-title">Support</h3>
<p class="process-description">
Providing ongoing support and maintenance to ensure sustained success.
</p>
</div>
</div>
</section>
<!-- Pricing Section -->
<!-- Pricing Section -->
<section class="pricing-section" id="pricing">
<h2 class="section-title" data-aos="fade-up">Our Pricing Plans</h2>
<p class="section-subtitle" data-aos="fade-up" data-aos-delay="200">
Choose a plan that suits your needs
</p>
<div class="pricing-container" data-aos="fade-up" data-aos-delay="400">
<!-- Pricing Card 1 -->
<div class="pricing-card">
<div class="pricing-header">
<h3 class="plan-title">Basic</h3>
<p class="plan-price">$410</p>
<p class="plan-duration">One-time payment</p>
</div>
<ul class="plan-features">
<li><i class="fas fa-check-circle"></i> Custom Website Design</li>
<li><i class="fas fa-check-circle"></i> Responsive Layout</li>
<li><i class="fas fa-check-circle"></i> SEO Optimization</li>
<li><i class="fas fa-times-circle"></i> E-commerce Functionality</li>
<li><i class="fas fa-times-circle"></i> CMS Integration</li>
</ul>
<a href="#contact" class="plan-button">Get Started</a>
</div>
<!-- Pricing Card 2 -->
<div class="pricing-card popular">
<div class="pricing-header">
<h3 class="plan-title">Standard</h3>
<p class="plan-price">$710</p>
<p class="plan-duration">One-time payment</p>
</div>
<ul class="plan-features">
<li><i class="fas fa-check-circle"></i> Custom Website Design</li>
<li><i class="fas fa-check-circle"></i> Responsive Layout</li>
<li><i class="fas fa-check-circle"></i> SEO Optimization</li>
<li><i class="fas fa-check-circle"></i> E-commerce Functionality</li>
<li><i class="fas fa-times-circle"></i> CMS Integration</li>
</ul>
<a href="#contact" class="plan-button">Get Started</a>
<div class="most-popular-badge">Most Popular</div>
</div>
<!-- Pricing Card 3 -->
<div class="pricing-card">
<div class="pricing-header">
<h3 class="plan-title">Premium</h3>
<p class="plan-price">$1180</p>
<p class="plan-duration">One-time payment</p>
</div>
<ul class="plan-features">
<li><i class="fas fa-check-circle"></i> Custom Website Design</li>
<li><i class="fas fa-check-circle"></i> Responsive Layout</li>
<li><i class="fas fa-check-circle"></i> SEO Optimization</li>
<li><i class="fas fa-check-circle"></i> E-commerce Functionality</li>
<li><i class="fas fa-check-circle"></i> CMS Integration</li>
</ul>
<a href="#contact" class="plan-button">Get Started</a>
</div>
</div>
<div class="view-all2" data-aos="fade-up" data-aos-delay="600">
<a href="https://webpricing-xi.vercel.app/" class="view-more-button2">View More</a>
</div>
</section>
<!-- Trusted By Visionaries Section -->
<section class="trusted-section" id="trusted">
<h2 class="trusted-title" data-aos="fade-up">TRUSTED BY VISIONARIES</h2>
<p class="trusted-subtitle" data-aos="fade-up" data-aos-delay="200">
Empowering brands with cutting-edge solutions
</p>
<div class="logos-container" data-aos="fade-up" data-aos-delay="400">
<div class="logos-slider">
<!-- Logos Repeated for Infinite Scroll -->
<div class="logo-item">
<img src="logo/cybersage2.png" alt="Brand 1" class="logo-dark">
<img src="logo/cybersage2.png" alt="Brand 1" class="logo-light">
</div>
<div class="logo-item">
<img src="logo/Kic's-Logo-Transparent.png" alt="Brand 2" class="logo-light">
<img src="logo/kicswhite.png" alt="Brand 2" class="logo-dark">
</div>
<div class="logo-item">
<img src="logo/icon.png" alt="Brand 3" class="logo-light">
<img src="logo/icon.png" alt="Brand 3" class="logo-dark">
</div>
<div class="logo-item">
<img src="logo/RokeylaSecondaryLogoBlack.png" alt="Brand 4" class="logo-light">
<img src="logo/RokeylaSecondaryLogoWhite.png" alt="Brand 4" class="logo-dark">
</div>
<div class="logo-item">
<img src="logo/samdus trans.png" alt="Brand 5" class="logo-light">
<img src="logo/samdus_white.png" alt="Brand 5" class="logo-dark">
</div>
<div class="logo-item">
<img src="logo/tech2.png" alt="Brand 6" class="logo-light">
<img src="logo/techwhite.png" alt="Brand 6" class="logo-dark">
</div>
<!-- Duplicate Logos for Smooth Infinite Scrolling -->
<div class="logo-item">
<img src="logo/cybersage2.png" alt="Brand 1" class="logo-dark">
<img src="logo/cybersage2.png" alt="Brand 1" class="logo-light">
</div>
<div class="logo-item">
<img src="logo/Kic's-Logo-Transparent.png" alt="Brand 2" class="logo-light">
<img src="logo/kicswhite.png" alt="Brand 2" class="logo-dark">
</div>
<div class="logo-item">
<img src="logo/icon.png" alt="Brand 3">
</div>
<div class="logo-item">
<img src="logo/RokeylaSecondaryLogoBlack.png" alt="Brand 4" class="logo-light">
<img src="logo/RokeylaSecondaryLogoWhite.png" alt="Brand 4" class="logo-dark">
</div>
<div class="logo-item">
<img src="logo/samdus trans.png" alt="Brand 5" class="logo-light">
<img src="logo/samdus_white.png" alt="Brand 5" class="logo-dark">
</div>
<div class="logo-item">
<img src="logo/tech2.png" alt="Brand 6" class="logo-light">
<img src="logo/techwhite.png" alt="Brand 6" class="logo-dark">
</div>
</div>
</div>
</section>
<!-- Praises From Clients Section -->
<section class="testimonials-section" id="testimonials">
<h2 class="section-title" data-aos="fade-up">PRAISES FROM CLIENTS</h2>
<p class="section-subtitle" data-aos="fade-up" data-aos-delay="200">
Hear what our visionary partners have to say
</p>
<div class="testimonials-container" data-aos="fade-up" data-aos-delay="400">
<!-- Testimonial Item 1 -->
<div class="testimonial-item">
<div class="testimonial-card">
<div class="client-photo-wrapper">
<img src="avatar/av3.webp" alt="Hycinth" class="client-photo">
</div>
<p class="testimonial-text">
"Working with Carrington was a transformative experience. Our company's online presence has never been stronger."
</p>
<div class="client-details">
<h3 class="client-name">Hycinth</h3>
<p class="client-position">CEO, SAMDUS Oil and Gas Limited</p>
</div>
</div>
</div>
<!-- Testimonial Item 2 -->
<div class="testimonial-item">
<div class="testimonial-card">
<div class="client-photo-wrapper">
<img src="avatar/av4.jpg" alt="Chief Kenneth" class="client-photo">
</div>
<p class="testimonial-text">
"Carrington exceeded our expectations. The e-commerce platform they developed boosted our sales tremendously."
</p>
<div class="client-details">
<h3 class="client-name">Chief Kenneth</h3>
<p class="client-position">CEO, ROKEYLA Fashion Store</p>
</div>
</div>
</div>
<!-- Testimonial Item 3 -->
<div class="testimonial-item">
<div class="testimonial-card">
<div class="client-photo-wrapper">
<img src="avatar/av5.jpg" alt="Avi" class="client-photo">
</div>
<p class="testimonial-text">
"Their attention to detail and innovative solutions set them apart. Our website is both functional and beautiful."
</p>
<div class="client-details">
<h3 class="client-name">Avi</h3>
<p class="client-position">CEO, All A Handyman & Contractor</p>
</div>
</div>
</div>
<!-- Testimonial Item 4 -->
<div class="testimonial-item">
<div class="testimonial-card">
<div class="client-photo-wrapper">
<img src="avatar/av1.webp" alt="Halima" class="client-photo">
</div>
<p class="testimonial-text">
"CyberSage delivered a top-notch CMS for our travel agency. It's user-friendly and has enhanced our client engagement."
</p>
<div class="client-details">
<h3 class="client-name">Halima</h3>
<p class="client-position">Executive Director, Amanigo Travel Agency</p>
</div>
</div>
</div>
</div>
<!-- Carousel Navigation -->
<div class="carousel-nav">
<button class="nav-button prev" aria-label="Previous Testimonial"><i class="fas fa-arrow-left"></i></button>
<button class="nav-button next" aria-label="Next Testimonial"><i class="fas fa-arrow-right"></i></button>
</div>
</section>
<!-- Contact Us Section -->
<section class="contact-section" id="contact">
<h2 class="section-title" data-aos="fade-up">Contact Us</h2>
<p class="section-subtitle" data-aos="fade-up" data-aos-delay="200">
We'd love to hear from you! Reach out to discuss how we can collaborate.
</p>
<div class="contact-container">
<!-- Card -->
<div class="card1" data-aos="fade-up" data-aos-delay="400">
<div class="bg"></div>
<div class="blob"></div>
<div class="card-content">
<h3>Stay Connected</h3>
<p>Follow us on our social platforms to stay updated with the latest news and updates.</p>
<div class="social-media">
<a href="" aria-label="Google"><i class="fab fa-google"></i></a>
<a href="https://www.linkedin.com/in/carrington-abakwe-b0b0a0217" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="https://x.com/CarlSwitch_CHUG?t=mVqSP_wXbVTsCJd573PGcg&s=09" aria-label="X"><i class="fab fa-xing"></i></a>
<a href="https://github.com/donrington" aria-label="X"><i class="fab fa-github"></i></a>
<a href="https://wa.me/2347025495506" aria-label="Whatsapp"><i class="fab fa-whatsapp"></i></a>
</div>
</div>
</div>
<!-- Contact Form -->
<div class="form-container" data-aos="fade-up" data-aos-delay="600">
<form class="form" id="contactForm" action="https://formsubmit.co/[email protected]" method="POST">
<input type="hidden" name="_captcha" value="false">
<input type="hidden" name="_template" value="table">
<div class="form-group">
<label for="email">Company Email<span class="required">*</span></label>
<input type="email" id="email" name="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<label for="phone">Phone Number<span class="required">*</span></label>
<input type="tel" id="phone" name="phone" placeholder="Your Phone Number" required>
</div>
<div class="form-group">
<label for="message">How Can We Help You?<span class="required">*</span></label>
<textarea id="message" name="message" rows="5" placeholder="Your Message" required></textarea>
</div>
<button type="submit" class="form-submit-btn">Submit</button>
</form>
<p class="form-message" id="formMessage"></p>