-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex3.html
810 lines (733 loc) · 34.1 KB
/
index3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<link href="./css/styles.css" rel="stylesheet" />
<link href="https://github.com/skunkworksza/www/blob/main/assets/skunkworks/logo-skunkworks-trans%2040%20%C3%97%2040%20px.png?raw=true" rel="icon" type="image/png" />
<title>Welcome to Skunkworks: Innovative Technology and Education Solutions</title>
<style>
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #000000;
color: #fff;
}
/* Skip to main content link for accessibility */
.skip-to-content {
position: absolute;
top: -40px;
left: 0;
background: #000000;
color: white;
padding: 8px 16px;
z-index: 1000;
transition: top 0.3s ease;
}
.skip-to-content:focus {
top: 0;
}
/* Header Styling with Carbon Design System */
header {
background-color: #161616;
color: #ffffff;
padding: 16px 32px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
border-bottom: 1px solid #262626;
}
/* Custom Styling for Skunkworks Title */
.skunkworks-title {
color: #ffffff;
font-family: 'IBM Plex Sans', Arial, sans-serif;
font-weight: 700;
font-size: 2.5rem;
text-transform: uppercase;
letter-spacing: 2px;
margin: 0;
padding: 10px 0;
text-align: center;
background-color: #161616;
border-bottom: 2px solid #262626;
}
/* Navigation Styling */
nav {
flex-grow: 1;
text-align: right;
display: none; /* Hide the nav menu by default */
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
gap: 10px;
}
nav ul li {
margin: 0;
position: relative;
}
nav ul li a {
color: #ffffff;
text-decoration: none;
display: block;
padding: 8px 16px;
font-family: 'IBM Plex Sans', Arial, sans-serif;
font-size: 1rem;
border-radius: 4px;
transition: background-color 0.2s ease, color 0.2s ease;
}
nav ul li a:hover {
background-color: #262626;
color: #0f62fe;
}
nav ul li ul {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #262626;
padding: 8px 0;
margin: 0;
list-style-type: none;
z-index: 1000;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
nav ul li:hover ul {
display: block;
}
nav ul li ul li a {
padding: 10px 15px;
color: #ffffff;
font-size: 0.875rem;
}
nav ul li ul li a:hover {
background-color: #333333;
color: #0f62fe;
}
/* Burger Menu Styling */
.burger {
font-size: 28px;
cursor: pointer;
display: block;
color: #ffffff;
padding: 8px;
border-radius: 4px;
transition: background-color 0.2s ease;
}
.burger:hover {
background-color: #262626;
}
.section {
padding: 20px;
margin: 20px 0;
display: block;
}
.welcome-section {
background-color: #ffffff;
text-align: center;
color: #000000;
padding: 20px;
box-shadow: none;
}
.welcome-section-content {
max-width: 800px;
margin: 0 auto;
padding: 20px;
border: 2px solid #333333;
border-radius: 8px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
}
.carbon-tile {
padding: 20px;
background-color: #555555;
border-radius: 8px;
text-align: center;
color: #000000;
transition: background-color 0.3s ease;
}
.carbon-tile:hover {
background-color: #333333;
}
.carbon-tile img {
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
/* Form General Styling */
#contactForm {
max-width: 600px;
margin: 0 auto;
padding: 32px;
background-color: #1c1c1c;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#contactForm .form-group {
margin-bottom: 32px; /* Default spacing between form items */
}
#contactForm label {
display: block;
margin-bottom: 8px;
font-size: 0.75rem; /* Label font size */
font-weight: 400; /* Regular weight */
color: #cccccc; /* Light gray color for labels */
}
#contactForm input,
#contactForm textarea {
width: 100%;
padding: 12px 16px;
font-size: 0.875rem; /* Field text font size */
font-weight: 400; /* Regular weight */
color: #ffffff; /* White text color */
background-color: #333333; /* Dark background */
border: 1px solid #444444; /* Subtle border color */
border-radius: 4px;
box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.5); /* Subtle inner shadow */
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#contactForm input:focus,
#contactForm textarea:focus {
border-color: #0f62fe; /* IBM Blue for focus */
box-shadow: 0px 0px 8px rgba(15, 98, 254, 0.5); /* Blue glow on focus */
}
#contactForm textarea {
resize: vertical;
min-height: 120px; /* Minimum height for textarea */
}
#contactForm button {
background-color: #0f62fe; /* IBM Blue */
color: #ffffff;
border: none;
padding: 12px 24px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
border-radius: 4px;
display: block;
margin: 48px auto 0; /* Center the button, margin-top for spacing */
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
#contactForm button:hover {
background-color: #0053ba; /* Darker blue on hover */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}
/* Heading Styling */
#contact h1 {
font-size: 1.75rem; /* Form heading font size */
font-weight: 400; /* Regular weight */
margin-bottom: 40px; /* Margin-bottom for spacing */
color: #ffffff;
text-transform: uppercase;
letter-spacing: 1.5px; /* Spacing for modern look */
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
/* Center the button and style it to match your site's color scheme */
button {
background-color: #333;
color: #fff;
border: none;
padding: 12px 24px;
cursor: pointer;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
font-size: 1rem;
text-align: center;
border-radius: 4px;
display: block;
margin: 20px auto;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
button:hover {
background-color: #555;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
/* General Heading Styles */
h1, h2, h3 {
color: #ffffff
font-family: 'IBM Plex Sans', Arial, sans-serif;
font-weight: 600;
margin-bottom: 20px;
}
h4, h5, h6 {
color: #000000;
font-family: 'IBM Plex Sans', Arial, sans-serif;
font-weight: 600;
margin-bottom: 20px;
}
/* Specific Heading Sizes */
h1 {
font-size: 2.5rem;
line-height: 1.2;
margin-top: 40px;
border-bottom: 2px solid #444;
padding-bottom: 10px;
}
h2 {
font-size: 2rem;
line-height: 1.3;
margin-top: 30px;
border-bottom: 1px solid #444;
padding-bottom: 8px;
}
h3 {
font-size: 1.75rem;
line-height: 1.4;
margin-top: 25px;
}
h4 {
font-size: 1.5rem;
line-height: 1.5;
margin-top: 20px;
}
h5 {
font-size: 1.25rem;
line-height: 1.6;
margin-top: 15px;
}
h6 {
font-size: 1rem;
line-height: 1.6;
margin-top: 10px;
}
/* Additional Styling */
h1, h2 {
text-transform: uppercase;
letter-spacing: 1.5px;
}
h3, h4, h5, h6 {
color: #000000;
}
/* General Styles for the Search Input */
#partnerSearch {
width: 100%;
max-width: 400px;
padding: 12px 16px;
font-size: 1rem;
border: 1px solid #444;
border-radius: 4px;
background-color: #222;
color: #ffffff;
outline: none;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.5);
}
/* Focus State */
#partnerSearch:focus {
border-color: #0f62fe;
box-shadow: 0px 0px 8px rgba(15, 98, 254, 0.5);
}
/* Placeholder Text Styling */
#partnerSearch::placeholder {
color: #888;
font-style: italic;
}
.partners-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
text-align: center;
}
.partner-item {
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
}
.partner-item img {
max-width: 100%;
max-height: 100px;
object-fit: contain;
}
.centered-container {
max-width: 800px;
margin: 0 auto;
background-color: #ffffff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
border-radius: 8px;
text-align: center;
color: #000;
}
.libutton {
display: flex;
flex-direction: column;
justify-content: center;
padding: 7px;
text-align: center;
outline: none;
text-decoration: none !important;
color: #ffffff !important;
width: 200px;
height: 32px;
border-radius: 16px;
background-color: #ffffff;
font-family: "SF Pro Text", Helvetica, sans-serif;
margin: 10px auto;
}
.icon {
width: 20px;
height: 20px;
margin-right: 5px;
}
.service-icon {
width: 40px;
height: 40px;
display: block;
margin: 0 auto 10px auto;
}
/* Mobile Styles */
@media (max-width: 768px) {
nav {
display: none;
width: 100%;
background: #333;
text-align: center;
position: absolute;
top: 50px;
left: 0;
z-index: 1000;
}
nav ul {
flex-direction: column;
}
nav ul li {
margin: 10px 0;
}
.partners-list {
grid-template-columns: 1fr;
}
nav.visible {
display: block;
}
}
</style>
</head>
<body>
<!-- Skip to main content link -->
<a href="#main-content" class="skip-to-content">Skip to main content</a>
<header class="ui-shell-header" role="banner">
<div class="logo">
<h1 class="skunkworks-title">Skunkworks</h1>
</div>
<div class="burger" onclick="toggleMenu()" aria-expanded="false" aria-controls="main-menu" aria-label="Toggle navigation">
☰
</div>
<nav id="main-menu" class="header-navigation" role="navigation">
<ul>
<li><a href="./index.html"><img alt="Home" class="icon" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/container.svg" />Home</a></li>
<li>
<a href="#"><img alt="Training" class="icon" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/intelligence.svg" />Training</a>
<ul>
<li><a href="./blended-learning.html"><img alt="Blended Learning" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/learning/blended-learning.png?raw=true" />Blended Learning</a></li>
<li><a href="./course-development.html"><img alt="Course Development" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/learning/course-development.png?raw=true" />Course Development</a></li>
<li><a href="./project-mentoring.html"><img alt="Project Mentoring" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/learning/project-mentoring.png?raw=true" />Project Mentoring</a></li>
<li><a href="./performance-support.html"><img alt="Performance Support Tools" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/learning/performance-support.png?raw=true" />Performance Support Tools</a></li>
<li><a href="./training-programs.html"><img alt="Training Programs" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/learning/training-programs.png?raw=true" />Training Programs</a></li>
</ul>
</li>
<li>
<a href="#"><img alt="Services" class="icon" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/container--microservices.svg" />Services</a>
<ul>
<li><a href="./software-development.html"><img alt="Software Development" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/services/software-development.png?raw=true" />Software Development</a></li>
<li><a href="./hardware-software.html"><img alt="Hardware and Software" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/services/hardware-software.png?raw=true" />HW/SW Solutions</a></li>
<li><a href="./managed-cloud.html"><img alt="Managed Cloud Services" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/services/managed-cloud.png?raw=true" />Managed Cloud</a></li>
<li><a href="./technical-support.html"><img alt="Technical Support Services" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/services/technical-support.png?raw=true" />Technical Support</a></li>
<li><a href="./placement-recruitment.html"><img alt="Placements" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/services/placement-recruitment.png?raw=true" />Placements</a></li>
</ul>
</li>
<li>
<a href="#"><img alt="Careers" class="icon" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/data--apis.svg" />Careers</a>
<ul>
<li><a href="./job-posting.html"><img alt="Job Posting" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/careers/job-posting.png?raw=true" />Job Posting</a></li>
<li><a href="./candidate-screening.html"><img alt="Candidate Screening" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/careers/candidate-screening.png?raw=true" />Candidate Screening</a></li>
<li><a href="./interviews.html"><img alt="Interviews" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/careers/interviews.png?raw=true" />Interviews</a></li>
<li><a href="./job-offers.html"><img alt="Job Offers" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/careers/job-offers.png?raw=true" />Job Offers</a></li>
<li><a href="./perosacademy/"><img alt="Pero's Academy" class="icon" src="https://github.com/skunkworksza/www/blob/main/assets/careers/peros-academy.png?raw=true" />Pero's Academy</a></li>
</ul>
</li>
<li><a href="#contact"><img alt="Contact" class="icon" src="https://raw.githubusercontent.com/skunkworksza/www/b6c7c3e93995fd5c2a6c0979d90ead76d9ef98dd/assets/icons/email.svg" />Contact</a></li>
</ul>
</nav>
</header>
<section class="section welcome-section" id="welcome">
<div class="welcome-section-content">
<h1>Welcome to Skunkworks</h1>
<h2>Innovative Technology, Education Solutions, and Placement Services for Tomorrow's Businesses.</h2>
<p>Contact: <a href="mailto:info@skunkworks.africa">info@skunkworks.africa</a></p>
</div>
</section>
<section class="section" id="services">
<h1>Custom Learning Solutions</h1>
<div class="grid-container">
<a href="./blended-learning.html" class="carbon-tile">
<img alt="Blended Learning" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/analyzes--data.svg" />
<h3>Blended Learning</h3>
<p>Blended learning programs & personalized learning paths.</p>
</a>
<a href="./course-development.html" class="carbon-tile">
<img alt="Course Development" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/cloud--data--services.svg" />
<h3>Course Development</h3>
<p>We provide custom eLearning courses to meet client objectives.</p>
</a>
<a href="./project-mentoring.html" class="carbon-tile">
<img alt="Project Mentoring" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/business--continuity.svg" />
<h3>Project Mentoring</h3>
<p>Guided support through training engagements with our Project Mentoring.</p>
</a>
<a href="./performance-support.html" class="carbon-tile">
<img alt="Performance Support Tools" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/cloud--builder--professional--services.svg" />
<h3>Performance Support Tools</h3>
<p>We create custom job aids and guides to help employees apply new skills to real-world tasks.</p>
</a>
<a href="./training-programs.html" class="carbon-tile">
<img alt="Training Programs" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/key--users.svg" />
<h3>Training Programs</h3>
<p>We offer training in soft skills, compliance, boot camps, and provide outsourcing services.</p>
</a>
<a href="./lms.html" class="carbon-tile">
<img alt="LMS" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/presentation.svg" />
<h3>LMS</h3>
<p>Custom LMS development and mgmt. for efficient content delivery, tracking, and reporting.</p>
</a>
</div>
</section>
<section class="section" id="technology">
<h1>Technology Solutions</h1>
<p>Our primary aim is to be a one-stop-shop for businesses looking to harness the power of technology and top-notch education.</p>
<div class="grid-container">
<a href="./software-development.html" class="carbon-tile">
<img alt="Software Development" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/code--syntax.svg" />
<h3>Software Development</h3>
<p>Our experienced developers design and develop custom software solutions. Our services include web and mobile app development, software development, and application modernization.</p>
</a>
<a href="./hardware-software.html" class="carbon-tile">
<img alt="Hardware and Software" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/server--operating-systems.svg" />
<h3>Hardware and Software</h3>
<p>We provide hardware and software products from most of the major technology vendor giants, including servers, storage solutions, networking equipment, and software licenses.</p>
</a>
<a href="./managed-cloud.html" class="carbon-tile">
<img alt="Managed Cloud Services" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/hybrid--cloud--infrastructure.svg" />
<h3>Managed Cloud Services</h3>
<p>Our cloud-based solutions cater to businesses of all sizes. We offer mixed cloud models, and manage cloud infrastructure, security, disaster recovery, and cloud migration services.</p>
</a>
<a href="./technical-support.html" class="carbon-tile">
<img alt="Technical Support Services" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/repair--tools.svg" />
<h3>Technical Support Services</h3>
<p>Our technical support team is dedicated to providing timely and effective solutions to ensure your systems run smoothly. We offer 24/7 support, troubleshooting, and maintenance services.</p>
</a>
</div>
</section>
<section class="section" id="recruitment">
<h1>Placement & Recruitment</h1>
<div class="grid-container">
<a href="./job-posting.html" class="carbon-tile">
<img alt="Job Posting" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/presentation.svg" />
<h3>Job Posting</h3>
<p>Sourcing and advertising job openings to attract qualified candidates.</p>
</a>
<a href="./candidate-screening.html" class="carbon-tile">
<img alt="Candidate Screening" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/inspect--data.svg" />
<h3>Candidate Screening</h3>
<p>Reviewing and filtering applications to identify the best matches.</p>
</a>
<a href="./interviews.html" class="carbon-tile">
<img alt="Interviews" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/user--analytics.svg" />
<h3>Interviews</h3>
<p>Conducting interviews to evaluate candidates' qualifications and fit.</p>
</a>
<a href="./job-offers.html" class="carbon-tile">
<img alt="Job Offers" src="https://raw.githubusercontent.com/skunkworksza/www/1e5918326b6a21672c73a0c07adb7b290fd434bf/assets/icons/ai--transparency.svg" />
<h3>Job Offers</h3>
<p>Making offers to selected candidates and negotiating terms.</p>
</a>
</div>
<button onclick="location.href='mailto:info@skunkworks.africa'">EMAIL US</button>
</section>
<section class="section" id="partners">
<h1>Our Partners</h1>
<input id="partnerSearch" onkeyup="filterPartners()" placeholder="Search partner name" type="text" />
<div class="divider"></div>
<div class="partners-list" id="partnersList">
<a class="partner-item" data-name="AWS" href="aws.html">
<img alt="AWS Logo" src="https://github.com/skunkworksza/www/blob/main/assets/aws/aws%20cloud.png?raw=true" />
</a>
<a class="partner-item" data-name="Checkpoint" href="checkpoint.html">
<img alt="Checkpoint Logo" src="https://github.com/skunkworksza/www/blob/main/assets/checkpoint/checkpoint-logo-stacked-large-blk.png?raw=true" />
</a>
<a class="partner-item" data-name="Cisco" href="cisco.html">
<img alt="Cisco Logo" src="https://raw.githubusercontent.com/skunkworksza/www/021c38cde4ad3a9ccf72b8b18042f580b195a3d6/assets/cisco/strategic-partner-logo-cisco-1.svg" />
</a>
<a class="partner-item" data-name="CompTIA" href="comptia.html">
<img alt="CompTIA Logo" src="https://github.com/skunkworksza/www/blob/main/assets/comptia/08212-capp-digital-badges_delivery-partner.jpg?raw=true" />
</a>
<a class="partner-item" data-name="Commvault" href="commvault.html">
<img alt="Commvault Logo" src="https://github.com/skunkworksza/www/blob/main/assets/commvualt/commvualt.jpeg?raw=true" />
</a>
<a class="partner-item" data-name="Dell" href="dell.html">
<img alt="Dell Logo" src="https://raw.githubusercontent.com/skunkworksza/www/a1d437d3c21c968aa69d146b04703d7cecf5d838/assets/dell/strategic-partner-logo-dell-technologies-1.svg" />
</a>
<a class="partner-item" data-name="GitHub" href="github.html">
<img alt="GitHub Logo" src="https://raw.githubusercontent.com/skunkworksza/www/c16c5586c66061112ffe4012073f564d9daa927d/assets/github/github-mark.svg" />
</a>
<a class="partner-item" data-name="Google Cloud" href="googlecloud.html">
<img alt="Google Cloud Logo" src="https://raw.githubusercontent.com/skunkworksza/www/c16c5586c66061112ffe4012073f564d9daa927d/assets/google/google-cloud-logo-new.svg" />
</a>
<a class="partner-item" data-name="IBM" href="ibm.html">
<img alt="IBM Logo" src="https://github.com/skunkworksza/www/blob/main/assets/ibm/IBM_Partner_Plus_silver_partner_mark_pos_black_RGB(103x80).jpg?raw=true" />
</a>
<a class="partner-item" data-name="Red Hat" href="redhat.html">
<img alt="Red Hat Logo" src="https://github.com/skunkworksza/www/blob/main/assets/redhat/redhat_logo.png?raw=true" />
</a>
<a class="partner-item" data-name="Microsoft" href="microsoft.html">
<img alt="Microsoft Logo" src="https://github.com/skunkworksza/www/blob/main/assets/microsoft/RWEDnc.png?raw=true" />
</a>
<a class="partner-item" data-name="VMware" href="vmware.html">
<img alt="VMware Logo" src="https://raw.githubusercontent.com/skunkworksza/www/c16c5586c66061112ffe4012073f564d9daa927d/assets/vmware/strategic-partners-logo-vmware-1.svg" />
</a>
<a class="partner-item" data-name="Veritas" href="veritas.html">
<img alt="Veritas Logo" src="https://github.com/skunkworksza/www/blob/main/assets/veritas/veritaz.png?raw=true" />
</a>
<a class="partner-item" data-name="Veeam" href="veeam.html">
<img alt="Veeam Logo" src="https://github.com/skunkworksza/www/blob/main/assets/veeam/Veeam%20logo.jpeg?raw=true" />
</a>
<a class="partner-item" data-name="SAP" href="sap.html">
<img alt="SAP Logo" src="https://github.com/skunkworksza/www/blob/main/assets/sap/SAP.jpeg?raw=true" />
</a>
<a class="partner-item" data-name="Salesforce" href="salesforce.html">
<img alt="Salesforce Logo" src="https://github.com/skunkworksza/www/blob/main/assets/salesforce/Salesforce-Logo.png?raw=true" />
</a>
<a class="partner-item" data-name="OpenAI" href="openai.html">
<img alt="OpenAI Logo" src="https://github.com/skunkworksza/www/blob/main/assets/openai/Open%20AI.jpeg?raw=true" />
</a>
<a class="partner-item" data-name="HashiCorp" href="hashicorp.html">
<img alt="HashiCorp Logo" src="https://github.com/skunkworksza/www/blob/main/assets/hs/Hashicorp-Vertical_onLight.png?raw=true" />
</a>
<a class="partner-item" data-name="CRS" href="crs.html">
<img alt="CRS Logo" src="https://github.com/skunkworksza/www/blob/main/assets/crs/CRS-logo-GitHub.png?raw=true" />
</a>
</div>
<div class="divider"></div>
</section>
<section class="section" id="statistics">
<h1>Our Achievements</h1>
<div class="grid-container">
<a href="./instructors.html">
<div class="achievement-icon" aria-label="Instructors"></div>
<h3>+100 Instructors & Experts</h3>
</a>
<a href="./partnerships.html">
<div class="achievement-icon" aria-label="Partnerships"></div>
<h3>+40 Strategic Partnerships</h3>
</a>
<a href="./courses.html">
<div class="achievement-icon" aria-label="Courses"></div>
<h3>+1000 Courses Offered</h3>
</a>
</div>
</section>
<section class="section" id="about">
<div class="centered-container">
<h1>About Us</h1>
<p>Our team is dedicated to providing top-notch services, and our expertise spans various domains including education, technology, and business development.</p>
<p>Approach: We take a collaborative approach to every project, working closely with our clients to understand their needs and goals. We are committed to delivering solutions that meet or exceed our clients' expectations. Our team is responsive and accessible, and we pride ourselves on delivering exceptional customer service.</p>
</div>
</section>
<section class="section" id="contact">
<h1>Contact Us</h1>
<form id="contactForm">
<div class="form-group">
<label for="name">Name</label>
<input id="name" name="name" placeholder="Name" required type="text" />
</div>
<div class="form-group">
<label for="email">Email</label>
<input id="email" name="email" placeholder="Email" required type="email" />
</div>
<div class="form-group">
<label for="number">Number</label>
<input id="number" name="number" placeholder="Number" required type="text" />
</div>
<div class="form-group">
<label for="message">How Can We Help?</label>
<textarea id="message" name="message" placeholder="How Can We Help?" required></textarea>
</div>
<button type="submit">CALL ME BACK</button>
</form>
</section>
<footer>
<p>© 2024 Skunkworks. All rights reserved.</p>
<p><a href="https://blog.skunkworks.africa/" target="_blank">Visit our blog</a></p>
</footer>
<script>
// Toggle Menu Functionality for Mobile
function toggleMenu() {
var menu = document.getElementById("main-menu");
menu.classList.toggle("visible");
var burger = document.querySelector(".burger");
var isExpanded = burger.getAttribute("aria-expanded") === "true" || false;
burger.setAttribute("aria-expanded", !isExpanded);
}
// Partner Search Filter
function filterPartners() {
var input = document.getElementById('partnerSearch');
var filter = input.value.toLowerCase();
var nodes = document.getElementsByClassName('partner-item');
for (var i = 0; i < nodes.length; i++) {
if (nodes[i].getAttribute('data-name').toLowerCase().includes(filter)) {
nodes[i].style.display = "block";
} else {
nodes[i].style.display = "none";
}
}
}
// Mobile Dropdown for Submenus
document.addEventListener('DOMContentLoaded', function() {
var dropdowns = document.querySelectorAll('nav ul li');
dropdowns.forEach(function(dropdown) {
dropdown.addEventListener('click', function(event) {
if (window.innerWidth <= 768) {
var submenu = this.querySelector('ul');
if (submenu) {
event.preventDefault();
submenu.style.display = submenu.style.display === 'block' ? 'none' : 'block';
}
}
});
});
});
</script>
<!-- Example of including icons from Carbon Pictograms -->
<script type="module">
import { Resources, GlobalPartner, Badge } from '@carbon/pictograms-react';
document.querySelectorAll('.achievement-icon').forEach(icon => {
if (icon.getAttribute('aria-label') === 'Instructors') {
ReactDOM.render(<Resources />, icon);
} else if (icon.getAttribute('aria-label') === 'Partnerships') {
ReactDOM.render(<GlobalPartner />, icon);
} else if (icon.getAttribute('aria-label') === 'Courses') {
ReactDOM.render(<Badge />, icon);
}
});
</script>
</body>
</html>