forked from Real-Dev-Squad/website-www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
656 lines (628 loc) · 24.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon" />
<link rel="icon" href="./img/favicon.ico" type="image/x-icon" />
<title>Real Dev Squad</title>
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/animate.css" />
<link rel="stylesheet" href="./css/navbar.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://api.mapbox.com/mapbox-gl-js/v2.10.0/mapbox-gl.css"
rel="stylesheet"
/>
<!-- Primary Meta Tags -->
<meta name="title" content="Real Dev Squad" />
<meta
name="description"
content="Community of developers who collaborate to build Real software."
/>
<!-- Open Graph / Facebook Meta Tags -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.realdevsquad.com/" />
<meta property="og:title" content="Real Dev Squad" />
<meta
property="og:description"
content="Community of developers who collaborate to build Real software."
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/Real-Dev-Squad/website-www/develop/img/Real-Dev-Squad-preview.png"
/>
<!-- Twitter Meta Tag-->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:site" content="@RealDevSquad" />
<meta property="twitter:title" content="Real Dev Squad" />
<meta
property="twitter:description"
content="Community of developers who collaborate to build Real software."
/>
<meta
property="twitter:image"
content="https://raw.githubusercontent.com/Real-Dev-Squad/website-www/develop/img/Real-Dev-Squad-preview.png"
/>
<script src="/js/analytics.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-YRG12HRZKB"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-YRG12HRZKB');
</script>
</head>
<body>
<div class="dropdown hide">
<ul class="dropdown-list">
<li class="dropdown-item">
<a class="dropdown-link" href="https://my.realdevsquad.com/">
My Profile
</a>
</li>
<hr class="line" />
<li class="dropdown-item dropdown-link" id="signout-option">
Sign out
</li>
</ul>
</div>
<button id="scroll-to-top-btn">
<img src="./img/arrow_up.svg" alt="scroll to top button" />
</button>
<nav>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<div class="nav-login">
<a
class="btn-login"
href="https://github.com/login/oauth/authorize?client_id=23c78f66ab7964e5ef97"
>
<button class="btn-login-text">
Sign In
<img
src="img/github.png"
alt="GitHub Icon"
height="15px"
width="15px"
/>
</button>
</a>
<div class="user-greet">
<div class="user-greet-msg">Hello, User!</div>
<img class="user-profile-pic" />
</div>
</div>
<ul class="nav-menu">
<li class="nav-logo-li">
<a href="https://realdevsquad.com/">
<img
src="img/Real-Dev-Squad@1x.png"
alt="home nav logo"
height="50px"
width="50px"
/>
</a>
</li>
<li class="home-tab"><a href="http://realdevsquad.com/">Home</a></li>
<li><a href="https://welcome.realdevsquad.com/">Welcome</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="https://members.realdevsquad.com/">Members</a></li>
<li><a href="https://crypto.realdevsquad.com/">Crypto</a></li>
<li><a href="https://status.realdevsquad.com/">Status</a></li>
<li class="nav-login-li">
<a
class="btn-login"
href="https://github.com/login/oauth/authorize?client_id=23c78f66ab7964e5ef97"
>
<button class="btn-login-text">
Sign In With GitHub
<img
src="img/github.png"
alt="GitHub Icon"
height="15px"
width="15px"
/>
</button>
</a>
<div class="user-greet">
<div class="user-greet-msg">Hello, User!</div>
<img class="user-profile-pic" />
</div>
</li>
</ul>
</nav>
<main>
<h1 class="welcome-title">Welcome to Real Dev Squad</h1>
<img
class="logo-img"
src="img/Real-Dev-Squad@1x.png"
alt="Real Dev Squad logo"
/>
<section class="social-media-links">
<a
class="social-media-link"
href="https://www.linkedin.com/company/real-dev-squad/"
target="_blank"
rel="noreferrer"
>
<button class="social-media-links-btn">
<img
class="social-media-logo"
src="img/linkedin.svg"
alt="linkedinlogo"
/></button
></a>
<span>|</span>
<a
class="social-media-link"
href="https://twitter.com/realdevsquad"
target="_blank"
rel="noreferrer"
>
<button class="social-media-links-btn">
<img
class="social-media-logo"
src="img/twitter.svg"
alt="twitterlogo"
/>
</button>
</a>
<span>|</span>
<a
class="social-media-link"
href="https://www.facebook.com/Real-Dev-Squad-108713777585062"
target="_blank"
rel="noreferrer"
>
<button class="social-media-links-btn">
<img
class="social-media-logo"
src="img/facebook.svg"
alt="facebooklogo"
/>
</button>
</a>
<span>|</span>
<a
class="social-media-link"
href="https://instagram.com/realdevsquad"
target="_blank"
rel="noreferrer"
>
<button class="social-media-links-btn">
<img
class="social-media-logo"
src="img/instagram.svg"
alt="instagramlogo"
/>
</button>
</a>
</section>
<section id="section-map" class="element-display-remove">
<h1 class="map-title">Real Dev Squad Users</h1>
<div class="map-box">
<div id="map"></div>
</div>
</section>
<section class="section-description">
<h1 class="description-title">What is Real Dev Squad?</h1>
<div class="description-content">
<p>
Real Dev Squad is an online non-profit open source free fun
community for people in tech, mainly developers, designers, college
students, or product managers, to come, learn and contribute towards
building a platform for our community, that helps upskill everyone.
</p>
<p>
We are an inclusive, respectful, warm, motivated and commited squad
of people who constantly grow together and tackle bigger and harder
challenges to ensure we become some of the best problem solvers,
engineers, designers and more out there.
</p>
</div>
</section>
<section class="section-features hide" id="section-join">
<h1 class="features-title">How can you join?</h1>
<div class="description-content desc-join">
<p>
Our squad focuses on quality and we want to work with people who are
willing to be serious about their growth in the squad. It’s okay if
you don’t know much yet, but it won’t be okay to notput in any
efforts for yourself. We want to value everyone’s time and efforts.
</p>
<a class="btn-join" href="https://realdevsquad.com/join">
Join the Squad
</a>
</div>
</section>
<section class="section-features">
<h1 class="features-title">Why you should consider joining?</h1>
<div class="features-content">
<ul class="cards blog-post">
<!-- Real Development -->
<div class="body-blackout"></div>
<!-- Card 1 -->
<div class="card popup-trigger" data-popup-trigger="one">
<h2 class="title-bullet-points">Real Development</h2>
<div>
<img src="img/cards/real-development.png" alt="real-dev" />
<p>
It’s in the name. We do real development to solve real
challenges. This isn’t a tutorial hell workshop, where you
constantly watch a bunch of videos all the time and label
yourself a developer on LinkedIn.
</p>
</div>
<button
type="button"
class="popup-trigger read-more"
data-popup-trigger="one"
>
Read More
</button>
</div>
<!-- Card 2 -->
<div class="card popup-trigger" data-popup-trigger="two">
<h2 class="title-bullet-points">
Constant coaching and mentoring
</h2>
<div>
<img src="img/cards/constant-coaching.png" alt="real-dev" />
<p>
Our main mentor and coach, <b>Ankush Dharkar</b>, has been
teaching people to solve engineering challenges and code for a
long time. He is himself a full-stack developer, with heavy
expertise on Frontend UI engineering.
</p>
</div>
<button
type="button"
class="popup-trigger read-more"
data-popup-trigger="two"
>
Read More
</button>
</div>
<!-- Card 3 -->
<div class="card popup-trigger" data-popup-trigger="three">
<h2 class="title-bullet-points">Smart squad members</h2>
<div>
<img src="img/cards/smart-squad-members.png" alt="real-dev" />
<p>
All the members who you would work with, our highly active
motivated and driven peer group that you can ask for. You may
or may not have such a group at your workplace :)
</p>
</div>
<button
type="button"
class="popup-trigger read-more"
data-popup-trigger="three"
>
Read More
</button>
</div>
<!-- Card 4 -->
<div class="card popup-trigger" data-popup-trigger="four">
<h2 class="title-bullet-points">Learning and Collaboration</h2>
<div>
<img src="img/cards/learning.png" alt="real-dev" />
<p>
We share our experiences and knowledge, so you will learn far
more and sooner than on your own. We pool and share our
resources to ensure we are some of the best employees
companies will come across.
</p>
</div>
<button
type="button"
class="popup-trigger read-more"
data-popup-trigger="four"
>
Read More
</button>
</div>
<!-- Card 5 -->
<div class="card popup-trigger" data-popup-trigger="five">
<h2 class="title-bullet-points">Engineering for evolution</h2>
<div>
<img
src="img/cards/engineering-for-evolution.png"
alt="real-dev"
/>
<p>
We are not a one-trick pony. We do projects in a lot of
technologies, including standard web technologies like HTML,
CSS, JavaScript, React, Ember, Vue, Node, Go, Rust, and more.
</p>
</div>
<button
type="button"
class="popup-trigger read-more"
data-popup-trigger="five"
>
Read More
</button>
</div>
<!-- Card 6 -->
<div class="card popup-trigger" data-popup-trigger="six">
<h2 class="title-bullet-points">Soft Skills</h2>
<img src="img/cards/soft-skills.png" alt="real-dev" />
<div>
<p>
Being successful in career is much more than just knowing how
to push keys and click around. We ensure that you are the kind
of person who is great at communitcation skills: Both Written
and Spoken.
</p>
</div>
<button
type="button"
class="popup-trigger read-more"
data-popup-trigger="six"
>
Read More
</button>
</div>
<div class="popup-modal shadow modal-card" data-popup-modal="one">
<button class="popup-modal__close">×</button>
<h1 class="modal-title-bullet-points">Real Development</h1>
<div>
<img src="img/cards/real-development.png" alt="real-dev" />
<p>
It’s in the name. We do real development to solve real
challenges. This isn’t a tutorial hell workshop, where you
constantly watch a bunch of videos all the time and label
yourself a developer on LinkedIn.
</p>
<p>
We don’t do unfinished hobby projects here. Our code is peer
reviewed, improved and the open source work that you do here
is displayed on your member’s profile.
</p>
<p>
You are encouraged to show this profile to your potential
recruiters, and this work is more credible because it’s
deployed on production and has real users. You will learn
debugging skills and improving performance and reliability of
the products you make here.
</p>
<p>
You will be given real challenges, which are always slightly
outside your comfort zone and current skills, so that you keep
getting better.
</p>
</div>
</div>
<div class="popup-modal shadow modal-card" data-popup-modal="two">
<button class="popup-modal__close">×</button>
<h2 class="modal-title-bullet-points">
Constant coaching and mentoring
</h2>
<div>
<img src="img/cards/constant-coaching.png" alt="real-dev" />
<p>
Our main mentor and coach, <b>Ankush Dharkar</b>, has been
teaching people to solve engineering challenges and code for a
long time. He is himself a full-stack developer, with heavy
expertise on Frontend UI engineering. He was involved with his
own startup for more than 7 years, then worked at Disney+
Hotstar, was an instructor at career accelerator at Pesto
Tech, and currently working at CrowdStrike.
</p>
<p>
You will always be tracked for updates on our
<b>status site</b>, and we periodically remove our inactive
participants. So, rest assured, there’s no dead-weight.
</p>
<p>
You will always have direction and goals on how to improve.
You won’t be wasting time deciding what to build -- this is
often a problem people don’t realize. People choose hobby
projects they already know how to do. In real life, quite
often you get new unforseen challenges. We prepare you to
tackle them head-on.
</p>
</div>
</div>
<div class="popup-modal shadow modal-card" data-popup-modal="three">
<button class="popup-modal__close">×</button>
<h2 class="modal-title-bullet-points">Smart squad members</h2>
<div>
<img src="img/cards/smart-squad-members.png" alt="real-dev" />
<p>
You will work with other smart developers, some of them who
started with almost no knowledge of coding or development. The
only thing that makes them successful is commitment,
persistence and willingness to admit things they do not know
and do something about it. If you stay shy and don’t
participate, you will be the one at loss.
</p>
<p>
All the members who you would work with, our highly active
motivated and driven peer group that you can ask for. You may
or may not have such a group at your workplace :)
</p>
</div>
</div>
<div class="popup-modal shadow modal-card" data-popup-modal="four">
<button class="popup-modal__close">×</button>
<h2 class="modal-title-bullet-points">
Learning and Collaboration
</h2>
<div>
<img src="img/cards/learning.png" alt="real-dev" />
<p>
We share our experiences and knowledge, so you will learn far
more and sooner than on your own. We pool and share our
resources to ensure we are some of the best employees
companies will come across.
</p>
</div>
</div>
<div class="popup-modal shadow modal-card" data-popup-modal="five">
<button class="popup-modal__close">×</button>
<h2 class="modal-title-bullet-points">
Engineering for evolution
</h2>
<div>
<img
src="img/cards/engineering-for-evolution.png"
alt="real-dev"
/>
<p>
We are not a one-trick pony. We do projects in a lot of
technologies, including standard web technologies like HTML,
CSS, JavaScript, React, Ember, Vue, Node, Go, Rust, and more.
</p>
<p>
We don’t limit ourselves to one thing. We focus on building
amazing basic foundations and then adapting and learning
whatever tech or tool we have to in order to engineer the best
solutions to problems.
</p>
<p>
We are engineers and problem solvers, not the kind of people
who will become outdated with time.
</p>
</div>
</div>
<div class="popup-modal shadow modal-card" data-popup-modal="six">
<button class="popup-modal__close">×</button>
<h2 class="modal-title-bullet-points">Soft Skills</h2>
<div>
<img src="img/cards/soft-skills.png" alt="real-dev" />
<p>
Being successful in career is much more than just knowing how
to push keys and click around. We ensure that you are the kind
of person who is great at communitcation skills: Both Written
and Spoken.
</p>
<p>
We are ourselves a fun group, who believe in helping each
other. You will have a good time!
</p>
</div>
</div>
</ul>
</div>
</section>
<section class="loaders" id="shimmer">
<div class="skeleton-loader">
<div class="avatar-head animate"></div>
<div class="avatar-body animate"></div>
</div>
</section>
<section class="member-imgs" id="members"></section>
<div class="video-holder">
<div class="video-text">Check out what Real Dev Squad is:</div>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/8UPjK1wLnTk?controls=0"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
</iframe>
</div>
<!-- This section is not integrated with APIs and needed to be implemented -->
<!-- <section class="section-cta" id="cta">
<div class="cta">
<div class="cta-text-box">
<h2 class="heading-secondary">
Get Event Notifications right in your Inbox
</h2>
<p class="cta-text">
Learn from the Industry experts, with hands on Experience.
</p>
<form class="cta-form">
<div class="input-element">
<label for="email">Email Address</label>
<input
id="email"
type="email"
placeholder="John@wick.com"
name="user-email"
required
/>
</div>
<button class="btn-cta">Subscribe</button>
</form>
</div>
</div>
</section> -->
<h2 class="next-event-header info-note highlighted-text">
You can check out all our events below!!
</h2>
<h3 class="past-events-header">Upcoming Features:</h3>
<div class="events-box">
<a href="/art-feature.html">Art Feature</a>
</div>
<h3 class="past-events-header">Upcoming Events:</h3>
<div class="events-box">
<a href="./event-APIs-made-Easier-April-2021.html">APIs made Easier</a>
</div>
<h3 class="past-events-header">Past Events:</h3>
<div class="events-box">
<a href="./event-dynamic-programming-october-2020.html"
>Dynamic Programming</a
>
<span>|</span>
<a href="./event-nodejs-workshop-october-2020.html"
>NodeJS Workshop Part I</a
>
<span>|</span>
<a href="./event-web-mini-conf-july-2020.html"
>Web-Mini-Conf-July-2020</a
>
<span>|</span>
<a href="./event-react-hooks-july-2020.html">React Hooks Session</a>
<span>|</span>
<a href="./event-ssr-correctly-august-2020.html">SSR the right way</a>
</div>
<h3 class="info-note">
To know how this page is developed,
<br />
join our Discord channel by contacting one of
<a href="https://members.realdevsquad.com">our existing members</a>
<br />
or our
<a href="https://welcome.realdevsquad.com/faq"> FAQ section</a>.
</h3>
</main>
<footer>
<p class="info-repo">
The contents of this website are deployed from this
<a
href="https://github.com/Real-Dev-Squad/website"
target="_blank"
rel="noopener noreferrer"
>open sourced repo</a
>
</p>
</footer>
<script src="https://api.mapbox.com/mapbox-gl-js/v2.10.0/mapbox-gl.js"></script>
<script type="module" src="js/index.js"></script>
<script type="module" src="js/animate.js"></script>
<script src="js/navbar.js"></script>
<script src="js/scrollBtn.js"></script>
<script src="js/darkmode.js"></script>
<script src="js/featureFlag.js"></script>
<script type="module" src="js/map.js"></script>
<script type="module" src="js/fetchUserData.js" defer></script>
</body>
</html>