forked from Its-Aman-Yadav/Community-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1251 lines (1083 loc) · 51.3 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>
<meta charset="utf-8">
<title>Open Source Village</title>
<!-- Meta tags-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Aman Yadav" />
<meta name="keywords"
content=", village community, collaboration, resource sharing, communication, transparency, collective decision-making, local projects, digital tools.">
<meta name="description"
content="Welcome to this open-source village community site! Designed to facilitate collaboration, resource sharing, and communication among residents, it promotes transparency, collective decision-making, and the development of local projects through accessible and open-source digital tools.">
<meta name="language" content="English">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://community-site-theta.vercel.app/" />
<meta property="og:title" content="Open Source Village">
<meta name="og:description"
content="Welcome to this open-source village community site! Designed to facilitate collaboration, resource sharing, and communication among residents, it promotes transparency, collective decision-making, and the development of local projects through accessible and open-source digital tools.">
<script src="https://kit.fontawesome.com/90889e6878.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Bootstrap JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<!-- stylesheets css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="css/animate.min.css">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Gorditas&family=Playpen+Sans:wght@100;500&family=Poppins&family=Prompt&family=Roboto&family=Satisfy&family=Ubuntu:wght@300;400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/et-line-font.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/vegas.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<link href='https://fonts.googleapis.com/css?family=Rajdhani:400,500,700' rel='stylesheet' type='text/css'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- remixicon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.2.0/remixicon.css" crossorigin="">
<link rel="stylesheet" href="css/swiper-bundle.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<!-- login modal -->
<div id="myModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<button type="button" class="close" data-dismiss="modal">×</button>
<div class="modal-header">
<div class="flex">
<img src="images/logo2.jpeg" alt="" class="logo">
<h4 class="modal-title">Open Source Village</h4>
</div>
</div>
<div class="modal-body text-center">
<h1>Start your journey now</h1>
<p>If you don't have an account yet, register and start your journey.</p>
<a class="pre-order-btn" href="login.html">Login/Register</a>
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> -->
</div>
</div>
</div>
</div>
<script>
$(window).ready(function(){
$('#myModal').modal('show');
});
</script>
<!-- Chatbot integration section -->
<script src="https://cdn.botpress.cloud/webchat/v1/inject.js"></script>
<script>
window.botpressWebChat.init({
"composerPlaceholder": "Ask me anything!",
"botConversationDescription": "Welcome to Open Source Village!",
"botId": "88f3d139-4a56-4ac6-a192-d147bc4373d7",
"hostUrl": "https://cdn.botpress.cloud/webchat/v1",
"messagingUrl": "https://messaging.botpress.cloud",
"clientId": "88f3d139-4a56-4ac6-a192-d147bc4373d7",
"webhookId": "a909bd46-1d71-484d-8551-58afe6d64c1e",
"lazySocket": true,
"themeName": "prism",
"botName": "Open Source Village",
"avatarUrl": "https://media.licdn.com/dms/image/D4D0BAQE8E3S0-vt8TQ/company-logo_200_200/0/1683703353326?e=1724889600&v=beta&t=to32718A4rdNZM_XmtjHN8xG4LKE9UYLhVnuoyB3nt8",
"stylesheet": "https://webchat-styler-css.botpress.app/prod/328bf234-c9e7-4f98-9c94-69f1a0877b98/v99808/style.css",
"frontendVersion": "v1",
"useSessionStorage": true,
"enableConversationDeletion": true,
"theme": "prism",
"themeColor": "#2563eb",
"allowedOrigins": []
});
</script>
<!-- preloader section -->
<section class="preloader">
<div class="sk-circle">
<div class="sk-circle1 sk-child"></div>
<div class="sk-circle2 sk-child"></div>
<div class="sk-circle3 sk-child"></div>
<div class="sk-circle4 sk-child"></div>
<div class="sk-circle5 sk-child"></div>
<div class="sk-circle6 sk-child"></div>
<div class="sk-circle7 sk-child"></div>
<div class="sk-circle8 sk-child"></div>
<div class="sk-circle9 sk-child"></div>
<div class="sk-circle10 sk-child"></div>
<div class="sk-circle11 sk-child"></div>
<div class="sk-circle12 sk-child"></div>
</div>
</section>
<script type="text/javascript">
window.addEventListener("scroll", function () {
var header = document.querySelector("nav");
header.classList.toggle("sticky", window.scrollY > 50)
})
</script>
<!-- Navbar -->
<div class="navbar">
<nav>
<div id="ham-menu">
<div id="bars" onclick="togMenu(this)">
<div id="first" class="bar"></div>
<div id="sec" class="bar"></div>
<div id="third" class="bar"></div>
</div>
<div id="nav-menu">
<ul>
<li class="icons">
<i class="fa-solid fa-house"></i>
<a class="nav-link" href="#home">Home</a>
</li>
<li class="icons">
<i class="fa-solid fa-address-card"></i>
<a class="nav-link" href="#about">About</a>
</li>
<li class="icons">
<i class="fa-solid fa-screwdriver-wrench"></i>
<a class="nav-link" href="#services">Services</a>
</li>
<li class="icons"><i class="fa-solid fa-pen-to-square"></i><a class="nav-link" href="#testimonials">Reviews</a></li>
<li class="icons"><i class="fa-solid fa-address-book"></i><a class="nav-link" href="#contact">Contact</a></li>
<li class="icons"><i class="fa-solid fa-right-to-bracket"></i><a href="login.html">Login/Register</a></li>
</ul>
</div>
</div>
<a class="logo-link" href="#home">
<div class="logo-title">
<a href="profile.html" class="href"> <img class="logo" src="images/logo2.jpeg" alt="logo"></a>
<span class="logo-text">Open Source Village</span>
</div>
<!-- <div>
<span class="logo-subtext">Source</span>
</div> -->
</a>
<ul>
<li><i class="fa-solid fa-house"></i><a class="nav-link" href="#home">Home</a></li>
<li><i class="fa-solid fa-address-card"></i><a class="nav-link" href="#text">About</a></li>
<li><i class="fa-solid fa-screwdriver-wrench"></i><a class="nav-link" href="#services">Services</a></li>
<li><i class="fa-solid fa-pen-to-square"></i><a class="nav-link" href="#testimonials">Reviews</a></li>
<li><i class="fa-solid fa-address-book"></i><a class="nav-link" href="#contact">Contact</a></li>
<li><i class="fa-solid fa-right-to-bracket"></i><a href="login.html">Login/Register</a></li>
</ul>
<div class="toggle-container" style="top: 0px;">
<input type="checkbox" id="checkbox" class="switch-checkbox">
<label class="theme-switch" for="checkbox">
<div class="toggle-button">
<span class="light-mode-icon"><img src="./images/sun.svg"></span>
<span class="dark-mode-icon"><img src="./images/moon.svg"></span>
</div>
</label>
</div>
<!--Styles for side menu-->
<style>
#bars{
display: none;
}
.bar{
width:27px;
height:3px;
background-color:white;
margin: 7px;
border-radius: 20px;
transition: all 0.4s;
}
.cliked #first{
transform: translate(0, 10px) rotate(-45deg);
}
.cliked #sec {opacity: 0;}
.cliked #third {
transform: translate(0, -10px) rotate(45deg);
}
#nav-menu{
display: none;
opacity: 0;
position: fixed;
top:63px;
z-index: 1;
margin-top: 27px;
width:auto;
height: 100vh;
background: rgba(0, 0, 0, 0.7);
color: white;
backdrop-filter: blur(4px);
padding: 20px 0;
border: none;
transition: all 0.6s;
}
#nav-menu ul{
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: inherit;
width: auto;
position: absolute;
top:0;
right:inherit;
padding: 20px;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(4px);
}
#nav-menu ul li{
display: none;
margin: 10px 20px 0 30px;
}
@media (max-width: 858px) {
#bars{
display: block;
position: absolute;
left:10px;
top:50%;
transform: translate(0,-55%);
}
#nav-menu{
left:0;
}
#nav-menu ul li{
display:flex;
}
#nav-menu ul li a:hover{
color: white;
background-color: #e8701f;
transition: color 0s, background-color 0s;
border-radius: 20px;
background: rgb(239, 188, 0);
background: linear-gradient( 90deg, rgba(239, 188, 0, 1) 47%, rgba(204, 133, 110, 1) 100% );
}
#nav-menu.sticky-nav-menu ul{
background: linear-gradient( rgba(249, 177, 43, 0.7),rgb(247, 113, 3));
color: white !important;
border-bottom: 1.5px solid rgb(0, 0, 0);
backdrop-filter: blur(3px);
}
#nav-menu.sticky-nav-menu{
top:52px;
}
}
</style>
<script>
function togMenu(obj){
var headMenu = document.querySelector('.navbar nav');
var sideMenu = document.getElementById('nav-menu');
obj.classList.toggle("cliked");
if(obj.classList.contains('cliked')){
headMenu.style.borderBottomLeftRadius = '0px';
sideMenu.style.display='block';
sideMenu.style.opacity='1';
}else{
headMenu.style.borderBottomLeftRadius=headMenu.style.borderBottomRightRadius;
sideMenu.style.opacity='0';
sideMenu.style.display='none';
}
}
window.addEventListener("scroll", function () {
var sideMenu = document.getElementById('nav-menu');
sideMenu.classList.toggle("sticky-nav-menu", window.scrollY > 50)
})
</script>
<style>
.toggle-container {
transform: translate(-50%, -50%);
display: flex;
align-items: center;
justify-content: center;
margin: 30px 0 0 30px;
}
.light-mode .toggle-container {
right: -4px;
top: 15px;
}
/* Hidden Checkbox */
.switch-checkbox {
display: none;
}
.theme-switch {
position: relative;
width: 45px;
height: 30px;
background-color: #ccc;
border-radius: 20px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
padding: 0 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.5s ease;
}
.theme-switch .light-mode-icon,
.theme-switch .dark-mode-icon {
font-size: 19px;
position: absolute;
cursor: pointer;
top: 50%;
transform: translateY(-50%);
transition: opacity 0.5s ease, color 0.5s ease;
}
.theme-switch .light-mode-icon {
color: #f39c12;
}
.theme-switch .dark-mode-icon {
color: #bdc3c7;
opacity: 0;
}
.toggle-button {
position: absolute;
top: 3px;
left: 3px;
width: 25px;
height: 25px;
background-color: #fff;
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
transition: transform 0.5s ease, background-color 0.5s ease;
}
/* Checkbox Checked State */
.switch-checkbox:checked + .theme-switch {
background-color: #34495e;
}
.switch-checkbox:checked + .theme-switch .light-mode-icon {
opacity: 0;
}
.switch-checkbox:checked + .theme-switch .dark-mode-icon {
opacity: 1;
}
.switch-checkbox:checked + .theme-switch .toggle-button {
transform: translateX(13px);
/* background-color: #34495e; */
}
</style>
<!-- <img id="image" src="path/to/profile/image.jpg" onclick="ProfileClicked()" alt="Profile"> -->
<img id="image" style="margin-right: 55px;" src="images/profile1.jpg" onclick="ProfileClicked()" alt="Profile">
</nav>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
const toggleButton = document.getElementById('checkbox');
const currentMode = localStorage.getItem('dark-mode');
if (currentMode === 'enabled') {
document.body.classList.add('dark-mode');
toggleButton.checked = true;
}
toggleButton.addEventListener('change', function () {
document.body.classList.toggle('dark-mode');
if (document.body.classList.contains('dark-mode')) {
localStorage.setItem('dark-mode', 'enabled');
}
else {
localStorage.setItem('dark-mode', 'disabled');
}
});
});
</script>
<!-- Home Section -->
<section class="section home" id="home">
<div class="container">
<div class="home-thumb">
<br><br><br>
<h1>Open Source Village</h1>
<h1 class="wow fadeInUp" data-wow-delay="0.4s">Hello, Villager</h1>
<h3 class="wow fadeInUp" data-wow-delay="0.6s">We are the <strong>Open Source Village</strong></h3>
<h3 class="wow fadeInUp" data-wow-delay="0.8s"><strong>Join </strong>our community now</h3>
<a href="https://discord.gg/mM9qFh2uZR" class="btn btn-lg btn-default smoothScroll wow fadeInUp"
data-wow-delay="1s" style="color:rgb(153, 249, 164);">
Join Discord
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSSzDzOJpiBR0fBAJIOjXtUqpW9H_G9jhuQNTohtYu7sA&s"
alt="Discord">
</a>
<a href="https://www.linkedin.com/company/open-source-village/"
class="btn btn-lg btn-default smoothScroll wow fadeInUp" data-wow-delay="1s" style="color:rgb(153, 249, 164)">
Follow us on LinkedIn
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/LinkedIn_icon.svg/1024px-LinkedIn_icon.svg.png"
alt="LinkedIn">
</a>
</div>
</div>
</section>
<script>
let popup = document.getElementById("popup");
function openPop() {
popup.classList.add("popup-active");
}
function closepop() {
popup.classList.remove("popup-active");
}
</script>
<!-- about section -->
<section class="section" id="about">
<div class="main-img">
<img src="./images/logo1.jpeg" alt="" />
</div>
<div id="text">
<h4>About</h4>
<h2>Open Source Village</h2>
<p>
Welcome to our community startup! We are a group of like-minded
individuals who believe in the power of coming together to achieve
shared goals. Our mission is to create a safe and inclusive space
where members can connect, collaborate, and make a positive impact in
the world. Join us and be a part of something bigger than yourself!
</p>
<div class="last-text">
<div class="text1">
<h3 class="counter">0+</h3>
<h5>MEMBERS</h5>
</div>
</div>
</div>
</section>
<br>
<script>
// JavaScript to animate the counter
document.addEventListener("DOMContentLoaded", () => {
const counterElement = document.querySelector('.counter');
const targetNumber = 1000;
const duration = 2000;
const stepTime = Math.abs(Math.floor(duration / targetNumber));
let currentNumber = 0;
const counter = setInterval(() => {
currentNumber += 1;
counterElement.textContent = currentNumber + '+';
if (currentNumber >= targetNumber) {
clearInterval(counter);
}
}, stepTime);
});
</script>
<!-- services section -->
<section class="section" id="services">
<div class="container">
<div class="service-title wow fadeInUp" data-wow-delay="0.3s">
<h1>SERVICES</h1>
</div>
<div class="service-container">
<div class="row d-grid gap-3">
<div class="col-md-4 col-sm-6 shadow-lg p-3 mb-5 bg-body-tertiary rounded s-cards">
<div class="card "
style="width: 18rem; border-radius: 8px; padding: 20px;" data-wow-delay="0.4s">
<div class="wow fadeIn" data-wow-delay="0.2s">
<div class="card-heading">
<h3 class="heading-hover">Open learning</h3>
</div>
<div class="card-context">
<p>Our community promotes open learning, allowing members to share their knowledge and skills with
others, fostering a culture of continuous growth.</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 shadow-lg p-3 mb-5 bg-body-tertiary rounded s-cards">
<div class="card" data-wow-delay="0.8s"
style="width: 18rem; border-radius: 8px; padding: 20px;">
<div class="wow fadeIn" data-wow-delay="0.2s">
<div class="card-heading">
<h3 class="heading-hover">Network</h3>
</div>
<div class="card-context">
<p>Our community enables networking with smart and diverse individuals, fostering collaboration and
opportunities for personal and professional growth.</p>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 shadow-lg p-3 mb-5 bg-body-tertiary rounded s-cards">
<div class="card " data-wow-delay="1.2s"
style="width: 18rem; border-radius: 8px; padding: 20px;">
<div class="wow fadeIn" data-wow-delay="0.2s">
<div class="card-heading">
<h3 class="heading-hover">Mentorship</h3>
</div>
<div class="card-context">
<p>Our community offers mentorship, connecting members with experienced mentors to accelerate personal
and professional growth.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials section -->
<section class="testimonial-section" id="testimonials">
<div class="testimonial-container">
<h2 class="testimonial-title wow fadeInUp" data-wow-delay="0.3s">Testimonials</h2>
<div class="testimonial-carousel-container">
<div class="testimonial-wrapper">
<ul class="testimonial-carousel">
<li class="testimonial-card">
<div class="testimonial-content">
<div class="testimonial-img">
<img src="images/testi_1.jpg" alt="Arden Stone" draggable="false">
</div>
<div class="testimonial-text">
<h3>Arden Stone</h3>
<span>I'm immensely grateful to have found such an inspiring group of people in this community!</span>
</div>
</div>
</li>
<li class="testimonial-card">
<div class="testimonial-content">
<div class="testimonial-img">
<img src="images/testi_2.jpeg" alt="John Smith" draggable="false">
</div>
<div class="testimonial-text">
<h3>John Smith</h3>
<span>I've been involved with many groups in the past, but none have been as warm and welcoming as this one.</span>
</div>
</div>
</li>
<li class="testimonial-card">
<div class="testimonial-content">
<div class="testimonial-img">
<img src="images/testi_3.jpeg" alt="Emily Johnson" draggable="false">
</div>
<div class="testimonial-text">
<h3>Emily Johnson</h3>
<span>It has opened up numerous opportunities for collaboration and personal development.</span>
</div>
</div>
</li>
<li class="testimonial-card">
<div class="testimonial-content">
<div class="testimonial-img">
<img src="images/img-2.jpg" alt="Joenas Brauers" draggable="false">
</div>
<div class="testimonial-text">
<h3>Joenas Brauers</h3>
<span>It's incredible to have such a supportive community around me.</span>
</div>
</div>
</li>
<li class="testimonial-card">
<div class="testimonial-content">
<div class="testimonial-img">
<img src="images/img-3.jpg" alt="Lariach French" draggable="false">
</div>
<div class="testimonial-text">
<h3>Lariach French</h3>
<span>It's amazing to be among such driven people.</span>
</div>
</div>
</li>
<li class="testimonial-card">
<div class="testimonial-content">
<div class="testimonial-img">
<img src="images/img-4.jpg" alt="James Khosravi" draggable="false">
</div>
<div class="testimonial-text">
<h3>James Khosravi</h3>
<span>I've found endless support and inspiration.</span>
</div>
</div>
</li>
<li class="testimonial-card">
<div class="testimonial-content">
<div class="testimonial-img">
<img src="images/img-2.jpg" alt="Joenas Brauers" draggable="false">
</div>
<div class="testimonial-text">
<h3>Joenas Brauers</h3>
<span>It's incredible to have such a supportive community around me.</span>
</div>
</div>
</li>
<li class="testimonial-card">
<div class="testimonial-content">
<div class="testimonial-img">
<img src="images/img-5.jpg" alt="Kristina Zasiadko" draggable="false">
</div>
<div class="testimonial-text">
<h3>Kristina Zasiadko</h3>
<span>The connections I've made are invaluable.</span>
</div>
</div>
</li>
<li class="testimonial-card">
<div class="testimonial-content">
<div class="testimonial-img">
<img src="images/img-6.jpg" alt="Donald Horton" draggable="false">
</div>
<div class="testimonial-text">
<h3>Donald Horton</h3>
<span>This community has changed my life.</span>
</div>
</div>
</li>
</ul>
</div>
</div>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<section class="faqq section ">
<div class="containerr">
<div class="accordion">
<div class="service-title wow fadeInUp animated" data-wow-delay="0.3s"
style="visibility: visible; animation-delay: 0.3s; animation-name: fadeInUp;">FAQ</div>
<div class="accordion-item">
<button id="accordion-button-1" aria-expanded="false">
<span class="accordion-title">How can I contribute to the community's goals and projects?<i
class="fa-solid fa-chevron-down"></i></span>
<span class="icon" aria-hidden="true"></span>
</button>
<div class="accordion-content">
<p>Contributing to the community's goals: There are many ways to contribute to our community! Whether you're
a developer, designer, writer, or simply passionate about a particular cause, there's a place for you
here. You can contribute code to open source projects, participate in discussions, share your expertise,
or organize events that align with our mission.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-2" aria-expanded="false">
<span class="accordion-title">What benefits do members receive from participating in the community?<i
class="fa-solid fa-chevron-down"></i></span>
<span class="icon" aria-hidden="true"></span>
</button>
<div class="accordion-content">
<p>Benefits of community membership: As a member of our community, you'll have the opportunity to connect
with other passionate individuals, collaborate on projects that align with your interests and values, and
make a tangible difference in the world. Additionally, you'll gain access to exclusive resources, events,
and networking opportunities.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-3" aria-expanded="false">
<span class="accordion-title">How can I join the open source village community?<i
class="fa-solid fa-chevron-down"></i></span>
<span class="icon" aria-hidden="true"></span>
</button>
<div class="accordion-content">
<p>Joining the open source village community: Joining our community is simple! Just navigate to our website
and look for the "Join Us" or "Sign Up" button. From there, you'll be guided through the registration
process. Once registered, you'll gain access to our forums, projects, events, and more.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-4" aria-expanded="false">
<span class="accordion-title">What is open source community?<i class="fa-solid fa-chevron-down"></i></span>
<span class="icon" aria-hidden="true"></span>
</button>
<div class="accordion-content">
<p>An open source community is a group of individuals who collaborate on projects and initiatives that are
developed and shared openly, meaning the source code and resources are freely available for anyone to
view, use, modify, and distribute ideas.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-5" aria-expanded="false">
<span class="accordion-title">What is the purpose of the open source village community website?<i
class="fa-solid fa-chevron-down"></i></span>
<span class="icon" aria-hidden="true"></span>
</button>
<div class="accordion-content">
<p>Purpose of the open source village community website: Our website serves as a central hub for like-minded
individuals who believe in the power of community-driven initiatives. It's a platform where members can
connect, collaborate, and contribute to make a positive impact in the world.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-6" aria-expanded="false">
<span class="accordion-title">Are there any eligibility criteria to join the community?<i
class="fa-solid fa-chevron-down"></i></span>
<span class="icon" aria-hidden="true"></span>
</button>
<div class="accordion-content">
<p>The only criteria is your passion for open source.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-7" aria-expanded="false">
<span class="accordion-title">How can I find and join specific projects within the community?<i
class="fa-solid fa-chevron-down"></i></span>
<span class="icon" aria-hidden="true"></span>
</button>
<div class="accordion-content">
<p>To find and join specific projects, visit our project directory on the website. You can browse through
ongoing projects, read their descriptions, and join the ones that interest you by following the
participation guidelines provided.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-9" aria-expanded="false">
<span class="accordion-title">How can I stay updated with the community's latest news and events?<i
class="fa-solid fa-chevron-down"></i></span>
<span class="icon" aria-hidden="true"></span>
</button>
<div class="accordion-content">
<p>You can stay updated by following our social media channels, and regularly checking our website for new
events and information.</p>
</div>
</div>
<div class="accordion-item">
<button id="accordion-button-10" aria-expanded="false">
<span class="accordion-title">Who can I contact if I have more questions or need support?<i
class="fa-solid fa-chevron-down"></i></span>
<span class="icon" aria-hidden="true"></span>
</button>
<div class="accordion-content">
<p>If you have more questions or need support, feel free to contact our support team via the "Contact Us"
page on our website. Our team is always ready to help you with any inquiries or issues you may have.</p>
</div>
</div>
</div>
</div>
</section>
<div class="container section" style="margin-top: 10px;">
<div class="row reviews" style="margin-top: 40px;">
<div class="card1 mb-3" >
<div class="row g-0" style="height: 100%; cursor: pointer;">
<div class="col-md-8 pic-col">
<img src="images/profile1.jpg" class="img-fluid rounded-start"/>
</div>
<div class="col-md-4 flex flex-row" style="width: 100%;">
<div class="card-body " style="width: 100%; padding: 10px;">
<div style="display: flex; flex-direction: row; justify-content: space-between; padding: 10px;">
<h5 class="card-title " style="font-size: 28px;font-weight: bold;">David L.</h5>
<div class="flex mt-2 mb-2">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-half" viewBox="0 0 16 16">
<path
d="M5.354 5.119 7.538.792A.52.52 0 0 1 8 .5c.183 0 .366.097.465.292l2.184 4.327 4.898.696A.54.54 0 0 1 16 6.32a.55.55 0 0 1-.17.445l-3.523 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256a.5.5 0 0 1-.146.05c-.342.06-.668-.254-.6-.642l.83-4.73L.173 6.765a.55.55 0 0 1-.172-.403.6.6 0 0 1 .085-.302.51.51 0 0 1 .37-.245zM8 12.027a.5.5 0 0 1 .232.056l3.686 1.894-.694-3.957a.56.56 0 0 1 .162-.505l2.907-2.77-4.052-.576a.53.53 0 0 1-.393-.288L8.001 2.223 8 2.226z" />
</svg>
</div>
</div>
<p class="card-text">"Joining this community has been one of the best decisions I've ever made. I've had
the opportunity to contribute to meaningful projects that have an impact on society."</p>
</div>
</div>
</div>
</div>
<div class="card1 mb-3" >
<div class="row g-0" style="height: 100%; cursor: pointer;">
<div class="col-md-8 pic-col ">
<img src="images/profile2.jpg" class="img-fluid rounded-start"
/>
</div>
<div class="col-md-4 " style="width: 100%;">
<div class="card-body" style="width: 100%; padding: 10px;">
<div style="display: flex; flex-direction: row; justify-content: space-between; padding: 10px;">
<h5 class="card-title" style="font-size: 28px;font-weight: bold;">Sarah J.</h5>
<div class="flex mt-2 mb-2">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
</div>
</div>
<p class="card-text">"Being a part of this community has been an incredible journey. I've found
like-minded individuals who share my deep passion for making a difference in the society."</p>
</div>
</div>
</div>
</div>
<div class="card1 mb-3" >
<div class="row g-0" style="height: 100%; cursor: pointer;">
<div class="col-md-8 pic-col">
<img src="images/profile3.jpg" class="img-fluid rounded-start"
/>
</div>
<div class="col-md-4" style="width: 100%;">
<div class="card-body" style="width: 100%;padding: 10px;">
<div style="display: flex; flex-direction: row; justify-content: space-between; padding: 10px;">
<h5 class="card-title" style="font-size: 28px;font-weight: bold;">Emily R.</h5>
<div class="flex mt-2 mb-2">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>
</div>
</div>
<p class="card-text">"As someone who values inclusivity, finding a space where everyone's voice is heard
and respected has been incredibly refreshing. It's empowering to collaborate here."</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script>
document.getElementById('contactForm').addEventListener('submit', function (event) {