-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
696 lines (590 loc) · 31.5 KB
/
index.html
File metadata and controls
696 lines (590 loc) · 31.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CODEDDEVS TECHNOLOGY LTD — Engineering Software That Works for Africa</title>
<meta name="description"
content="CODEDDEVS TECHNOLOGY LTD is a Nigerian technology company that designs, develops, and operates software platforms, web applications, and digital products for African markets. Headquartered in Lagos, CAC registered, 3× Hackathon winners." />
<meta name="keywords"
content="CODEDDEVS, Nigerian tech company, software development, web applications, SaaS, African technology, twizrr, Lagos startup" />
<meta property="og:title" content="CODEDDEVS TECHNOLOGY LTD" />
<meta property="og:description"
content="Engineering Software That Works for Africa. We design, build, and operate software platforms, web applications, and digital products from first principles." />
<meta property="og:type" content="website" />
<meta name="robots" content="index, follow" />
<!-- Google Fonts: Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
background: '#0A0F1E',
surface: '#111827',
'text-primary': '#F9FAFB',
'text-muted': '#9CA3AF',
'accent-blue': '#2563EB',
'accent-hover': '#1D4ED8',
border: '#1E2A45',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
}
</script>
<style>
* {
font-family: 'Inter', sans-serif;
}
html {
background-color: #0A0F1E;
}
/* Subtle gradient on hero text */
.hero-gradient {
background: linear-gradient(135deg, #F9FAFB 0%, #CBD5E1 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Nav blur glass effect */
.nav-glass {
background: rgba(10, 15, 30, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid #1E2A45;
}
/* Fade-up animation */
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(24px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-up {
animation: fadeUp 0.7s ease both;
}
.fade-up-1 {
animation-delay: 0.1s;
}
.fade-up-2 {
animation-delay: 0.2s;
}
.fade-up-3 {
animation-delay: 0.35s;
}
.fade-up-4 {
animation-delay: 0.5s;
}
.fade-up-5 {
animation-delay: 0.65s;
}
/* Mobile menu transition */
#mobile-menu {
transition: max-height 0.3s ease, opacity 0.3s ease;
max-height: 0;
opacity: 0;
overflow: hidden;
}
#mobile-menu.open {
max-height: 400px;
opacity: 1;
}
/* Hover link underline effect */
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1px;
background: #2563EB;
transition: width 0.25s ease;
}
.nav-link:hover::after {
width: 100%;
}
/* Stat item */
.stat-item {
border-left: 2px solid #2563EB;
padding-left: 1rem;
}
/* Achievement row hover */
.achievement-row:hover {
background: rgba(37, 99, 235, 0.04);
}
/* Smooth blue glow on primary btn */
.btn-primary {
box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
transition: box-shadow 0.3s ease, background 0.2s ease;
}
.btn-primary:hover {
box-shadow: 0 0 24px 4px rgba(37, 99, 235, 0.25);
}
/* Contact column hover */
.contact-col:hover {
border-color: #2563EB;
}
</style>
</head>
<body class="bg-background text-text-primary antialiased">
<!-- ═══════════════════════════════════════ HEADER ═══ -->
<header id="header" class="nav-glass fixed top-0 left-0 right-0 z-50">
<div class="max-w-5xl mx-auto px-6 h-16 flex items-center justify-between">
<!-- Logo -->
<a href="#" class="text-text-primary font-bold text-lg tracking-tight select-none">CODEDDEVS</a>
<!-- Desktop Nav -->
<nav class="hidden md:flex items-center gap-8" role="navigation" aria-label="Main navigation">
<a href="#company"
class="nav-link text-text-muted hover:text-text-primary text-sm font-medium transition-colors duration-200">Company</a>
<a href="#products"
class="nav-link text-text-muted hover:text-text-primary text-sm font-medium transition-colors duration-200">Products</a>
<a href="#team"
class="nav-link text-text-muted hover:text-text-primary text-sm font-medium transition-colors duration-200">Team</a>
<a href="#contact"
class="nav-link text-text-muted hover:text-text-primary text-sm font-medium transition-colors duration-200">Contact</a>
<a href="https://twizrr.com" target="_blank" rel="noopener noreferrer" id="nav-twizrr-btn"
class="btn-primary bg-accent-blue hover:bg-accent-hover text-white text-sm font-medium px-4 py-2 rounded-lg transition-colors duration-200 flex items-center gap-1">
twizrr.com
<svg xmlns="http://www.w3.org/2000/svg" class="w-3.5 h-3.5" fill="none" viewBox="0 0 24 24" stroke-width="2"
stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round"
d="M13.5 6H5.25A2.25 2.25 0 003 8.25v10.5A2.25 2.25 0 005.25 21h10.5A2.25 2.25 0 0018 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" />
</svg>
</a>
</nav>
<!-- Mobile hamburger -->
<button id="menu-btn" aria-label="Open navigation menu" aria-expanded="false" aria-controls="mobile-menu"
class="md:hidden text-text-muted hover:text-text-primary transition-colors p-1">
<svg id="icon-open" xmlns="http://www.w3.org/2000/svg" class="w-6 h-6" fill="none" viewBox="0 0 24 24"
stroke-width="1.8" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
</svg>
<svg id="icon-close" xmlns="http://www.w3.org/2000/svg" class="w-6 h-6 hidden" fill="none" viewBox="0 0 24 24"
stroke-width="1.8" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" role="navigation" aria-label="Mobile navigation">
<div class="max-w-5xl mx-auto px-6 pb-4 flex flex-col gap-1 border-t border-border">
<a href="#company"
class="text-text-muted hover:text-text-primary text-sm font-medium py-3 border-b border-border transition-colors">Company</a>
<a href="#products"
class="text-text-muted hover:text-text-primary text-sm font-medium py-3 border-b border-border transition-colors">Products</a>
<a href="#team"
class="text-text-muted hover:text-text-primary text-sm font-medium py-3 border-b border-border transition-colors">Team</a>
<a href="#contact"
class="text-text-muted hover:text-text-primary text-sm font-medium py-3 border-b border-border transition-colors">Contact</a>
<a href="https://twizrr.com" target="_blank" rel="noopener noreferrer"
class="mt-3 btn-primary bg-accent-blue hover:bg-accent-hover text-white text-sm font-medium px-4 py-3 rounded-lg transition-colors text-center">
twizrr.com ↗
</a>
</div>
</div>
</header>
<main>
<!-- ═══════════════════════════════════════ HERO ═══ -->
<section id="hero" class="pt-40 pb-28 px-6" aria-labelledby="hero-heading">
<div class="max-w-5xl mx-auto">
<!-- Label -->
<p class="fade-up fade-up-1 text-xs font-semibold uppercase tracking-widest text-accent-blue mb-6">
CODEDDEVS TECHNOLOGY LTD · LAGOS, NIGERIA · EST. 2026
</p>
<!-- Main headline -->
<h1 id="hero-heading"
class="fade-up fade-up-2 hero-gradient text-5xl sm:text-6xl lg:text-7xl font-bold leading-[1.1] tracking-tight mb-6">
Engineering Software<br />That Works for Africa
</h1>
<!-- Body text -->
<p class="fade-up fade-up-3 text-text-muted text-lg leading-relaxed max-w-2xl mb-10">
We design, develop, and operate software platforms, web applications, <br class="hidden sm:block" />
and digital technology products for African markets. Products designed <br class="hidden sm:block" />
from first principles — not adapted from tools built elsewhere.
</p>
<!-- Buttons -->
<div class="fade-up fade-up-4 flex flex-wrap gap-4 mb-10">
<a href="#products" id="hero-products-btn"
class="btn-primary bg-accent-blue hover:bg-accent-hover text-white font-medium px-6 py-3 rounded-lg transition-colors duration-200 flex items-center gap-2">
Our Products
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4" fill="none" viewBox="0 0 24 24" stroke-width="2"
stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3" />
</svg>
</a>
<a href="#contact" id="hero-contact-btn"
class="border border-accent-blue text-accent-blue hover:bg-accent-blue hover:text-white font-medium px-6 py-3 rounded-lg transition-all duration-200">
Contact Us
</a>
</div>
<!-- Divider -->
<hr class="fade-up fade-up-5 border-border mb-8" />
<!-- Trust line -->
<p class="fade-up fade-up-5 text-text-muted text-sm flex flex-wrap gap-x-4 gap-y-2 items-center">
<span>🏆 3× Hackathon Winners</span>
<span class="text-border hidden sm:inline">·</span>
<span>📍 Lagos, Nigeria</span>
<span class="text-border hidden sm:inline">·</span>
<span>CAC Registered · RC 9426867</span>
</p>
</div>
</section>
<!-- ═══════════════════════════════════════ PRODUCTS ═══ -->
<section id="products" class="py-24 px-6 border-t border-border" aria-labelledby="products-heading">
<div class="max-w-5xl mx-auto">
<p class="text-xs font-semibold uppercase tracking-widest text-accent-blue mb-4">WHAT WE ARE BUILDING</p>
<h2 id="products-heading" class="text-4xl lg:text-5xl font-bold text-text-primary leading-tight mb-5">
One Product Live.<br />More in Development.
</h2>
<p class="text-text-muted text-base leading-relaxed max-w-xl mb-16">
Every software product we build starts with one question: what is broken for African businesses and consumers,
and how do we engineer a real fix?
</p>
<!-- twizrr entry -->
<div class="pb-10 mb-10 border-b border-border">
<div class="flex flex-wrap items-center gap-3 mb-3">
<span class="text-text-primary font-bold text-2xl">twizrr</span>
<span
class="text-xs font-semibold uppercase tracking-widest text-accent-blue border border-accent-blue border-opacity-40 px-2 py-0.5 rounded">FLAGSHIP</span>
</div>
<p class="text-text-muted text-xs uppercase tracking-wide mb-1">Social Commerce · Marketplace</p>
<p class="text-text-muted text-sm mb-2 flex items-center gap-2">
<span class="w-2 h-2 rounded-full bg-green-500 inline-block"></span>
Launching May 2026
</p>
<p class="text-text-primary text-base leading-relaxed max-w-2xl mb-4">
A social commerce marketplace for Nigerian businesses — sell on WhatsApp, get paid with escrow protection,
build a verified store. Zero setup cost.
</p>
<a href="https://twizrr.com" target="_blank" rel="noopener noreferrer" id="products-twizrr-link"
class="inline-flex items-center gap-1.5 text-accent-blue hover:text-accent-hover text-sm font-medium transition-colors group">
twizrr.com
<svg xmlns="http://www.w3.org/2000/svg"
class="w-3.5 h-3.5 transition-transform group-hover:translate-x-0.5 group-hover:-translate-y-0.5"
fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round"
d="M13.5 6H5.25A2.25 2.25 0 003 8.25v10.5A2.25 2.25 0 005.25 21h10.5A2.25 2.25 0 0018 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" />
</svg>
</a>
</div>
<!-- Undisclosed next product -->
<div>
<div class="flex flex-wrap items-center gap-3 mb-3">
<span class="text-text-muted font-bold text-2xl italic">[Undisclosed]</span>
</div>
<p class="text-text-muted text-xs uppercase tracking-wide mb-1">In Research</p>
<p class="text-text-muted text-sm mb-3 flex items-center gap-2">
<span class="w-2 h-2 rounded-full bg-blue-400 inline-block"></span>
In Development
</p>
<p class="text-text-muted text-base leading-relaxed">
Next product in early research and development.
</p>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════ RECOGNITION ═══ -->
<section id="recognition" class="py-24 px-6 border-t border-border" aria-labelledby="recognition-heading">
<div class="max-w-5xl mx-auto">
<p class="text-xs font-semibold uppercase tracking-widest text-accent-blue mb-4">RECOGNITION</p>
<h2 id="recognition-heading" class="text-4xl lg:text-5xl font-bold text-text-primary leading-tight mb-5">
Three Hackathons.<br />Three Podium Finishes.
</h2>
<p class="text-text-muted text-base leading-relaxed max-w-2xl mb-16">
Competing against engineering teams across Africa,
CODEDDEVS has won or placed in every hackathon
we have entered — including two continental first-place
finishes powered by Africa's Talking and Google.
</p>
<!-- Achievement entries -->
<div class="flex flex-col divide-y divide-border">
<div class="achievement-row py-8 transition-colors duration-200 rounded-sm px-2 -mx-2">
<div class="flex items-start gap-5">
<span class="text-3xl flex-shrink-0">🥇</span>
<div>
<p class="text-text-primary font-semibold text-lg mb-1">1st Place</p>
<p class="text-text-primary font-medium mb-1">Build with AI — Generative AI + APIs Across Africa</p>
<p class="text-text-muted text-sm">Powered by Africa's Talking & Google</p>
<p class="text-text-muted text-sm mt-1">Lagos, Nigeria · 2026</p>
</div>
</div>
</div>
<div class="achievement-row py-8 transition-colors duration-200 rounded-sm px-2 -mx-2">
<div class="flex items-start gap-5">
<span class="text-3xl flex-shrink-0">🥉</span>
<div>
<p class="text-text-primary font-semibold text-lg mb-1">3rd Place</p>
<p class="text-text-primary font-medium mb-1">Africa's Talking Open Hackathon</p>
<p class="text-text-muted text-sm">Hardware Solutions with Africa's Talking APIs</p>
<p class="text-text-muted text-sm mt-1">Abuja, Nigeria · 2026</p>
</div>
</div>
</div>
<div class="achievement-row py-8 transition-colors duration-200 rounded-sm px-2 -mx-2">
<div class="flex items-start gap-5">
<span class="text-3xl flex-shrink-0">🥇</span>
<div>
<p class="text-text-primary font-semibold text-lg mb-1">1st Place</p>
<p class="text-text-primary font-medium mb-1">Africa's Talking & Google Build with AI Programme
Finale</p>
<p class="text-text-muted text-sm">Virtual · Kenya, Nigeria & South Africa · 2026</p>
</div>
</div>
</div>
</div>
<p class="text-text-muted text-sm italic mt-10">
"Recognised across Lagos, Abuja, and the virtual continental stage — three competitions, three results."
</p>
</div>
</section>
<!-- ═══════════════════════════════════════ COMPANY ═══ -->
<section id="company" class="py-24 px-6 border-t border-border" aria-labelledby="company-heading">
<div class="max-w-5xl mx-auto">
<p class="text-xs font-semibold uppercase tracking-widest text-accent-blue mb-4">THE COMPANY</p>
<h2 id="company-heading" class="text-4xl lg:text-5xl font-bold text-text-primary leading-tight mb-8">
Built in Lagos.<br />Thinking Continentally.
</h2>
<div class="max-w-2xl space-y-5 mb-16">
<p class="text-text-muted text-base leading-relaxed">
CODEDDEVS TECHNOLOGY LTD is a Nigerian technology company incorporated in March 2026 under the
Companies and Allied Matters Act (CAMA) 2020.
We are headquartered in Lagos — Africa's largest technology ecosystem.
</p>
<p class="text-text-muted text-base leading-relaxed">
We exist because the software platforms and digital solutions African businesses and consumers need cannot be imported from elsewhere.
They have to be engineered here, by people who understand this market from the inside.
</p>
</div>
<!-- Stats row -->
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 mb-8">
<div class="stat-item">
<p class="text-text-muted text-xs uppercase tracking-wide mb-1">Founded</p>
<p class="text-text-primary font-semibold text-lg">2026</p>
</div>
<div class="stat-item">
<p class="text-text-muted text-xs uppercase tracking-wide mb-1">Headquarters</p>
<p class="text-text-primary font-semibold text-lg">Lagos, Nigeria</p>
</div>
<div class="stat-item">
<p class="text-text-muted text-xs uppercase tracking-wide mb-1">Registered</p>
<p class="text-text-primary font-semibold text-lg">CAC · RC 9426867</p>
</div>
<div class="stat-item">
<p class="text-text-muted text-xs uppercase tracking-wide mb-1">Products</p>
<p class="text-text-primary font-semibold text-lg">1 Live</p>
</div>
</div>
<p class="text-text-muted text-xs">
CODEDDEVS TECHNOLOGY LTD · Incorporated under CAMA 2020
</p>
</div>
</section>
<!-- ═══════════════════════════════════════ TEAM ═══ -->
<section id="team" class="py-24 px-6 border-t border-border" aria-labelledby="team-heading">
<div class="max-w-5xl mx-auto">
<p class="text-xs font-semibold uppercase tracking-widest text-accent-blue mb-4">LEADERSHIP</p>
<h2 id="team-heading" class="text-4xl lg:text-5xl font-bold text-text-primary leading-tight mb-16">
The Team
</h2>
<div class="flex flex-col divide-y divide-border">
<!-- Kareem -->
<div class="py-8 flex items-start gap-6">
<div
class="w-12 h-12 rounded-full bg-surface border border-border flex-shrink-0 flex items-center justify-center">
<span class="text-text-muted text-sm font-semibold">KA</span>
</div>
<div>
<p class="text-text-primary font-semibold text-lg">Kareem Aliameen</p>
<p class="text-accent-blue text-sm font-medium mb-1">Founder & CEO</p>
<p class="text-text-muted text-sm italic">"Fullstack engineer. Product architect."</p>
</div>
</div>
<!-- Yusuf -->
<div class="py-8 flex items-start gap-6">
<div
class="w-12 h-12 rounded-full bg-surface border border-border flex-shrink-0 flex items-center justify-center">
<span class="text-text-muted text-sm font-semibold">YA</span>
</div>
<div>
<p class="text-text-primary font-semibold text-lg">Yusuf Ibrahim Ayinla</p>
<p class="text-accent-blue text-sm font-medium mb-1">Co-Founder & CTO</p>
<p class="text-text-muted text-sm italic">"Infrastructure engineer. Systems thinker."</p>
</div>
</div>
<!-- Mustakheem -->
<div class="py-8 flex items-start gap-6">
<div
class="w-12 h-12 rounded-full bg-surface border border-border flex-shrink-0 flex items-center justify-center">
<span class="text-text-muted text-sm font-semibold">AM</span>
</div>
<div>
<p class="text-text-primary font-semibold text-lg">Amoo Mustakheem Olamilekan</p>
<p class="text-accent-blue text-sm font-medium mb-1">Co-Founder & COO</p>
<p class="text-text-muted text-sm italic">"Operations and growth lead."</p>
</div>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════ CONTACT ═══ -->
<section id="contact" class="py-24 px-6 border-t border-border" aria-labelledby="contact-heading">
<div class="max-w-5xl mx-auto">
<p class="text-xs font-semibold uppercase tracking-widest text-accent-blue mb-4">CONTACT</p>
<h2 id="contact-heading" class="text-4xl lg:text-5xl font-bold text-text-primary leading-tight mb-16">
Talk to Us
</h2>
<!-- Contact columns -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-12">
<div class="contact-col border border-border rounded-xl p-6 bg-surface transition-colors duration-200">
<p class="text-text-primary font-semibold mb-2">Investors</p>
<p class="text-text-muted text-sm leading-relaxed mb-4">
"We are building real infrastructure for a large, underserved market."
</p>
<a href="mailto:codeddevs.team@gmail.com" id="contact-investors-email"
class="text-accent-blue text-sm font-medium hover:text-accent-hover transition-colors">
invest@codeddevs.com
</a>
</div>
<div class="contact-col border border-border rounded-xl p-6 bg-surface transition-colors duration-200">
<p class="text-text-primary font-semibold mb-2">Press & Media</p>
<p class="text-text-muted text-sm leading-relaxed mb-4">
"We have a story worth telling."
</p>
<a href="mailto:codeddevs.team@gmail.com" id="contact-press-email"
class="text-accent-blue text-sm font-medium hover:text-accent-hover transition-colors">
press@codeddevs.com
</a>
</div>
<div class="contact-col border border-border rounded-xl p-6 bg-surface transition-colors duration-200">
<p class="text-text-primary font-semibold mb-2">General</p>
<p class="text-text-muted text-sm leading-relaxed mb-4">
"Partnerships, integrations, or just a conversation."
</p>
<a href="mailto:codeddevs.team@gmail.com" id="contact-general-email"
class="text-accent-blue text-sm font-medium hover:text-accent-hover transition-colors">
hello@codeddevs.com
</a>
</div>
</div>
<p class="text-text-muted text-sm italic mb-2">
For twizrr merchant enquiries, visit
<a href="https://twizrr.com" target="_blank" rel="noopener noreferrer"
class="text-accent-blue hover:text-accent-hover transition-colors">twizrr.com ↗</a>
</p>
<p class="text-text-muted text-sm">
📍 CODEDDEVS TECHNOLOGY LTD · Lagos, Nigeria
</p>
</div>
</section>
</main>
<!-- ═══════════════════════════════════════ FOOTER ═══ -->
<footer class="border-t border-border pt-12 pb-8 px-6" role="contentinfo">
<div class="max-w-5xl mx-auto">
<!-- Three column footer -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-10 mb-10">
<!-- Left: Company info -->
<div>
<p class="text-text-primary font-bold text-base mb-2">CODEDDEVS TECHNOLOGY LTD</p>
<p class="text-text-muted text-sm mb-0.5">RC: 9426867 · Lagos, Nigeria</p>
<p class="text-text-muted text-sm">Est. 2026</p>
</div>
<!-- Centre: Links -->
<div>
<p class="text-text-muted text-xs uppercase tracking-widest mb-4">Navigation</p>
<div class="flex flex-wrap gap-x-4 gap-y-2">
<a href="#company" class="text-text-muted hover:text-text-primary text-sm transition-colors">Company</a>
<a href="#products" class="text-text-muted hover:text-text-primary text-sm transition-colors">Products</a>
<a href="#team" class="text-text-muted hover:text-text-primary text-sm transition-colors">Team</a>
<a href="#contact" class="text-text-muted hover:text-text-primary text-sm transition-colors">Contact</a>
<a href="https://twizrr.com" target="_blank" rel="noopener noreferrer"
class="text-accent-blue hover:text-accent-hover text-sm transition-colors">twizrr.com ↗</a>
</div>
</div>
<!-- Right: Social links -->
<div>
<p class="text-text-muted text-xs uppercase tracking-widest mb-4">Follow Us</p>
<div class="flex flex-wrap gap-x-4 gap-y-2">
<a href="https://x.com/codeddevs" target="_blank" rel="noopener noreferrer" id="footer-x-link"
class="text-text-muted hover:text-text-primary text-sm transition-colors flex items-center gap-1.5">
<svg class="w-4 h-4" viewBox="0 0 24 24" fill="currentColor" aria-label="X (formerly Twitter)">
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.748l7.73-8.835L1.254 2.25H8.08l4.259 5.632zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
X
</a>
<a href="https://linkedin.com/company/codeddevs" target="_blank" rel="noopener noreferrer"
id="footer-linkedin-link"
class="text-text-muted hover:text-text-primary text-sm transition-colors flex items-center gap-1.5">
<svg class="w-4 h-4" viewBox="0 0 24 24" fill="currentColor" aria-label="LinkedIn">
<path
d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z" />
</svg>
LinkedIn
</a>
<a href="https://instagram.com/codeddevs" target="_blank" rel="noopener noreferrer"
id="footer-instagram-link"
class="text-text-muted hover:text-text-primary text-sm transition-colors flex items-center gap-1.5">
<svg class="w-4 h-4" viewBox="0 0 24 24" fill="currentColor" aria-label="Instagram">
<path
d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z" />
</svg>
Instagram
</a>
<a href="https://github.com/codeddevs" target="_blank" rel="noopener noreferrer" id="footer-github-link"
class="text-text-muted hover:text-text-primary text-sm transition-colors flex items-center gap-1.5">
<svg class="w-4 h-4" viewBox="0 0 24 24" fill="currentColor" aria-label="GitHub">
<path
d="M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0112 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z" />
</svg>
GitHub
</a>
</div>
</div>
</div>
<!-- Bottom strip -->
<div class="border-t border-border pt-6">
<p class="text-text-muted text-xs text-center">
© 2026 CODEDDEVS TECHNOLOGY LTD. All rights reserved.
</p>
</div>
</div>
</footer>
<!-- Mobile menu JS -->
<script>
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
const iconOpen = document.getElementById('icon-open');
const iconClose = document.getElementById('icon-close');
menuBtn.addEventListener('click', () => {
const isOpen = mobileMenu.classList.toggle('open');
menuBtn.setAttribute('aria-expanded', isOpen);
iconOpen.classList.toggle('hidden', isOpen);
iconClose.classList.toggle('hidden', !isOpen);
});
// Close mobile menu on nav link click
mobileMenu.querySelectorAll('a').forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.remove('open');
menuBtn.setAttribute('aria-expanded', 'false');
iconOpen.classList.remove('hidden');
iconClose.classList.add('hidden');
});
});
</script>
</body>
</html>