-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
579 lines (382 loc) · 16.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
- primary meta tags
-->
<title>afridevelopers|Tech</title>
<meta name="title" content="Afri-X">
<meta name="description" content="Organization Webpage">
<!--
- favicon
-->
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
<!--
- google font link
-->
<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=Manrope:wght@500;700&display=swap" rel="stylesheet">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- preload images
-->
<link rel="preload" as="image" href="./assets/images/hero-banner.jpg">
<link rel="preload" as="image" href="./assets/images/Blog.svg">
</head>
<body>
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<a href="#" class="logo">
<img src="./assets/images/logo-dark.png" width="64" height="24" alt="Afri-X">
</a>
<nav class="navbar" data-navbar>
<div class="navbar-top">
<a href="#" class="logo">
<img src="" width="64" height="24" alt="afridevelopers">
</a>
<button class="nav-close-btn" aria-label="close menu" data-nav-toggler>
<ion-icon name="close-outline" aria-hidden="true"></ion-icon>
</button>
</div>
<ul class="navbar-list">
<li>
<a href="#" class="navbar-link">Home</a>
</li>
<li>
<a href="#About" class="navbar-link">About</a>
</li>
<li>
<a href="#Services" class="navbar-link">Services</a>
</li>
<li>
<a href="#Write-Ups" class="navbar-link">Write-Ups</a>
</li>
<li>
<a href="#Contact" class="navbar-link">Contact</a>
</li>
</ul>
<div class="wrapper">
<a href="[email protected]" class="contact-link">[email protected]</a>
<a href="tel:+254705383588" class="contact-link">+254705383588</a>
</div>
<ul class="social-list">
<li>
<a href="https://www.linkedin.com/company/a-frix/mycompany/" class="social-link" target="blank">
<ion-icon name="logo-linkedin"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
</ul>
</nav>
<button class="nav-open-btn" aria-label="open menu" data-nav-toggler>
<ion-icon name="menu-outline" aria-hidden="true"></ion-icon>
</button>
<div class="overlay" data-nav-toggler data-overlay></div>
</div>
</header>
<main>
<article>
<!--
- #HERO
-->
<section class="section hero" aria-label="home">
<div class="container">
<figure class="hero-banner">
<img src="./assets/images/hero-banner.jpg" width="560" height="540" alt="Utpal" class="w-100"
data-reveal="top">
<img src="./assets/images/hero-shape.svg" width="203" height="91" alt="120+ Projects Done" class="shape"
data-reveal="top" data-reveal-delay="0.25s">
</figure>
<div class="hero-content">
<h1 class="h1 hero-title" data-reveal="top" data-reveal-delay="0.5s">
We offer Software & Cybersecurity Solutions.
</h1>
<p class="section-text" data-reveal="top" data-reveal-delay="0.75s">
We are dedicated to transforming Africa's digital landscape with our comprehensive range of Software and Cybersecurity Solutions.
</p>
<div class="btn-wrapper" data-reveal="top" data-reveal-delay="1s">
<a href="#" class="btn btn-primary">Our Works</a>
<a href="#" class="btn btn-secondary">Contact Us</a>
</div>
</div>
</div>
</section>
<!--
- #ABOUT
-->
<section class="section about" aria-label="about">
<div class="container">
<div class="wrapper">
<div data-reveal="left">
<h2 class="h2 section-title">What We Do</h2>
<p class="section-text">
From bespoke applications to scalable enterprise software, we harness the latest technologies to develop high-performance, user-centric software solutions. Our agile approach ensures rapid deployment and seamless integration, empowering clients to stay ahead in today's fast-paced digital world.
</p>
</div>
<ul class="progress-list" data-reveal="right">
<li class="progress-item">
<div class="label-wrapper">
<p>Software Solutions</p>
<span class="span">100 %</span>
</div>
<div class="progress">
<div class="progress-fill" style="width: 100%; background-color: #c7b1dd"></div>
</div>
</li>
<li class="progress-item">
<div class="label-wrapper">
<p>Cybersecurity Solutions</p>
<span class="span">80 %</span>
</div>
<div class="progress">
<div class="progress-fill" style="width: 80%; background-color: #8caeec"></div>
</div>
</li>
<li class="progress-item">
<div class="label-wrapper">
<p>Development</p>
<span class="span">85 %</span>
</div>
<div class="progress">
<div class="progress-fill" style="width: 85%; background-color: #b0d4c1"></div>
</div>
</li>
<li class="progress-item">
<div class="label-wrapper">
<p>SEO</p>
<span class="span">90 %</span>
</div>
<div class="progress">
<div class="progress-fill" style="width: 90%; background-color: #e3a6b6"></div>
</div>
</li>
</ul>
</div>
<ul class="grid-list">
<li data-reveal="bottom">
<div class="about-card">
<div class="card-icon">
<img src="./assets/images/icon-1.svg" width="52" height="52" loading="lazy" alt="web design icon">
</div>
<h3 class="h4 card-title">Software Solutions</h3>
<p class="card-text">
Afri-X is a leading digital and technology company driving Africa's
progress through cutting-edge
Software Development Solutions.
</p>
</div>
</li>
<li data-reveal="bottom" data-reveal-delay="0.25s">
<div class="about-card">
<div class="card-icon">
<img src="./assets/images/icon-2.svg" width="52" height="52" loading="lazy" alt="mobile design icon">
</div>
<h3 class="h4 card-title">Cybersecurity</h3>
<p class="card-text">
Afri-X is a leading digital and technology company driving Africa's
progress through cutting-edge
and top-tier Cybersecurity Solutions.
</p>
</div>
</li>
<li data-reveal="bottom" data-reveal-delay="0.5s">
<div class="about-card">
<div class="card-icon">
<img src="./assets/images/icon-3.svg" width="52" height="52" loading="lazy"
alt="web development icon">
</div>
<h3 class="h4 card-title">Development</h3>
<p class="card-text">
Afri-X is a leading digital and technology company driving Africa's
progress through cutting-edge
Software Development Solutions and top-tier Cybersecurity Solutions.
</p>
</div>
</li>
<li data-reveal="bottom" data-reveal-delay="0.75s">
<div class="about-card">
<div class="card-icon">
<img src="./assets/images/icon-4.svg" width="52" height="52" loading="lazy" alt="web seo icon">
</div>
<h3 class="h4 card-title">SEO</h3>
<p class="card-text">
Our data-driven approach leverages advanced analytics to continuously
refine and optimize your SEO strategy,
delivering measurable and sustainable results.
</p>
</div>
</li>
</ul>
</div>
</section>
<!--
- #PROJECT
-->
<section class="section project" aria-labelledby="project-label">
<div class="container">
<div class="title-wrapper" data-reveal="top">
<div>
<h2 class="h2 section-title" id="project-label">Latest Projects</h2>
<p class="section-text">
Check out some of our latest projects with creative ideas.
</p>
</div>
<a href="#" class="btn btn-secondary">See All Projects</a>
</div>
<ul class="grid-list">
<li>
<div class="project-card project-card-1" style="background-color: #f8f5fb">
<div class="card-content" data-reveal="left">
<p class="card-tag" style="color: #a07cc5">Web Design</p>
<h3 class="h3 card-title">Snowlake Theme</h3>
<p class="card-text">
Afri-X is a leading digital and technology company driving Africa's progress through cutting-edge
Software Development Solutions and top-tier Cybersecurity Solutions.
</p>
<a href="#" class="btn-text" style="color: #a07cc5">
<span class="span">See Project</span>
<ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
</a>
</div>
<figure class="card-banner" data-reveal="right">
<img src="./assets/images/project-1.png" width="650" height="370" loading="lazy" alt="Web Design"
class="w-100">
</figure>
</div>
</li>
<li>
<div class="project-card project-card-2" style="background-color: #f1f5fd">
<div class="card-content" data-reveal="right">
<p class=" card-tag" style="color: #3f78e0">Mobile Design</p>
<h3 class="h3 card-title">Budget App</h3>
<p class="card-text">
Stay motivated with intuitive charts and graphs that display your spending patterns and savings growth. Our app puts your financial progress right at your fingertips.
</p>
<a href="#" class="btn-text" style="color: #3f78e0">
<span class="span">See Project</span>
<ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
</a>
</div>
<figure class="card-banner" data-reveal="left">
<img src="./assets/images/project-2.png" width="600" height="367" loading="lazy" alt="Web Design"
class="w-100">
</figure>
</div>
</li>
<li>
<div class="project-card project-card-3" style="background-color: #f5faf7">
<div class="card-content" data-reveal="left">
<p class=" card-tag" style="color: #7cb798">Web Design</p>
<h3 class="h3 card-title">Missio Theme</h3>
<p class="card-text">
With an array of customizable layouts and sections, effortlessly personalize your website to match your brand identity and capture your unique style.
</p>
<a href="#" class="btn-text" style="color: #7cb798">
<span class="span">See Project</span>
<ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
</a>
</div>
<figure class="card-banner" data-reveal="right">
<img src="./assets/images/project-3.png" width="600" height="367" loading="lazy" alt="Web Design"
class="w-100">
</figure>
</div>
</li>
<li>
<div class="project-card project-card-4" style="background-color: #fcf4f6">
<div class="card-content" data-reveal="left">
<p class=" card-tag" style="color: #d16b86">Mobile Design</p>
<h3 class="h3 card-title">Storage App</h3>
<p class="card-text">
Say goodbye to cluttered folders. The Afri-X Storage App provides a streamlined interface to organize files by categories, making retrieval a breeze.
</p>
<a href="#" class="btn-text" style="color: #d16b86">
<span class="span">See Project</span>
<ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
</a>
</div>
<figure class="card-banner" data-reveal="right">
<img src="./assets/images/project-4.png" width="620" height="370" loading="lazy" alt="Mobile Design"
class="w-100">
</figure>
</div>
</li>
</ul>
</div>
</section>
<!--
- #CONTACT
-->
<section class="section contact" aria-label="contact">
<div class="container">
<div class="contact-card">
<div class="contact-content" data-reveal="left">
<div class="card-icon">
<img src="./assets/images/icon-5.svg" width="44" height="44" loading="lazy" alt="envelop icon">
</div>
<h2 class="h2 section-title">If you like what you see, let's work together.</h2>
<p class="section-text">
We bring rapid solutions to make the life of my clients easier. Have any questions? Reach out to us from
this contact form and we will get back to you shortly.
</p>
</div>
<form action="" class="contact-form" data-reveal="right">
<div class="input-wrapper">
<input type="text" name="name" placeholder="Name *" required class="input-field">
<input type="email" name="email_address" placeholder="Email *" required class="input-field">
</div>
<textarea name="message" placeholder="Message *" required class="input-field"></textarea>
<button type="submit" class="btn btn-secondary">Send message</button>
</form>
</div>
</div>
</section>
</article>
</main>
<!--
- #FOOTER
-->
<footer class="footer">
<div class="container">
<p class="copyright">
© 2023 Afri-X. All rights reserved.
</p>
<ul class="social-list">
<li>
<a href="#" class="social-link">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
</ul>
</div>
</footer>
<!--
- custom js link
-->
<script src="./assets/js/script.js"></script>
<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>