-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
1074 lines (1018 loc) · 43.1 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>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-K9NL9QCYZR"
></script>
<script async>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-K9NL9QCYZR");
</script>
<meta charset="utf-8" />
<title>
Ruby Conf Africa 2024 - Leading Ruby Developers Conference in Nairobi,
Kenya
</title>
<meta
name="description"
content="Join us on July 26-27, 2024, for Ruby Conference Africa in Nairobi, Kenya. Connect with leading Ruby developers, learn from insightful sessions, and explore the latest trends in Ruby development."
/>
<!-- Favicon -->
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<link
rel="icon"
type="image/png"
sizes="16x16"
href="images/favicons/favicon-16x16.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="images/favicons/favicon-32x32.png"
/>
<!-- For Apple devices -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="images/apple-touch-icon.png"
/>
<link rel="manifest" href="site.webmanifest" />
<meta name="apple-mobile-web-app-title" content="Ruby Conf Africa 2024" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<!-- For Android devices -->
<meta name="theme-color" content="#ffffff" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="Ruby Conf Africa 2024" />
<link
rel="icon"
type="image/png"
sizes="192x192"
href="images/favicons/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="images/favicons/android-chrome-512x512.png"
/>
<!-- Stylesheets -->
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<link href="css/responsive.css" rel="stylesheet" />
<!--Color Switcher Mockup-->
<link href="css/color-switcher-design.css" rel="stylesheet" />
<!-- Meta Tags for Responsive Design -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>
<!-- Open Graph and Twitter meta tags -->
<meta property="og:title" content="Ruby Conf Africa 2024" />
<meta
property="og:description"
content="Join us on the 26th to 27th July 2024, as leading Ruby developers from around the world come together in Nairobi, Kenya, to share, inspire, and learn."
/>
<meta property="og:image" content="images/logo/arc_logo_coloured.png" />
<meta property="og:url" content="https://rubyconf.africa/" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Ruby Conf Africa 2024" />
<!-- Twitter OG tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Ruby Conf Africa 2024: Connect, Learn, & Grow with Ruby"
/>
<meta
name="twitter:description"
content="Join leading Ruby developers in Nairobi, Kenya on July 26-27, 2024 for Ruby Conf Africa. Share knowledge, gain inspiration, and network within the vibrant Ruby community."
/>
<meta name="twitter:image" content="images/logo/arc_logo_coloured.png" />
<!-- JSON-LD -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "Ruby Conf Africa 2024",
"description": "Join us on July 26-27, 2024, for Ruby Conference Africa in Nairobi, Kenya. Connect with leading Ruby developers, learn from insightful sessions, and explore the latest trends in Ruby development.",
"image": "https://rubyconf.africa/images/logo/arc_logo_coloured.png",
"startDate": "2024-07-26T09:00",
"endDate": "2024-07-27",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": {
"@type": "Place",
"name": "KCA University",
"address": {
"@type": "PostalAddress",
"streetAddress": "",
"addressLocality": "Nairobi",
"postalCode": "JWW4+R5W",
"addressCountry": "KE"
}
}
}
</script>
</head>
<body>
<div class="page-wrapper">
<!-- Preloader -->
<div class="preloader"></div>
<!-- Header span -->
<!-- Main Header-->
<header class="main-header">
<div class="main-box">
<div class="auto-container clearfix">
<div class="logo-box">
<div class="logo">
<a href="index.html"
><img
src="images/logo/arclogo.png"
alt="Africa Ruby Community - Building a vibrant Ruby community in Africa"
title=""
/></a>
</div>
</div>
<div class="auto-container clearfix">
<div class="nav-outer clearfix">
<!--Mobile Navigation Toggler-->
<div class="mobile-nav-toggler">
<span class="icon flaticon-menu"></span>
</div>
<!-- Main Menu -->
<nav class="main-menu navbar-expand-md navbar-light">
<div class="navbar-header">
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="icon flaticon-menu-button"></span>
</button>
</div>
<div
class="collapse navbar-collapse clearfix"
id="navbarSupportedContent"
>
<ul class="navigation clearfix">
<li class="current"><a href="index.html">Home</a></li>
<li><a href="about-us.html">About</a></li>
<li class="dropdown">
<a href="speakers.html">Speakers</a>
<ul>
<li><a href="speakers.html">Speakers</a></li>
<li>
<a
href="https://www.papercall.io/rubyconfafrica2024"
target="_blank"
>CFP</a
>
</li>
</ul>
</li>
<!-- Hide Tickets Navigation Item -->
<li class="dropdown" style="display: none">
<a href="tickets.html">Tickets</a>
<ul>
<li><a href="tickets.html">Get Your Ticket</a></li>
<li>
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSf24sIfky72JR0QWSv4npcUNj8eSWzcrXmWf5yUAFysA0VuCw/viewform"
>WNB Scholarship</a
>
</li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li>
<li class="dropdown">
<a href="practicalities.html">Attendee Guide</a>
<ul>
<li>
<a href="code-of-conduct.html">Code of Conduct</a>
</li>
<li>
<a href="practicalities.html">Attendee Guide</a>
</li>
</ul>
</li>
</ul>
</div>
</nav>
<!-- Outer box -->
<div class="outer-box">
<!-- Button Box -->
<div class="btn-box">
<a
href="tickets.html"
target="_blank"
class="theme-btn btn-style-one"
>
<span class="btn-title">Buy Tickets</span></a
>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div class="mobile-menu">
<div class="menu-backdrop"></div>
<div class="close-btn">
<span class="icon flaticon-cancel-1"></span>
</div>
<!--Here Menu Will Come Automatically Via Javascript / Same Menu as in Header-->
<nav class="menu-box">
<div class="nav-logo">
<a href="index.html"
><img
src="images/logo/arc_logo_coloured.png"
alt="Africa Ruby Community Logo"
title=""
/></a>
</div>
<ul class="navigation clearfix">
<!--Keep This Empty / Menu will come through Javascript-->
</ul>
</nav>
</div>
<!-- End Mobile Menu -->
</header>
<!--End Main Header -->
<!-- Banner Section -->
<section class="banner-section">
<div class="banner-carousel owl-carousel owl-theme">
<!-- Slide Item -->
<div
class="slide-item lazyload"
style="background-image: url(images/compressed/nairobi.jpg)"
>
<div class="auto-container">
<div class="content-box">
<span class="title">July 26-27, 2024</span>
<h2>Ruby Conf Africa 2024</h2>
<ul class="info-list">
<li><span class="fa fa-chair"></span> 300 Seats</li>
<li><span class="fa fa-user-alt"></span> 20 SPEAKERS</li>
<li>
<span class="fa fa-map-marker-alt"></span> KCA University -
Nairobi, Kenya
</li>
</ul>
<div class="btn-align">
<div class="btn-box">
<!-- [Insert New Registration Link] -->
<a
href="tickets.html"
target="_blank"
class="theme-btn btn-style-two"
>
<span class="btn-title"
>Buy Tickets
<span class="fa fa-ticket-alt"></span> </span
></a>
</div>
<!-- Temporarily Disable other buttons -->
<!-- <div class="btn-box">
<a href="/documents/sponsorship-proposal/Ruby-Conf-Africa-2024-Prospectus-1.pdf" target="_blank"
class="theme-btn btn-style-two" title="View the Sponsorship Deck PDF"
aria-label="View the Sponsorship Deck PDF" rel="noopener noreferrer">
<span class="btn-title">View Sponsorship Deck</span></a>
</div>
-->
<div class="btn-box">
<a
href="https://www.papercall.io/rubyconfafrica2024"
target="_blank"
class="theme-btn btn-style-two"
>
<span class="btn-title">Call for Proposals</span></a
>
</div>
</div>
</div>
</div>
</div>
<!-- Slide Item -->
<div
class="slide-item lazyload"
style="background-image: url(images/compressed/nairobi2.jpg)"
>
<div class="auto-container">
<div class="content-box">
<span class="title">July 26-27, 2024</span>
<h2>Ruby Conf Africa 2024</h2>
<ul class="info-list">
<li><span class="fa fa-chair"></span> 300 Seats</li>
<li><span class="fa fa-user-alt"></span> 20 SPEAKERS</li>
<li>
<span class="fa fa-map-marker-alt"></span> KCA University -
Nairobi, Kenya
</li>
</ul>
<div class="btn-align">
<div class="btn-box">
<!-- [Insert New Registration Link] -->
<a
href="tickets.html"
target="_blank"
class="theme-btn btn-style-two"
>
<span class="btn-title"
>Buy Tickets
<span class="fa fa-ticket-alt"></span> </span
></a>
</div>
<!-- Temporarily Disable other buttons -->
<!-- <div class="btn-box">
<a href="/documents/sponsorship-proposal/Ruby-Conf-Africa-2024-Prospectus-1.pdf" target="_blank"
class="theme-btn btn-style-two" title="View the Sponsorship Deck PDF"
aria-label="View the Sponsorship Deck PDF" rel="noopener noreferrer">
<span class="btn-title">View Sponsorship Deck</span></a>
</div>
-->
<div class="btn-box">
<a
href="https://www.papercall.io/rubyconfafrica2024"
target="_blank"
class="theme-btn btn-style-two"
>
<span class="btn-title">Call for Proposals</span></a
>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Banner Section -->
<!-- About Section -->
<section class="about-section" style="margin-bottom: 0">
<div class="auto-container">
<div class="row">
<!-- Content Column -->
<div class="content-column col-lg-6 col-md-12 col-sm-12">
<div class="inner-column">
<div class="sec-title">
<span class="title">ABOUT EVENT</span>
<h2>Welcome to RubyConfAfrica 2024</h2>
<div class="text">
ARC aims to unite entrepreneurs, developers, designers, and
open-source contributors to tackle various challenges. By
embracing entrepreneurship and open-source principles, ARC
believes in offering comprehensive solutions to numerous
issues. Attendees are equipped with both technological tools
and entrepreneurial methodologies to maximize their
potential and inspire others in their communities and
beyond.
</div>
</div>
<ul class="list-style-one">
<li>
Showcase and advocate for Open Source technologies as
catalysts for advancement across Industry, Entrepreneurship,
and Academia.
</li>
<li>
Foster discussions and explore how Agile methodologies can
be adapted and optimized for sustainable development
practices within the Ruby community.
</li>
<li>
Provide insights, Inspire and equip Ruby developers with the
entrepreneurial mindset and skills necessary to build
successful tech startups.
</li>
<li>
Elevate the status of the Ruby community in Africa to become
a globally recognized and integrated community.
</li>
</ul>
<div class="btn-box">
<a href="tickets.html" class="theme-btn btn-style-three"
><span class="btn-title">Buy Tickets</span></a
>
</div>
</div>
</div>
<!-- Image Column -->
<div
class="image-column col-lg-6 col-md-12 col-sm-12"
style="
background-image: url('images/conference.jpg');
background-size: cover;
background-position: center;
height: auto;
min-height: 400px;
"
>
<!-- Optionally, you can add content inside the image column -->
</div>
</div>
</div>
</section>
<!--End About Section -->
<!-- Coming Soon -->
<section class="speakers-section" style="margin-top: 0">
<div class="auto-container">
<div class="sec-title light text-center">
<h2>Keynote Speakers</h2>
</div>
<div class="outer-box">
<div class="row">
<!-- Speaker Block -->
<div class="speaker-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box">
<div class="image-box">
<figure class="image">
<a href="https://www.papercall.io/rubyconfafrica2024"
><img
src="images/speakers/cfp_logo.jpeg"
alt="Speaker Placeholder - Submit your talk for Ruby Conf Africa 2024"
/></a>
</figure>
</div>
<div class="info-box">
<div class="inner">
<h4 class="name">
<a href="https://www.papercall.io/rubyconfafrica2024"
>Submit your Proposal</a
>
</h4>
<span class="designation">Share your knowledge</span>
</div>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box">
<div class="image-box">
<figure class="image">
<a href="speakers-detail.html"
><img
src="images/speakers/compressed/matz.jpg"
alt="Yukihiro 'Matz' Matsumoto - Creator of Ruby"
/></a>
</figure>
</div>
<div class="info-box">
<div class="inner">
<h4 class="name">Yukihiro "Matz" Matsumoto</h4>
<span class="designation">Creator of Ruby</span>
<ul class="social-links social-icon-colored">
<li>
<a href="https://twitter.com/yukihiro_matz"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a href="https://matz.rubyist.net/"
><i class="fab fa-sistrix"></i
></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box">
<div class="image-box">
<figure class="image">
<a href="#"
><img
src="images/speakers/compressed/dhh.jpg"
alt="DHH - Creator of Ruby on Rails"
/></a>
</figure>
</div>
<div class="info-box">
<div class="inner">
<h4 class="name">David Heinemeier Hansson</h4>
<span class="designation">Creator of Ruby on Rails</span>
<ul class="social-links social-icon-colored">
<li>
<a href="https://twitter.com/dhh"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/david-heinemeier-hansson-374b18221/"
><i class="fab fa-linkedin"></i
></a>
</li>
<li>
<a href="https://dhh.dk"
><i class="fab fa-sistrix"></i
></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="sec-title light text-center">
<h2>Speakers</h2>
</div>
<div class="row">
<!-- Speaker Block -->
<div class="speaker-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box">
<div class="image-box">
<figure class="image">
<a href="#"
><img
src="images/speakers/compressed/david.jpeg"
alt="Dávid Halász - Principal Software Engineer at Red Hat"
/></a>
</figure>
</div>
<div class="info-box">
<div class="inner">
<h4 class="name">Dávid Halász</h4>
<span class="designation"
>Principal Software Engineer at Red Hat</span
>
<ul class="social-links social-icon-colored">
<li>
<a href="https://twitter.com/halaszdavid"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a href="http://www.skateman.eu"
><i class="fab fa-sistrix"></i
></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box">
<div class="image-box">
<figure class="image">
<a href="#"
><img
src="images/speakers/compressed/hitoshi-hasumi.jpeg"
alt="Hitoshi Hasumi - Creator of PicoRuby and PRK Firmware. Maintainer of ruby/irb, ruby/reline, and mrubyc/mrubyc."
/></a>
</figure>
</div>
<div class="info-box">
<div class="inner">
<h4 class="name">Hitoshi Hasumi</h4>
<span class="designation"
>Creator of PicoRuby and PRK Firmware.</span
>
<ul class="social-links social-icon-colored">
<li>
<a href="https://twitter.com/hasumikin"
><i class="fab fa-twitter"></i
></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box">
<div class="image-box">
<figure class="image">
<a href="#"
><img
src="images/speakers/compressed/paul_oguda.jpeg"
alt="Hitoshi Hasumi - ead of Tech at Zone01 Kisumu."
/></a>
</figure>
</div>
<div class="info-box">
<div class="inner">
<h4 class="name">Hitoshi Hasumi</h4>
<span class="designation"
>ead of Tech at Zone01 Kisumu</span
>
<ul class="social-links social-icon-colored">
<li>
<a href="https://x.com/kamalogudah"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a href="https://www.linkedin.com/in/oguda"><i class="fab fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Speaker Block -->
<div class="speaker-block col-lg-3 col-md-6 col-sm-12">
<div class="inner-box">
<div class="image-box">
<figure class="image">
<a href="#"
><img
src="images/speakers/compressed/ceciliah_mbugua.jpeg" style="width: 280px; height: 280px;"
alt="Ceciliah Mbugua - Open source advocate."
/></a>
</figure>
</div>
<div class="info-box">
<div class="inner">
<h4 class="name">Ceciliah Mbugua</h4>
<span class="designation"
>Open source advocate</span
>
<ul class="social-links social-icon-colored">
<li>
<a href="ttps://x.com/cesswairimu254"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a href="https://linkedin.com/in/ceciliah-mbugua-8878a0120"><i class="fab fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Coming Soon -->
<!-- Plutinum Sponsor Section-->
<section class="clients-section">
<div class="anim-icons">
<span class="icon icon-dots-3 wow zoomIn"></span>
</div>
<div class="auto-container">
<div class="sec-title" style="text-align: center">
<h2 style="color: #c11803">Platinum Sponsors</h2>
<hr />
<span class="title">
These Platinum Sponsors are making a big impact on our event! 💪
</span>
</div>
<div class="sponsors-outer">
<div class="row">
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://www.kcau.ac.ke/"
><img
data-src="images/logo/KCA_UNIVERSITY_LOGO_SMALL.png"
class="lazyload"
alt="KCA University, a Platinum sponsor, offering quality education and research opportunities."
/></a>
</figure>
</div>
</div>
</div>
</div>
</section>
<!--End Current Sponsor Section-->
<!-- Silver Sponsor Section-->
<section class="clients-section">
<div class="anim-icons">
<span class="icon icon-dots-3 wow zoomIn"></span>
</div>
<div class="auto-container">
<div class="sec-title" style="text-align: center">
<h2 style="color: #c11803">Silver Sponsors</h2>
<hr />
<span class="title">
These Silver Sponsors are making a big impact on our event! 💪
</span>
</div>
<div class="sponsors-outer">
<div class="row">
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://www.planetargon.com/"
><img
data-src="images/logo/planet_argon.png"
class="lazyload"
alt="t Planet Argon, we help you sustain, modernize, and future-proof your Ruby on Rails applications through the ever-changing tech landscape."
/></a>
</figure>
</div>
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://kopokopo.co.ke/"
><img
src="images/logo/KopoKopo logo.png"
class="lazyload"
alt="KopoKopo - Empowering businesses in Kenya with innovative payment solutions"
style="margin-left: -40px"
/></a>
</figure>
</div>
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://www.solutech.co.ke/"
><img
data-src="images/logo/Solutech-Official-Logo.png"
class="lazyload"
alt="Solutech is a technology solutions provider that specializes in developing custom software applications, offering IT consulting, and delivering digital transformation services to businesses."
/></a>
</figure>
</div>
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://www.appsignal.com/"
><img
data-src="images/logo/AppSignal logo.png"
class="lazyload"
alt="AppSignal provides developers amazing and actionable insights into their applications. Their all-in-one monitoring product is designed for developers: easy to set up and easy to customize. AppSignal takes teams from scattered to gathered."
/></a>
</figure>
</div>
<!-- Add finplus group here -->
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://finplusgroup.com/"
><img
data-src="images/logo/Finplus-logo-draft-p-500.png"
class="lazyload"
alt="Finplus helps you provide innovative fintech & ecommerce products in emerging markets. Offer great digital experiences & automate critical business processes."
style="margin-left: -30px"
/></a>
</figure>
</div>
</div>
</div>
</div>
</section>
<!--End Current Sponsor Section-->
<!--Sponsor Section-->
<section class="clients-section">
<div class="anim-icons">
<span class="icon icon-dots-3 wow zoomIn"></span>
</div>
<div class="auto-container">
<div class="sec-title" style="text-align: center">
<h2 style="color: #c11803">Partners</h2>
<hr />
<span class="title">
These partners are all in for the event! 💪
</span>
</div>
<div class="sponsors-outer">
<div class="row">
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://www.nairobits.com/"
><img
data-src="images/logo/NairoBits logo.png"
class="lazyload"
alt="Nairobits - Kenyan nonprofit empowering youth from under-resourced backgrounds to take advantage of the Digital Age"
style="margin-top: -60px"
/></a>
</figure>
</div>
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://www.microverse.org/"
><img
data-src="images/logo/Microverse-logo.png"
class="lazyload"
alt="Microverse, a partner of the event, fostering global collaboration in education."
style="margin-top: -50px"
/></a>
</figure>
</div>
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://rubycentral.org/"
><img
data-src="images/logo/ruby-central.png"
class="lazyload"
alt="Ruby Central, a partner of the event, supporting the Ruby community worldwide."
style="margin-top: -50px"
/></a>
</figure>
</div>
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://andpad.co.jp/"
><img
data-src="images/logo/andpad.png"
class="lazyload"
alt="Andpad is a mobile and desktop application for construction development in Japan that saves time and resources of the whole team."
style="margin-top: -50px"
/></a>
</figure>
</div>
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://friendlyrb.com/"
><img
data-src="images/logo/friendlyrb.png"
class="lazyload"
alt="FriendlyRb, a community partner, fostering collaboration and knowledge sharing in the Ruby community."
style="margin-top: -50px"
/></a>
</figure>
</div>
</div>
</div>
</div>
</section>
<!--End Current Sponsor Section-->
<!-- Start of Ticket Sponsors -->
<div class="auto-container">
<div class="sec-title" style="text-align: center">
<h2 style="color: #c11803">Ticket Sponsors</h2>
<hr />
<span class="title">
These are the ticket sponsors for the event! 💪
</span>
</div>
<div class="sponsors-outer">
<div class="row">
<!-- Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://www.wnb-rb.dev/"
><img
data-src="images/logo/wnb-rb.png"
class="lazyload"
alt="WNB.rb - A virtual community for women and non-binary Rubyists."
style="margin-top: -60px"
/></a>
</figure>
</div>
</div>
</div>
</div>
<!--End Ticket Sponsor Section-->
<!--Previous Sponsor Section-->
<section class="clients-section">
<div class="anim-icons">
<span class="icon icon-dots-3 wow zoomIn"></span>
</div>
<div class="auto-container">
<div class="sec-title" style="text-align: center">
<h2 style="color: #c11803">Previous Sponsors</h2>
<hr />
<span class="title">
These were our previous sponsors who contributed to the success of
past events! 🙌
</span>
</div>
<div class="sponsors-outer">
<div class="row">
<!-- Previous Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-10">
<figure class="image">
<a href="https://www.shopify.com/">
<img
data-src="images/logo/Shopify_logo_2018.svg.png"
class="lazyload"
alt="Shopify - Empowering entrepreneurs with e-commerce solutions"
style="margin-top: -10px"
/></a>
</figure>
</div>
<!-- Previous Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://kwara.com/"
><img
data-src="images/logo/Kwara.png"
class="lazyload"
alt="Kwara - Transforming banking for credit unions and financial cooperatives"
style="margin-top: -30px; margin-left: -50px"
/></a>
</figure>
</div>
<!-- Previous Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://kopokopo.co.ke/"
><img
src="images/logo/KopoKopo logo.png"
class="lazyload"
alt="KopoKopo - Empowering businesses in Kenya with innovative payment solutions"
style="margin-left: -70px"
/></a>
</figure>
</div>
<!-- Previous Sponsor Block -->
<div class="client-block col-lg-3 col-md-6 col-sm-12">
<figure class="">
<a href="https://www.nairobits.com/"
><img
data-src="images/logo/NairoBits logo.png"
class="lazyload"
alt="Nairobits - Kenyan nonprofit empowering youth from under-resourced backgrounds to take advantage of the Digital Age"
style="margin-left: -80px; margin-top: -60px"
/></a>
</figure>
</div>
<!-- Previous Sponsor Block -->