generated from keploy/template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
727 lines (720 loc) · 37.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
<!DOCTYPE html>
<!--[if lt IE 9 ]>
<html class="no-js oldie" lang="en">
<![endif]-->
<!--[if IE 9 ]>
<html class="no-js oldie ie9" lang="en">
<![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Keploy Developer Relations Program</title>
<meta name="description" content="Keploy Developer Relations Program">
<meta name="author" content="Keploy.io">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://cdn.linearicons.com/free/1.0.0/icon-font.min.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="canonical" href="https://devrel.keploy.io/" />
<link rel="icon" href="./images/favicon.png" type="image/png">
<style>
::-webkit-scrollbar {
width: 12px;
height: 8px;
}
/* Style the track of the scroll bar */
::-webkit-scrollbar-track {
background-color: #F5DEB3; /* set background color */
}
/* Style the thumb of the scroll bar */
::-webkit-scrollbar-thumb {
background-color: #6f0a0d; /* set thumb color */
}
.innerdiv {
transform: scale(0.9);
/* margin: 1rem; */
display: grid;
grid-gap: 1.5rem;
grid-template-rows: repeat(2, 36rem);
grid-template-columns: repeat(4, 33rem);
color:white;
}
.eachdiv {
padding: 4rem 5rem;
border-radius: 0.8rem;
color: white!important;
}
.div1 {
background: #E35134;
grid-column: 1/3;
grid-row: 1/2;
}
.div2 {
background: #E35134;
grid-column: 1/2;
grid-row: 2/3;
}
.div3 {
background: #E35134;
grid-column: 4/5;
grid-row: 1/3;
color: black;
}
.div4 {
background: #E35134;
grid-column: 3/4;
grid-row: 1/2;
color: black;
}
.div5 {
background: #E35134;
grid-column: 2/4;
grid-row: 2/3;
}
.div6 {
background: #E35134;
grid-column: 1/5;
grid-row: 3/5;
}
@media only screen and (max-width:791px){
.outerdiv{
display: none;
}
}
.userdetails {
display: flex;
}
.imgbox {
margin-right: 1rem;
}
.imgbox img {
border-radius: 50%;
max-width: 70px;
height: 70px;
width:70px;
}
.detbox {
display: flex;
flex-direction: column;
justify-content: flex-start;
text-align: justify;
}
.detbox p {
margin: 0;
}
.detbox .name {
color: white;
font-size: 2rem;
margin-bottom: 0.1rem;
font-family: "montserrat-medium", sans-serif;
font-weight: 600;
}
.detbox .designation {
color: white;
font-size: 15px;
font-family: "montserrat-medium", sans-serif;
text-decoration: none;
}
.review {
display: flex;
text-align: left;
margin-top:-50px;
}
</style>
</head>
<body id="top">
<!-- <div class="modal" data-aos="fade-up">
<div class="modal-body">
<div class="modal-close">
<button onclick="modalClose()">Close</button>
</div>
<img src="./images/cohort3.png" class="modal-img" />
<img src="./images/cohort3mob.png" class="modal-img-mob" />
</div>
</div> -->
<div style="display:relative">
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html">
<img src="./images/keploy-logo.png" style="transform: scale(2); margin-left:20px" alt="Homepage">
</a>
</div>
<nav class="header-nav">
<a href="#0" class="header-nav__close" title="close"><span>Close</span></a>
<div class="header-nav__content">
<h3>Navigation</h3>
<ul class="header-nav__list">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#program" title="program">Program</a></li>
<li><a class="smoothscroll" href="#next" title="next">Next Cohort</a></li>
<li><a class="smoothscroll" href="#community" title="community">Community</a></li>
<li><a class="smoothscroll" href="#join" title="join">Join</a></li>
</ul>
<ul class="header-nav__social">
<li><a href="https://keploy.slack.com/"><i class="fa fa-slack"></i></a></li>
<li><a href="https://twitter.com/Keployio"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg"><i class="fa fa-youtube"></i></a></li>
<li><a href="https://www.linkedin.com/company/keploy/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://keploy.io/blog"><i class="fa fa-rss"></i></a></li>
</ul>
</div>
</nav>
<a class="header-menu-toggle" href="#0">
<span class="header-menu-text">Menu</span>
<span class="header-menu-icon"></span>
</a>
</header>
<!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home target-section" data-parallax="scroll" data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="overlay" ></div>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<h1>
Keploy Developer <br/>Relations Program
</h1>
<h3>Get into the world of DevRels and experience <br/> of being one for a month</h3>
<div class="home-content__buttons">
<a href="https://forms.gle/Fr3TwNUni2RRnZhNA" class=" btn btn--stroke">
Apply
</a>
<a href="https://tinyurl.com/KeployDevRel7" class="btn btn--stroke">
Know More
</a>
</div>
</div>
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
<span>Scroll Down</span>
</a>
</div>
<!-- <div class="home-content__line"></div> -->
</div>
<!-- end home-content -->
<ul class="home-social">
<li>
<a href="https://keploy.slack.com/"><i class="fa fa-slack" aria-hidden="true"></i><span>Slack</span></a>
</li>
<li>
<a href="https://twitter.com/Keployio"><i class="fa fa-twitter" aria-hidden="true"></i><span>Twiiter</span></a>
</li>
<li>
<a href="https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg"><i class="fa fa-youtube" aria-hidden="true"></i><span>Youtube</span></a>
</li>
<li>
<a href="https://www.linkedin.com/company/keploy/"><i class="fa fa-linkedin" aria-hidden="true"></i><span>Linkedin</span></a>
</li>
<li>
<a href="https://keploy.io/blog"><i class="fa fa-rss" aria-hidden="true"></i><span>Blog</span></a>
</li>
</ul>
<!-- end home-social -->
</section>
<!-- end s-home -->
<!-- about
================================================== -->
<section id='about' class="s-about">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--dark">Hello There</h3>
<h1 class="display-1 display-1--light">We Are Keploy</h1>
</div>
</div>
<!-- end section-header -->
<div class="row about-desc" data-aos="fade-up">
<div class="col-full">
<p>
Keploy is a functional testing toolkit for developers. As an open source organisation, we believe everything should be community-driven. We want folks to come together
with us and experience what it is like to be that DevRel and learn and grow with the experience they gain! Here's the DevRel Program in Numbers
</p>
</div>
</div>
<!-- end about-desc -->
<div class="row about-stats stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block stats__col ">
<div class="stats__count">6</div>
<h5>Cohorts</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">5000</div>
<h5>Applications</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">330</div>
<h5>DevRels</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">15</div>
<h5>Onboarded</h5>
</div>
</div>
<!-- end about-stats -->
<!-- <div class="about__line"></div> -->
</section>
<!-- end s-about -->
<!-- services
================================================== -->
<section id='program' class="s-services">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">DevRel Program</h3>
<h1 class="display-2">Wanna know what it is like to be a DevRel?</h1>
</div>
</div>
<!-- end section-header -->
<div class="row services-list block-1-2 block-tab-full">
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<img src="./images/learn.gif" alt="Learn gif"/>
</div>
<div class="service-text">
<h3 class="h2">Learn</h3>
<p>Learn the day-to-day tasks of a DevRel</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<img src="./images/content.gif" alt="Content gif"/>
</div>
<div class="service-text">
<h3 class="h2">Make Content</h3>
<p>Learn to write and make Technical content (2nd most important task of being a DevRel)</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon">
<img src="./images/grow.gif" alt="Grow gif"/>
</div>
<div class="service-text">
<h3 class="h2">Grow</h3>
<p>If a DevRel person is an actor, the community is their stage. Learn to grow with the community</p>
</div>
</div>
</div>
<!-- end services-list -->
</section>
<!-- end s-services -->
<!-- NEXT DEVREL COHORT -->
<!-- <section id="next" class="s-services" style="margin-top:-200px">
<div class="intro-wrap">
<div class="row section-header has-bottom-sep light-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">DevRel Cohort 3.0</h3>
<h1 class="display-2 display-2--dark">Applications Close In</h1>
</div>
</div>
<script src="https://cdn.logwork.com/widget/countdown.js"></script>
<div>
<a href="https://logwork.com/countdown-yt11" class="countdown-timer" style="margin-top:-130px" data-timezone="Asia/Kolkata" data-textcolor="#fff" data-date="2023-04-30 12:00" data-background="#644a3c" data-digitscolor="#ff904d" data-unitscolor="#ff904d"><span style="color:white">.</span></a>
</div>
</section> -->
<!-- works
================================================== -->
<section id='community' class="s-works">
<div class="intro-wrap">
<div class="row section-header has-bottom-sep light-sep" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Community❤️</h3>
<h1 class="display-2 display-2--light">Look at what the previous folks have to say!</h1>
</div>
</div>
<!-- end section-header -->
</div>
<!-- end intro-wrap -->
<div class="row works-content">
<div class="outerdiv">
<div class="innerdiv">
<div class="eachdiv div1">
<div class="userdetails">
<div class="imgbox">
<img src="./images/testimonials/sanskriti.jpg" alt="">
</div>
<div class="detbox">
<p class="name">Sanskriti Harmukh</p>
<p class="designation">GitHub Campus Expert</p>
</div>
</div>
<div class="review">
<p>
<h4>If you are someone who is looking forward to stepping into the domain of DevRel and is eager to learn its goals in an open source organization then we have a space created for you called Keploy's DevRel Cohort, to boost up your learning and enhance your way of approaching a solution to a problem being a DevRel.</h4>
</p>
</div>
</div>
<div class="eachdiv div2">
<div class="userdetails" style="margin-top:-10px !important">
<div class="imgbox">
<img src="./images/testimonials/animesh.jpg" alt="">
</div>
<div class="detbox">
<p class="name" style="font-size:16px; text-align: left;">Animesh Pathak</p>
<p class="designation" style="margin-top:-4px">Gold MLSA</p>
</div>
</div>
<div class="review" >
<p >
<h5 style="line-height:1.6 !important" >My experience of DevRel Cohort 1.0 will forever resonate in my heart. I am able to improve my skills. All in all, the virtual atmosphere is simply uplifting and I am enjoying this work with such a great and impressive team!</h5>
</p>
</div>
</div>
<div class="eachdiv div3">
<div class="userdetails" >
<div class="imgbox">
<img src="./images/testimonials/roy.jpg" alt="">
</div>
<div class="detbox">
<p class="name" style="font-size:16px; text-align: left;">Jyotirmoy Roy</p>
<p class="designation">IRLamigo</p>
</div>
</div>
<div class="review" >
<p>
<h4>Participating in Keploy's DevRel Cohort as a mentee was an exceptional journey that enriched my knowledge and skills about DevRel role in an open-source company. The program helped me to effectively communicate with diverse stakeholders and understand the accountability of a DevRel. I'm grateful for the mentors' constant support and constructive feedback that aided me in making progress.</h4>
</p>
</div>
</div>
<div class="eachdiv div4">
<div class="userdetails">
<div class="imgbox">
<img src="https://avatars.githubusercontent.com/u/65999534?v=4" alt="">
</div>
<div class="detbox">
<p class="name" style="font-size:16px; text-align: left;">Diganta Kr Banik</p>
<p class="designation" style="margin-top:-4px">Web Developer</p>
</div>
</div>
<div class="review">
<p>
<h5>DevRel was something new to me. I had a great experience during the cohort as a mentee and learnt a lot during the contribution period. If you want to experience what a DevRel is, this program is a really great opportunity to understand the roles and responsibilites of a devrel.</h5>
</p>
</div>
</div>
<div class="eachdiv div5">
<div class="userdetails">
<div class="imgbox">
<img src="./images/testimonials/shashwat.jpg" alt="">
</div>
<div class="detbox">
<p class="name">Shashwat Gupta</p>
<p class="designation">Backend Developer</p>
</div>
</div>
<div class="review">
<p>
<h4>Keploy's DevRel Cohort has been a game-changer. Immersed in Developer Relations within open-source, I learned effective communication and the key role DevRel plays. Expert mentorship and collaborative peers enriched the journey. For those curious about DevRel's role in open-source, this program is an ideal gateway to explore and learn.</h4>
</p>
</div>
</div>
<div class="eachdiv div6">
<div class="userdetails">
<div class="imgbox">
<img src="https://arindam-majumder.vercel.app/static/media/HeroImage.4740728022c691f81573.jpg" alt="">
</div>
<div class="detbox">
<p class="name" style="font-size:16px; text-align: left;">Arindam Majumder</p>
<p class="designation" style="margin-top:-4px">DevRel @getpieces </p>
</div>
</div>
<div class="review">
<p>
<h4>It was a Great learning Experience and got to explore many aspects of DevRel. If you want to experience what a DevRel is, this program is a really great opportunity to understand the roles and responsibilites and how to navigate them.</h4>
</p>
</div>
</div>
</div>
<!-- <div class="masonry">
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<p href="images/portfolio/gallery/g-shutterbug.jpg" class="thumb-link" title="Shutterbug" data-size="1050x700">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Getting into the world of DevRel🥑 with <a href="https://twitter.com/Keployio?ref_src=twsrc%5Etfw">@Keployio</a>. Looking to learn and network with wonderful folks! Excited for the next 25 days! Had a lot fun discussing about Keploy and DevRel today! Thanks to <a href="https://twitter.com/sonichigo1219?ref_src=twsrc%5Etfw">@sonichigo1219</a> <a href="https://twitter.com/Senzkriti?ref_src=twsrc%5Etfw">@Senzkriti</a> <a href="https://t.co/eIpbu2Tmy1">pic.twitter.com/eIpbu2Tmy1</a></p>— Diganta Kr Banik🥑 (@banik_diganta) <a href="https://twitter.com/banik_diganta/status/1603458303253544960?ref_src=twsrc%5Etfw">December 15, 2022</a></blockquote>
</p>
</div>
<div class="item-folio__thumb">
<p href="images/portfolio/gallery/g-shutterbug.jpg" class="thumb-link" title="Shutterbug" data-size="1050x700">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">DevRel cohort 2.0 🥑 orientation call done and dusted 🫰<br>Looking forward to learning about Keploy and DevRel with <a href="https://twitter.com/Keployio?ref_src=twsrc%5Etfw">@Keployio</a> as a contributor for the next 25 days 🔥<br>Special thanks to <a href="https://twitter.com/sonichigo1219?ref_src=twsrc%5Etfw">@sonichigo1219</a> <a href="https://twitter.com/Senzkriti?ref_src=twsrc%5Etfw">@Senzkriti</a> for the awesome session ❤️ <a href="https://t.co/QJs6b7lo0S">pic.twitter.com/QJs6b7lo0S</a></p>— Barkatul Mujauddin🥑 (@barkatul_twt) <a href="https://twitter.com/barkatul_twt/status/1603673015061188608?ref_src=twsrc%5Etfw">December 16, 2022</a></blockquote>
</p>
</div>
</div>
</div>
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<p href="images/portfolio/gallery/g-shutterbug.jpg" class="thumb-link" title="Shutterbug" data-size="1050x700">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Getting into the world of DevRel🥑 with <a href="https://twitter.com/Keployio?ref_src=twsrc%5Etfw">@Keployio</a>. Looking to learn and network with wonderful folks! Excited for the next 25 days! Had a lot fun discussing about Keploy and DevRel today! Thanks to <a href="https://twitter.com/sonichigo1219?ref_src=twsrc%5Etfw">@sonichigo1219</a> <a href="https://twitter.com/Senzkriti?ref_src=twsrc%5Etfw">@Senzkriti</a> <a href="https://t.co/eIpbu2Tmy1">pic.twitter.com/eIpbu2Tmy1</a></p>— Diganta Kr Banik🥑 (@banik_diganta) <a href="https://twitter.com/banik_diganta/status/1603458303253544960?ref_src=twsrc%5Etfw">December 15, 2022</a></blockquote>
</p>
</div>
<div class="item-folio__thumb">
<p href="images/portfolio/gallery/g-shutterbug.jpg" class="thumb-link" title="Shutterbug" data-size="1050x700">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">DevRel cohort 2.0 🥑 orientation call done and dusted 🫰<br>Looking forward to learning about Keploy and DevRel with <a href="https://twitter.com/Keployio?ref_src=twsrc%5Etfw">@Keployio</a> as a contributor for the next 25 days 🔥<br>Special thanks to <a href="https://twitter.com/sonichigo1219?ref_src=twsrc%5Etfw">@sonichigo1219</a> <a href="https://twitter.com/Senzkriti?ref_src=twsrc%5Etfw">@Senzkriti</a> for the awesome session ❤️ <a href="https://t.co/QJs6b7lo0S">pic.twitter.com/QJs6b7lo0S</a></p>— Barkatul Mujauddin🥑 (@barkatul_twt) <a href="https://twitter.com/barkatul_twt/status/1603673015061188608?ref_src=twsrc%5Etfw">December 16, 2022</a></blockquote>
</p>
</div>
</div>
</div>
</div> -->
</div>
<!-- end col-full -->
</div>
<!-- end works-content -->
</section>
<!-- end s-works -->
<!-- clients
================================================== -->
<section id="clients" class="s-clients">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">COMMUNITY❤️</h3>
<h1 class="display-2">Look at what the previous folks have to say!</h1>
</div>
</div>
<div class="row clients-testimonials" data-aos="fade-up">
<div class="col-full">
<div class="testimonials">
<div class="testimonials__slide">
<p>If you are someone who is looking forward to stepping into the domain of DevRel and is eager to learn its goals in an open source organization then we have a space created for you called Keploy's DevRel Cohort, to boost up your learning and enhance your way of approaching a solution to a problem being a DevRel.</p>
<img src="./images/testimonials/sanskriti.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Sanskriti Harmukh</span>
<span class="testimonials__pos">GitHub Campus Expert</span>
</div>
</div>
<div class="testimonials__slide">
<p>My experience of DevRel Cohort 1.0 will forever resonate in my heart. I am able to improve my skills. All in all, the virtual atmosphere is simply uplifting and I am enjoying this work with such a great and impressive team!</p>
<img src="./images/testimonials/animesh.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Animesh Pathak</span>
<span class="testimonials__pos">Gold MLSA</span>
</div>
</div>
<div class="testimonials__slide">
<p>Participating in Keploy's DevRel Cohort as a mentee was an exceptional journey that enriched my knowledge and skills about the DevRel role in an open-source company. The program helped me to effectively communicate with diverse stakeholders and understand the accountability of a DevRel. I'm grateful for the mentors' constant support and constructive feedback that aided me in making progress. The collaboration with other mentees was also an enjoyable experience that added to the learning curve.</p>
<img src="./images/testimonials/roy.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Jyotirmoy Roy</span>
<span class="testimonials__pos">IRLamigo</span>
</div>
</div>
<div class="testimonials__slide">
<p>DevRel was something new to me. I had a great experience during the cohort as a mentee and learnt a lot during the contribution period. If you want to experience what a DevRel is, this program is a really great opportunity to understand the roles and responsibilites of a devrel.</p>
<img src="./images/testimonials/diganta.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Diganta Kr Banik</span>
<span class="testimonials__pos">Web Developer</span>
</div>
</div>
<div class="testimonials__slide">
<p>Being a mentee of Keploy's DevRel Cohort was a great experience for me. I learned a lot about the role and responsibilities of a DevRel in an open-source organization, and how to communicate effectively with different stakeholders. The mentors were very supportive and helpful, and they gave me valuable feedback and guidance throughout the program. I also enjoyed collaborating with other mentees.</p>
<img src="./images/testimonials/barkatul.jpg" alt="Author image" class="testimonials__avatar">
<div class="testimonials__info">
<span class="testimonials__name">Barkatul Mujauddin</span>
<span class="testimonials__pos">Founder HackForCode</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end s-clients -->
<!-- contact
================================================== -->
<section id="join" class="s-contact">
<div class="overlay"></div>
<!-- <div class="contact__line"></div> -->
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<!-- <h3 class="subhead">Join Our API Community Today!</h3> -->
<h1 class="display-2 display-2--light">Join Our API Community Today!</h1>
</div>
</div>
<div class="row contact-content" data-aos="fade-up">
<div class="contact-primary">
<h3 class="h6">Get Involved In The Community Today!</h3>
<img src="./images/slack.png" alt="Slack Image"/>
<!-- <img src="./images/slack2.png"/> -->
<button class="join-btn"><a href="https://keploy.slack.com/">Join Slack</a></button>
</div>
<!-- end contact-primary -->
<div class="contact-secondary">
<div class="contact-info">
<!-- <h3 class="h6 hide-on-fullwidth">Contact Info</h3> -->
<div class="cinfo">
<h2 style="color:rgb(47 43 40);">
Meet students, mentors and educators around the world excited about APIs and technology!!</h5>
</div>
<ul class="contact-social">
<li><a href="https://keploy.slack.com/"><i class="fa fa-slack"></i></a></li>
<li><a href="https://twitter.com/Keployio"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg"><i class="fa fa-youtube"></i></a></li>
<li><a href="https://www.linkedin.com/company/keploy/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://keploy.io/blog"><i class="fa fa-rss"></i></a></li>
</ul>
<!-- end contact-social -->
</div>
<!-- end contact-info -->
</div>
<!-- end contact-secondary -->
</div>
<!-- end contact-content -->
</section>
<!-- end s-contact -->
<!-- <section>
<div style="width: 100%; height:200px;background:orange; display: flex; flex-direction: column; justify-content: center;align-items: center;"><button style="margin:0 auto;">Join The Next Cohort Today!</button></div>
</section> -->
<!-- footer
================================================== -->
<!--================Impress Area =================-->
<section class="impress_area">
<div class="container">
<div class="impress_inner">
<h2 class="mb-30">Sign-up for the newsletter!</h2>
<aside class="f_widget">
<div id="mc_embed_signup">
<form id="newsletter" target="" action="" method="post" class="subscribe_form relative ">
<div class="input-group d-flex flex-row justify-content-center ">
<input name="email" class="input" placeholder="Enter email" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Enter email address'" required="" type="email">
<button class="btn sub-btn submit-btn" style="border:1px;"><span class="lnr lnr-arrow-right"></span></button>
</div>
<div class="mt-10 info"></div>
</form>
<div class="alert alert-warning alert-msg text-hide" role="alert">
</div>
</div>
</aside>
</div>
</div>
</section>
<!--================End Impress Area =================-->
<!--================Footer Area =================-->
<footer class="footer_area">
<div class="container">
<div class="row footer_inner">
<div class="col-lg-5 col-sm-6">
<aside class="f_widget ab_widget">
<div class="f_title">
<h3>Copyright © 2023 Keploy Inc.</h3>
</div>
<p>Developers experience for e2e testing. Toolkit that creates test-cases and data mocks from API calls, DB queries, etc.</p>
</aside>
</div>
<div class="col-lg-5 col-sm-6">
<aside class="f_widget news_widget">
<div class="f_title">
<h3>Newsletter</h3>
</div>
<p>Stay updated with our latest trends</p>
<div id="mc_embed_signup-impress">
<form id="newsletter-1" target="" action="" method="post" class="subscribe_form relative">
<div class="input-group d-flex flex-row justify-content-center">
<input name="email" class="input" placeholder="Enter email address" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Email Address '" required="" type="email">
<button class="btn sub-btn submit-btn" style="border:1px; right:0px;"><span class="lnr lnr-arrow-right"></span></button>
</div>
<div class="mt-10 info"></div>
</form>
<div class="alert alert-warning alert-msg text-hide" role="alert"></div>
</div>
</aside>
</div>
<div class="col-lg-2">
<aside class="f_widget social_widget">
<div class="f_title">
<h3>Find us on</h3>
</div>
<p>Let us be social</p>
<ul class="list" style="margin-left:0">
<li><a href="https://keploy.slack.com/"><i class="fa fa-slack"></i></a></li>
<li><a href="https://twitter.com/Keployio"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg"><i class="fa fa-youtube"></i></a></li>
<li><a href="https://www.linkedin.com/company/keploy/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://keploy.io/blog"><i class="fa fa-rss"></i></a></li>
</ul>
</aside>
</div>
</div>
</div>
</footer>
<!-- photoswipe background
================================================== -->
<div aria-hidden="true" class="pswp" role="dialog" tabindex="-1">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title=
"Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title=
"Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button> <button class="pswp__button pswp__button--arrow--right" title=
"Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div>
<!-- end photoSwipe background -->
<!-- preloader
================================================== -->
<!-- <div id="preloader">
<div id="loader">
<div class="line-scale-pulse-out">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div> -->
<!-- Java Script
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<script>
// function modalClose(){
// $('.modal:first').css('display','none');
// $('body').css('overflow','auto');
// }
// $(document).on('keydown scroll mousewheel touchmove', function(event) {
// if ($('#modal').is(':visible')) {
// event.preventDefault();
// }
// });
</script>
</div>
</body>
</html>