-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathindex.html
More file actions
859 lines (713 loc) · 37.6 KB
/
index.html
File metadata and controls
859 lines (713 loc) · 37.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head prefix="og: https://ogp.me/ns#">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- =====BOX ICONS===== -->
<link href='https://cdn.jsdelivr.net/npm/boxicons@2.0.5/css/boxicons.min.css' rel='stylesheet'>
<!-- ===== CSS ===== -->
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>SurPath Hub</title>
<!-- SEO-->
<meta property="og:title" content="SurPath Hub" />
<meta property="og:type" content="website" />
<meta property="og:description"
content="SurPath Hub is a welcoming and inclusive open-source community that helps every aspiring developer or career shifter in the Asia region." />
<meta property="og:url" content="https://surpathhub.org" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="/assets/img/SurPathHub_preview_thumbnail.JPG" />
<meta name="description"
content="SurPath Hub is a welcoming and inclusive open-source community that helps every aspiring developer or career shifter in the Asia region." />
</head>
<body>
<!--===== HEADER =====-->
<header class="l-header">
<nav class="nav bd-grid">
<input type="checkbox" name="" id="check">
<div class="nav-brand" style="--i:2.1s">
<a href="#">
<div class="logo-container">
<a href="#">
<img src="assets/img/SURPATH_LOGO.svg" alt="">
</a>
</div>
</div>
<!-- <div class="nav__toggle" id="nav-toggle">
<i class='bx bx-menu'></i>
</div>
<div class="nav__menu" id="nav-menu">
<div class="nav__close" id="nav-close">
<i class='bx bx-x'></i>
</div> -->
<div class="nav-btn">
<div class="nav-links">
<ul class="nav__list">
<li class="nav__item" style="--i:.6s"><a href="#" class="nav__link active">Home</a></li>
<li class="nav__item" style="--i:.85s"><a href="#about" class="nav__link">About</a></li>
<li class="nav__item" style="--i:1.1s"><a href="#project" class="nav__link">Project</a></li>
<li class="nav__item" style="--i:1.1s"><a href="#blogs" class="nav__link">Blogs</a></li>
<li class="nav__item" style="--i:1.3s"><a href="#join" class="nav__link">Join</a></li>
<li class="nav__item" style="--i:1.8s"><a href="#team" class="nav__link">Team</a></li>
</ul>
</div>
</div>
</div>
<div class="hamburger-menu-container">
<div class="hamburger-menu">
<div></div>
</div>
</div>
</nav>
</header>
<main class="l-main" id="main">
<!--===== HOME =====-->
<section class="home" id="home">
<div class="home__container bd-grid">
<div class="home__data">
<div class="console">
<h1 class="home__title"> SurPath Hub</h1>
<p class="home__description">An inclusive community that brings Open Source closer to the
Filipino students. We are here to explore every opportunity available on the internet.
</p>
</div>
<div class="home__buttons">
<a href="#" class="home__link discordLink">Join Discord</a>
<a href="#" class="home__link learnMoreLink">Learn More</a>
</div>
</div>
<div class="home__img iframe-container">
<iframe src="https://www.youtube.com/embed/ZCmqeOHhjzk" allowfullscreen></iframe>
</div>
</div>
</section>
<!--===== PART OF SURPARH HUB ======-->
<section class="part_of_surparh_hub__section" id="Part of Surparh Hub">
<h1>Why be part of SurPath Hub?</h1>
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt<br /> anim id est
laborum — semper quis lectus nulla at volutpat diam ut venenatis.</p>
<div class="items_wrapper">
<div class="item">
<img src="/img/grow_network_icon.svg" alt="">
<p>Grow network</p>
</div>
<div class="item">
<img src="/img/acce_career_icon.svg" alt="">
<p>Accelerate your career</p>
</div class="item">
<div class="item">
<img src="/img/mentorship_icon.svg" alt="">
<p>Mentorship</p>
</div>
<div class="item">
<img src="/img/access_event_icon.svg" alt="">
<p>Access Event</p>
</div>
<div class="item">
<img src="/img/intership_icon.svg" alt="">
<p>Internship</p>
</div>
<div class="item">
<img src="/img/swag_rewards_icon.svg" alt="">
<p>SWAG Rewards</p>
</img>
</div>
</section>
<!--===== PART OF SURPARH HUB ======-->
<section class="part_of_surparh_hub__section" id="Part of Surparh Hub">
<h1>Why be part of SurPath Hub?</h1>
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt<br/> anim id est laborum — semper quis lectus nulla at volutpat diam ut venenatis.</p>
<div class="items_wrapper">
<div class="item">
<img src="/img/grow_network_icon.svg" alt="">
<p>Grow network</p>
</div>
<div class="item">
<img src="/img/acce_career_icon.svg" alt="">
<p>Accelerate your career</p>
</div class="item">
<div class="item">
<img src="/img/mentorship_icon.svg" alt="">
<p>Mentorship</p>
</div>
<div class="item">
<img src="/img/access_event_icon.svg" alt="">
<p>Access Event</p>
</div>
<div class="item">
<img src="/img/intership_icon.svg" alt="">
<p>Internship</p>
</div>
<div class="item">
<img src="/img/swag_rewards_icon.svg" alt="">
<p>SWAG Rewards</p>
</img>
</div>
</section>
<!--===== JOIN OUR COMMUNITY =====-->
<section class="join_community__section section" id="Join our Community Program">
<h2 class="section-title">Join our Community Program</h2>
<span class="join__headline">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum — semper quis lectus nulla at volutpat diam ut venenatis.</span>
<section class="cards section bd-grid" id="Community Program">
<div class="join_card">
<div class="join__container center">
<div class="support__icon">
<img src="/assets/img/collection.png" alt="Content Creator">
</div>
<h3>Content Creator</h3>
<div class="about__text">
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat.
</div>
<button class="join_community__button">Apply now!</button>
</div>
</div>
<div class="join_card">
<div class="join__container center">
<div class="support__icon">
<img src="/assets/img/collection.png" alt="Community Volunteer">
</div>
<h3>Community Volunteer</h3>
<div class="about__text">
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat.
</div>
<button class="join_community__button">Apply now!</button>
</div>
</div>
</section>
</section>
<!--===== ABOUT =====-->
<section class="about section" id="about">
<h2 class="section-title">About</h2>
<div class="about__container bd-grid">
<div class="about__img">
<img src="assets/img/undraw_open_source_1qxw.svg" alt="">
</div>
<div>
<h2 class="about__subtitle">SurPath Hub</h2>
<span class="about__profession">Open Source Community</span>
<p class="about__text">SurPath Hub is a welcoming and inclusive open-source community that helps
every aspiring developer or career shifter in the Asia Region. We are here to learn, get along
with your passion, and know your expertise in the field. Members
of the community will be able to get a chance to get swag, to join some events, to get access to
the learning platforms, and much more.</p>
<div class="about__social">
<a href="https://github.com/SurPathHub" target="_blank" class="about__social-icon"><i
class='bx bxl-github'></i></a>
<a href="https://web.facebook.com/SurPathHub" target="_blank" class="about__social-icon"><i
class='bx bxl-facebook'></i></a>
<a href="https://www.linkedin.com/company/surpathhub/" target="_blank"
class="about__social-icon"><i class='bx bxl-linkedin'></i></a>
<a href="https://instagram.com/surpathhub" target="_blank" class="about__social-icon"><i
class='bx bxl-instagram'></i></a>
<a href="https://twitter.com/SurPathHub" target="_blank" class="about__social-icon"><i
class='bx bxl-twitter'></i></a>
<a href="https://www.youtube.com/channel/UCjA75ni_WO_AoyWsLxnnwjA" target="_blank"
class="about__social-icon"><i class='bx bxl-youtube'></i></a>
</div>
</div>
</div>
</section>
<!-- ====== PROJECTS =======-->
<section class="projects-section">
<h2 class="section-title">Project Highlights</h2>
<section class="cards section" id="project">
<div class="card">
<div class="card__image"
style="background-image: url('https://user-images.githubusercontent.com/73097560/132696323-1451874c-1b3a-401a-9cbe-f5945a110194.png')">
</div>
<div class="content">
<div class="card__title">Starter Kit</div>
<div class="card__snippet">Begin your coding career from here. Even if you drop out of college
because of financial problems or even you have zero knowledge, we will help you to grow and
get you into the tech industry.
</div>
<a class="card__button" href="https://github.com/SurPathHub/starter-kit"
target="_blank">view</a>
</div>
</div>
<div class="card">
<div class="card__image"
style="background-image: url('https://user-images.githubusercontent.com/73097560/132695643-30f2e3a4-13a3-4559-9c61-828a775debe8.png')">
</div>
<div class="content">
<div class="card__title">Hacktoberfest Philippines</div>
<div class="card__snippet">This repository will help you practice for the incoming
Hacktoberfest—a month-long celebration of open-source software.
</div>
<a class="card__button" href="https://github.com/SurPathHub/hacktoberfest-philippines"
target="_blank">view</a>
</div>
</div>
<div class="card">
<div class="card__image"
style="background-image: url('https://user-images.githubusercontent.com/73097560/132695485-36df48f7-f806-4f0f-9c7b-62de6e05f42e.png')">
</div>
<div class="content">
<div class="card__title">GitHub Profile PH</div>
<div class="card__snippet">This repository contains list of GitHub profiles that you can use for
inspiration. Feel free to add your awesome GitHub profile
</div>
<a class="card__button" href="https://github.com/SurPathHub/github-profile-ph"
target="_blank">view</a>
</div>
</div>
<div class="card">
<div class="card__image"
style="background-image: url('https://user-images.githubusercontent.com/73097560/132696633-09ac09e0-5aa7-481f-b72c-0da77d877156.png')">
</div>
<div class="content">
<div class="card__title">Dayong</div>
<div class="card__snippet">Dayong is dedicated to helping Discord servers build and manage their
communities.
</div>
<a class="card__button" href="https://github.com/SurPathHub/Dayong" target="_blank">view</a>
</div>
</div>
<div class="card">
<div class="card__image"
style="background-image: url('https://user-images.githubusercontent.com/73097560/132696498-c463e730-1b05-4089-801d-b5681aaa6cb1.png')">
</div>
<div class="content">
<div class="card__title">Community Website</div>
<div class="card__snippet">This repository is dedicated to our community's website.
Contributions are welcomed to make our website more community friendly.
</div>
<a class="card__button" href="https://github.com/SurPathHub/SurPathHub.github.io"
target="_blank">view</a>
</div>
</div>
<div class="card">
<div class="card__image"
style="background-image: url('https://user-images.githubusercontent.com/73097560/132696395-5d3cda57-d56f-4043-be31-521afe77d32c.png')">
</div>
<div class="content">
<div class="card__title">Support</div>
<div class="card__snippet">
Ask for Community Support / Know how to join in this community / More information about
community
</div>
<a class="card__button" href="https://github.com/SurPathHub/support" target="_blank">view</a>
</div>
</div>
</section>
</section>
<!-- ====== BLOGS =======-->
<section class="blogs-section" id="blogs">
<h2 class="section-title">Read Our Community Blogs</h2>
<span class="blog__profession">View all the blogs > </span>
<section class="cards section">
<div class="blog__card">
<div class="blog__image"
style="background-image: url('https://res.cloudinary.com/practicaldev/image/fetch/s--7OWnH7np--/c_imagga_scale,f_auto,fl_progressive,h_420,q_auto,w_1000/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/45zrbm69iagzef6w1w5u.png')">
</div>
<div class="blog__content">
<div class="blog__snippet">BY <strong>Kinanee Samson </strong>ON DEV.TO
</div>
<div class="blog__title">Implenting JWT's from scratch.</div>
<div class="blog__snippet">Jsonwebtokens or JWT as they are otherwise known is an open standard
for
creating a data signature that contains a payload in JSON format. A JWT is signed with
a private key and/or public key.
</div>
<a class="blog__button" href="https://dev.to/kalashin1/implenting-jwts-from-scratch-42bj"
target="_blank">Read More</a>
<div class="info">
<i class='ion-icon-1 bx bx-time'></i>
<p class="info">Posted on Oct 7</p>
<i class='ion-icon bx bx-comment-detail'></i>
<p class="info"><a>13 comments</a></p>
</div>
</div>
</div>
<div class="blog__card">
<div class="blog__image"
style="background-image: url('https://www.softwebsolutions.com/wp-content/uploads/2020/10/golang-Programing.jpg')">
</div>
<div class="blog__content">
<div class="blog__snippet">BY <strong>kuldeep_singh </strong>ON DEV.TO
</div>
<div class="blog__title">Advantages and Disadvantages of Go.</div>
<div class="blog__snippet">In this article we are going to learn about , What are the advantages
of using go and why it’s so popular now between developers, but first lemme tell you what go
is and why it was created.
</div>
<a class="blog__button" href="https://dev.to/mavensingh/advantages-and-disadvantages-of-go-5gha"
target="_blank">Read More</a>
<div class="info">
<i class='ion-icon-1 bx bx-time'></i>
<p class="info">Posted on Oct 8</p>
<i class='ion-icon bx bx-comment-detail'></i>
<p class="info"><a>13 comments</a></p>
</div>
</div>
</div>
</section>
</section>
<!-- ====== SUPPORT =======-->
<section class="support-section">
<h2 class="section-title">Support Our Program</h2>
<p class="support-para">We like to continue what we are doing, joining our sponsorship program will help us
<br /> to continue our mission and provide perks to our community program
</p>
<section class="cards section bd-grid" id="support">
<div class="scard">
<div class="support__container">
<div class="support__icon">
<img src="https://user-images.githubusercontent.com/73097560/194744542-5a0b6e80-9861-4936-aee3-f659f12ed4ff.png"
alt="Platinum">
</div>
<h3>Platinum</h3>
<div class="support__features">
Ask us about pre-defined sponsoring package or create your own
</div>
</div>
</div>
<div class="scard">
<div class="support__container">
<div class="support__icon">
<img src="https://user-images.githubusercontent.com/73097560/194744541-1cc89030-bee9-463e-8a37-8d72a4cbfb99.png"
alt="Gold">
</div>
<h3>Gold</h3>
<div class="support__features">
<div class="benefits">Benefits</div>
<ul>
<li><i class='bx bx-check'></i> Event Promotion</li>
<li><i class='bx bx-check'></i> Product Advertisement</li>
<li><i class='bx bx-check'></i> Logo and description on website</li>
</ul>
</div>
</div>
</div>
<div class="scard">
<div class="support__container">
<div class="support__icon">
<img src="https://user-images.githubusercontent.com/73097560/194744538-84c7095e-82da-4997-b8b4-c1b449e997bf.png"
alt="Silver">
</div>
<h3>Silver</h3>
<div class="support__features">
<div class="benefits">Benefits</div>
<ul>
<li><i class='bx bx-check'></i> Logo and description on website</li>
<li><i class='bx bx-check'></i> 2 tickets for in-person event</li>
</ul>
</div>
</div>
</div>
</section>
<div class="learn__more"><a href="learn-more.html" target="_blank"> Learn more <span>></span></a></div>
</section>
<!-- ====== TEAM =======-->
<section class="team section bd-grid" id="team">
<h2 class="section-title">Our Team</h2>
<div class="team__container">
<div class="team__card">
<div class="team__content">
<div class="team__img"><img src="https://avatars.githubusercontent.com/u/73097560?v=4" alt="">
</div>
<div class="team__text">
<h3>Vincent Villafuerte</h3><br><span>Founder</span>
</div>
</div>
<ul class="team__icon">
<li>
<a href="https://github.com/vinzvinci" target="_blank"><i class='bx bxl-github'></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/vinzvinci/" target="_blank"><i
class='bx bxl-linkedin-square'></i></a>
</li>
<li>
<a href="https://twitter.com/vinzvinci" target="_blank"><i class='bx bxl-twitter'></i></a>
</li>
<li>
<a href="https://www.instagram.com/vinzvinci/" target="_blank"><i
class='bx bxl-instagram'></i></a>
</li>
</ul>
</div>
<div class="team__card">
<div class="team__content">
<div class="team__img"><img src="https://avatars.githubusercontent.com/u/59194525?v=4"
alt="tian"></div>
<div class="team__text">
<h3>Christian Igbaras</h3><br><span>Co-Founder</span>
</div>
</div>
<ul class="team__icon">
<li>
<a href="https://github.com/Tiansing" target="_blank"><i class='bx bxl-github'></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/christian-igbaras-41b8a8203/" target="_blank"><i
class='bx bxl-linkedin-square'></i></a>
</li>
<li>
<a href="https://twitter.com/christianigbar1" target="_blank"><i
class='bx bxl-twitter'></i></a>
</li>
<li>
<a href="https://www.facebook.com/christian.igbaras/" target="_blank"><i
class='bx bxl-facebook-square'></i></a>
</li>
</ul>
</div>
<div class="team__card">
<div class="team__content">
<div class="team__img"><img src="https://avatars.githubusercontent.com/u/77573336?v=4" alt="">
</div>
<div class="team__text">
<h3>Mark Ryan Jancorda</h3><br><span>Community Manager</span>
</div>
</div>
<ul class="team__icon">
<li>
<a href="https://github.com/Ryjin210" target="_blank"><i class='bx bxl-github'></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/mark-ryan-jancorda-6916a6204/" target="_blank"><i
class='bx bxl-linkedin-square'></i></a>
</li>
<li>
<a href="https://twitter.com/Ryjinx210" target="_blank"><i class='bx bxl-twitter'></i></a>
</li>
<li>
<a href="#" target="_blank"><i class='bx bxl-instagram'></i></a>
</li>
</ul>
</div>
<div class="team__card">
<div class="team__content">
<div class="team__img"><img src="https://avatars.githubusercontent.com/u/46364770?v=4" alt="">
</div>
<div class="team__text">
<h3>Ma. Nikka Herrera</h3><br><span>Community Manager</span>
</div>
</div>
<ul class="team__icon">
<li>
<a href="https://github.com/nikxherrera" target="_blank"><i class='bx bxl-github'></i></a>
</li>
<li>
<a href="https://linkedin.com/in/nikxherrera" target="_blank"><i
class='bx bxl-linkedin-square'></i></a>
</li>
<li>
<a href="https://twitter.com/nikxherrera" target="_blank"><i class='bx bxl-twitter'></i></a>
</li>
<li>
<a href="#" target="_blank"><i class='bx bxl-instagram'></i></a>
</li>
</ul>
</div>
<div class="team__card">
<div class="team__content">
<div class="team__img"><img src="https://avatars.githubusercontent.com/u/65858941?v=4" alt="">
</div>
<div class="team__text">
<h3>Hju Kneyck Flores</h3><br><span>Ops & Project Manager</span>
</div>
</div>
<ul class="team__icon">
<li>
<a href="https://github.com/huenique" target="_blank"><i class='bx bxl-github'></i></a>
</li>
<li>
<a href="#" target="_blank"><i class='bx bxl-linkedin-square'></i></a>
</li>
<li>
<a href="#" target="_blank"><i class='bx bxl-twitter'></i></a>
</li>
<li>
<a href="#" target="_blank"><i class='bx bxl-instagram'></i></a>
</li>
</ul>
</div>
<div class="team__card">
<div class="team__content">
<div class="team__img"><img src="https://avatars.githubusercontent.com/u/77091115?v=4"
alt="xyrelljoi"></div>
<div class="team__text">
<h3>Xyrell Joi Quirona</h3><br><span>Moderator</span>
</div>
</div>
<ul class="team__icon">
<li>
<a href="https://github.com/xyrelljoi/" target="_blank"><i class='bx bxl-github'></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/xyrell-joi-quirona-bb6b14136/" target="_blank"><i
class='bx bxl-linkedin-square'></i></a>
</li>
<li>
<a href="https://twitter.com/seevera_xyrell" target="_blank"><i
class='bx bxl-twitter'></i></a>
</li>
<li>
<a href="https://www.instagram.com/saireljoi/" target="_blank"><i
class='bx bxl-instagram'></i></a>
</li>
</ul>
</div>
<div class="team__card">
<div class="team__content">
<div class="team__img"><img src="https://avatars.githubusercontent.com/u/75724780?v=4" alt="">
</div>
<div class="team__text">
<h3>Jose Paolo Indiongco</h3><br><span>Moderator</span>
</div>
</div>
<ul class="team__icon">
<li>
<a href="https://github.com/jpzs444" target="_blank"><i class='bx bxl-github'></i></a>
</li>
<li>
<a href="#" target="_blank"><i class='bx bxl-linkedin-square'></i></a>
</li>
<li>
<a href="https://twitter.com/jpzs444" target="_blank"><i class='bx bxl-twitter'></i></a>
</li>
<li>
<a href="#" target="_blank"><i class='bx bxl-instagram'></i></a>
</li>
</ul>
</div>
<div class="team__card">
<div class="team__content">
<div class="team__img"><img src="https://avatars.githubusercontent.com/u/80801050?v=4" alt="">
</div>
<div class="team__text">
<h3>Chraem</h3><br><span>Moderator</span>
</div>
</div>
<ul class="team__icon">
<li>
<a href="https://github.com/chraem" target="_blank"><i class='bx bxl-github'></i></a>
</li>
<li>
<a href="#" target="_blank"><i class='bx bxl-linkedin-square'></i></a>
</li>
<li>
<a href="https://twitter.com/chraem2" target="_blank"><i class='bx bxl-twitter'></i></a>
</li>
<li>
<a href="#" target="_blank"><i class='bx bxl-instagram'></i></a>
</li>
</ul>
</div>
<!-- Aristosa - Mentor -->
<div class="team__card">
<div class="team__content">
<div class="team__img"><img src="https://avatars.githubusercontent.com/u/84888155?v=4" alt="">
</div>
<div class="team__text">
<h3>Ryan Aristosa</h3><br><span>Mentor</span>
</div>
</div>
<ul class="team__icon">
<li>
<a href="https://github.com/rynrsts" target="_blank"><i class='bx bxl-github'></i></a>
</li>
<li>
<a href="https://www.linkedin.com/in/rynrsts" target="_blank"><i
class='bx bxl-linkedin-square'></i></a>
</li>
<li>
<a href="https://twitter.com/rynrsts" target="_blank"><i class='bx bxl-twitter'></i></a>
</li>
<li>
<a href="https://www.facebook.com/rynrsts/" target="_blank"><i
class='bx bxl-facebook-square'></i></a>
</li>
</ul>
</div>
</div>
</section>
</main>
<!--========== FOOTER ==========-->
<footer class="footer">
<div class="footer-left">
<p>In the tech industry & open-source world, it doesn't matter who you are, everyone will love you and will
appreciate your idea even it is small. Even if you drop out of college because of financial problems or
even you have zero knowledge, we will help you to grow and get you into the tech industry.</p>
</div>
<ul class="footer-right">
<li>
<h2>Follow Us</h2>
<ul class="box">
<li><a href="https://github.com/SurPathHub" target="_blank">GitHub</a></li>
<li><a href="https://web.facebook.com/SurPathHub/" target="_blank">Facebook</a></li>
<li><a href="https://www.linkedin.com/company/surpathhub/" target="_blank">LinkedIn</a></li>
<li><a href="https://twitter.com/SurPathHub" target="_blank">Twitter</a></li>
<li><a href="https://www.youtube.com/channel/UCjA75ni_WO_AoyWsLxnnwjA" target="_blank">YouTube</a>
</li>
</ul>
</li>
<li>
<h2>Other Projects</h2>
<ul class="box">
<li><a href="https://github.com/SurPathHub/events">Events</a></li>
<li><a href="#">Coming Soon</a></li>
<li><a href="#">Coming Soon</a></li>
<li><a href="#">Coming Soon</a></li>
</ul>
</li>
<li>
<h2>Location</h2>
<ul class="box">
<li><a href="#">Asia</a></li>
</ul>
</li>
</ul>
<p class="footer__copy">© 2021 SurPath Hub. All rights reserved</p>
<p class="footer__credits">
<ul class="pre__list">
<li class="powered__by">Powered by:</li>
<li>
<a class="list__link" href="https://github.com/" target="_blank">
<img class="list__link" src="https://img.icons8.com/ios-glyphs/30/ffffff/github.png">
GitHub
</a>
</li>
<li>
<a class="list__link" href="https://devprotocol.xyz/" target="_blank">
<img class="list__link"
src="https://user-images.githubusercontent.com/73097560/130181401-80312b73-1642-4009-affc-e10daf976025.png"
height="30px" width="30px">
Dev Protocol
</a>
</li>
</ul>
</p>
</footer>
<!-- //js code for console type animation -->
<script>
consoleText()
function consoleText() {
var str = document.getElementsByClassName('console')[0].innerHTML.toString();
var i = 0;
document.getElementsByClassName('console')[0].innerHTML = "";
setTimeout(function () {
var se = setInterval(function () {
i++;
document.getElementsByClassName('console')[0].innerHTML = str.slice(0, i) + "|";
if (i == str.length) {
clearInterval(se);
document.getElementsByClassName('console')[0].innerHTML = str;
}
}, 30);
}, 0);
}
</script>
<!-- end of animation -->
<!--===== SCROLL JS =====-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--===== MAIN JS =====-->
<script src="assets/js/main.js"></script>
</body>
</html>