-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1015 lines (980 loc) · 59.9 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>The Give Hub - Blockchain Charity Simplified</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="keywords" name="crowdfund,gofundme,charity,social causes,stellar,blockchain">
<meta content="description" name="The Give Hub is a blockchain backed crowdfunding platform designed to make running campaigns and donating simple and easy to use.">
<!-- Favicon -->
<link href="/img/favicon.svg" type="image/svg+xml" rel="icon">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- CSS Libraries -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="/lib/flaticon/font/flaticon.css" rel="stylesheet">
<link href="/lib/animate/animate.min.css" rel="stylesheet">
<link href="/lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="/css/style.css" rel="stylesheet">
</head>
<body>
<!-- Top Bar Start -->
<div class="top-bar d-none d-md-block">
<div class="container-fluid">
<div class="row">
<div class="col-md-8">
<div class="top-bar-left">
<div class="text">
<i class="fa fa-phone-alt"></i>
<p>(415) 300-0180</p>
</div>
<div class="text">
<i class="fa fa-envelope"></i>
<p>[email protected]</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="top-bar-right">
<div class="social">
<a href="https://x.com/thegivehub97501"><i class="fab fa-twitter"></i></a>
<a href="https://www.facebook.com/people/The-Give-Hub/61568306136450/"><i class="fab fa-facebook-f"></i></a>
<a href="https://linkedin.com/company/thegivehub"><i class="fab fa-linkedin-in"></i></a>
</div>
<div class="lang">
<a onclick="app.switchLang('es'); return false;" href="/es/"><img class="lang-icon" src="/site/img/hola.svg"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Top Bar End -->
<!-- Nav Bar Start -->
<div class="navbar navbar-expand-lg bg-dark navbar-dark">
<div class="container-fluid">
<a href="index.html" class="navbar-brand">The Give Hub</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-between" id="navbarCollapse">
<div class="navbar-nav ml-auto">
<a href="index.html" class="nav-item nav-link">Home</a>
<div class="nav-item dropdown">
<a href="about.html" class="nav-link dropdown-toggle" data-toggle="dropdown">About</a>
<div class="dropdown-menu">
<a href="service.html" class="dropdown-item">What We Do</a>
<a href="team.html" class="dropdown-item">Meet The Team</a>
<a href="event.html" class="nav-item nav-link">Events</a>
</div>
</div>
<a href="blog.php" class="nav-item nav-link">Blog</a>
<a href="causes.html" class="nav-item nav-link">Causes</a>
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">Participate</a>
<div class="dropdown-menu">
<a href="donate.html" class="dropdown-item">Donate Now</a>
<a href="volunteer.html" class="dropdown-item">Become A Volunteer</a>
<a href="campaign.html" class="dropdown-item">Start a Campaign</a>
<a href="register-cause.html" class="dropdown-item">Register Cause</a>
</div>
</div>
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">Pages</a>
<div class="dropdown-menu">
<a href="user-docs.html" class="dropdown-item">User Documentation</a>
<a href="api.html" class="dropdown-item">API Documentation</a>
<a href="faqs.html" class="dropdown-item">FAQ's</a>
<a href="architecture.html" class="dropdown-item">Platform Architecture</a>
<a href="pitchdeck.html" class="dropdown-item">Funding Pitch Deck</a>
</div>
</div>
<a href="contact.html" class="nav-item nav-link">Contact</a>
</div>
</div>
</div>
</div>
<!-- Nav Bar End -->
<!-- Carousel Start -->
<div class="carousel">
<div class="container-fluid">
<div class="owl-carousel">
<div class="carousel-item">
<div class="carousel-img">
<img src="/site/img/carousel-1.jpg" alt="Image">
</div>
<div class="carousel-text">
<h1>Empower Communities, One Donation at a Time</h1>
<p>
Be the catalyst for change by supporting impactful projects worldwide through transparent giving.
</p>
<div class="carousel-btn">
<a class="btn btn-custom" href="donate.html">Donate Now</a>
<a class="btn btn-custom btn-play" data-toggle="modal" data-src="https://youtube.com/embed/eOjkoQqnWAw" data-target="#videoModal">Watch Video</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-img">
<img src="/site/img/carousel-2.jpg" alt="Image">
</div>
<div class="carousel-text">
<h1>Connecting Hearts with Blockchain</h1>
<p>
Harnessing the power of technology to unite donors and communities in need across the globe.
</p>
<div class="carousel-btn">
<a class="btn btn-custom" href="donate.html">Donate Now</a>
<a class="btn btn-custom btn-play" data-toggle="modal" data-src="https://youtube.com/embed/eOjkoQqnWAw" data-target="#videoModal">Watch Video</a>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-img">
<img src="/site/img/carousel-3.jpg" alt="Image">
</div>
<div class="carousel-text">
<h1>Unlock Potential, Ignite Hope</h1>
<p>
Join The Give Hub in transforming lives by providing access to financial opportunities for all.
</p>
<div class="carousel-btn">
<a class="btn btn-custom" href="donate.html">Donate Now</a>
<a class="btn btn-custom btn-play" data-toggle="modal" data-src="https://youtube.com/embed/eOjkoQqnWAw" data-target="#videoModal">Watch Video</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel End -->
<!-- Video Modal Start-->
<div class="modal fade" id="videoModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" id="video" width="560" height="315" src="https://www.youtube.com/embed/eOjkoQqnWAw?si=_XHTnUfk1QZiJkz8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Video Modal End -->
<!-- About Start -->
<div class="about">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="about-img" data-parallax="scroll" data-image-src="/site/img/about.jpg"></div>
</div>
<div class="col-lg-6">
<div class="section-header">
<p>Learn About Us</p>
<h2>Blockchain Giving Simplified</h2>
</div>
<div class="about-tab">
<ul class="nav nav-pills nav-justified">
<li class="nav-item">
<a class="nav-link active" data-toggle="pill" href="#tab-content-1">About</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="pill" href="#tab-content-2">Mission</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="pill" href="#tab-content-3">Vision</a>
</li>
</ul>
<div class="tab-content">
<div id="tab-content-1" class="container tab-pane active">
The Give Hub is a global crowdfunding platform dedicated to connecting donors with impactful social causes in communities that have traditionally been excluded from global financial services. With the rapid spread of smartphones and satellite phones, even in the most remote parts of the world, we leverage this connectivity to bring the benefits of crowdfunding directly to those who need it most. By utilizing blockchain technology for transparency and security, we empower individuals and organizations in underserved regions to raise funds for vital projects—transforming lives and fostering sustainable development.
</div>
<div id="tab-content-2" class="container tab-pane fade">
Our mission is to harness the power of technology to bridge the financial gap between generous donors and communities in need across the globe. We strive to empower people in historically underserved areas by providing them with access to global crowdfunding opportunities, enabling them to fund social causes that can transform their lives and surroundings. Through The Give Hub, we aim to make secure, transparent, and efficient crowdfunding accessible to everyone, regardless of geographical barriers, thereby facilitating real-world impact where it's needed most.
</div>
<div id="tab-content-3" class="container tab-pane fade">
We envision a world where every individual, no matter their location or economic status, has the opportunity to access global financial services and support. By capitalizing on the widespread availability of smartphones and satellite communication, we aspire to create a globally connected network where the benefits of crowdfunding reach even the most remote communities. Our vision is to break down the barriers that have traditionally prevented equal access to financial resources, fostering a world where technology empowers social causes to thrive everywhere.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About End -->
<!-- Service Start -->
<div class="service">
<div class="container">
<div class="section-header text-center">
<p>What We Do?</p>
<h2>Empowering Charity Across Borders</h2>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-diet"></i>
</div>
<div class="service-text">
<h3>Healthy Food</h3>
<p>We facilitate crowdfunding for projects that provide access to nutritious food for communities facing food insecurity. By supporting agricultural initiatives and food distribution programs, we help combat hunger and malnutrition in underserved regions.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-water"></i>
</div>
<div class="service-text">
<h3>Pure Water</h3>
<p>We support initiatives that bring clean and safe drinking water to areas lacking this vital resource. Through funding the construction of wells, water purification systems, and sanitation facilities, we help ensure communities have access to pure water.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-healthcare"></i>
</div>
<div class="service-text">
<h3>Health Care</h3>
<p>We enable funding for healthcare projects that improve access to medical services and essential treatments. By supporting the establishment of clinics, mobile medical units, and health education programs, we strive to enhance the well-being of people in remote and underserved areas.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-education"></i>
</div>
<div class="service-text">
<h3>Primary Education</h3>
<p>We empower educational initiatives by raising funds for schools, learning materials, and teacher training programs. Our efforts help provide quality primary education to children who might otherwise lack access to learning opportunities.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-home"></i>
</div>
<div class="service-text">
<h3>Residence Facilities</h3>
<p>We assist in funding the construction and renovation of safe and affordable housing. By providing shelter and stability to those without adequate living conditions, we contribute to building stronger communities.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="service-item">
<div class="service-icon">
<i class="flaticon-social-care"></i>
</div>
<div class="service-text">
<h3>Social Care</h3>
<p>We support social care projects that offer assistance to vulnerable populations, including the elderly, orphans, and individuals affected by natural disasters. Through these efforts, we aim to improve the quality of life for those in need of social support.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Service End -->
<!-- Facts Start -->
<div class="facts" data-parallax="scroll" data-image-src="/site/img/facts.jpg">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="facts-item">
<i class="flaticon-home"></i>
<div class="facts-text">
<h3 class="facts-plus" data-toggle="counter-up">150</h3>
<p>Countries</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="facts-item">
<i class="flaticon-charity"></i>
<div class="facts-text">
<h3 class="facts-plus" data-toggle="counter-up">400</h3>
<p>Volunteers</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="facts-item">
<i class="flaticon-kindness"></i>
<div class="facts-text">
<h3 class="facts-dollar" data-toggle="counter-up">10000</h3>
<p>Our Goal</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="facts-item">
<i class="flaticon-donation"></i>
<div class="facts-text">
<h3 class="facts-dollar" data-toggle="counter-up">5000</h3>
<p>Raised</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Facts End -->
<!-- Causes Start -->
<div class="causes">
<div class="container">
<div class="section-header text-center">
<p>Popular Causes</p>
<h2>Here are some of the most popular charity causes around the world.</h2>
</div>
<div class="owl-carousel causes-carousel"> <div class="causes-item">
<div class="causes-img">
<img src="/site/img/causes-0.jpg" alt="Image">
</div>
<div class="causes-progress">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100">
<span>60%</span>
</div>
</div>
<div class="progress-text">
<p><strong>Raised:</strong> $75000</p>
<p><strong>Goal:</strong> $125000</p>
</div>
</div>
<div class="causes-text">
<h3>Clean Water Pipeline - Samburu County</h3>
<p>Construction of a 5km water pipeline connecting remote villages to the main water supply, serving 2,500 residents and dramatically reducing water collection time for local families.</p>
</div>
<div class="causes-btn">
<a class="btn btn-custom" href="https://app.thegivehub.com/campaign.html?id=65ee1a1b2f3a4b5c6d7e8f9a">Learn More</a>
<a class="btn btn-custom" hfre="https://app.thegivehub.com/donatenow.html?id=65ee1a1b2f3a4b5c6d7e8f9a">Donate Now</a>
</div>
</div> <div class="causes-item">
<div class="causes-img">
<img src="/site/img/causes-1.jpg" alt="Image">
</div>
<div class="causes-progress">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="15" aria-valuemin="0" aria-valuemax="100">
<span>15%</span>
</div>
</div>
<div class="progress-text">
<p><strong>Raised:</strong> $30000</p>
<p><strong>Goal:</strong> $200000</p>
</div>
</div>
<div class="causes-text">
<h3>Solar-Powered Medical Clinic - Chocó</h3>
<p>Construction of a permanent medical clinic serving 12 remote villages, powered by renewable energy and equipped with telemedicine capabilities.</p>
</div>
<div class="causes-btn">
<a class="btn btn-custom" href="https://app.thegivehub.com/campaign.html?id=65ee1a1b2f3a4b5c6d7e8f9e">Learn More</a>
<a class="btn btn-custom" hfre="https://app.thegivehub.com/donatenow.html?id=65ee1a1b2f3a4b5c6d7e8f9e">Donate Now</a>
</div>
</div> <div class="causes-item">
<div class="causes-img">
<img src="/site/img/causes-2.jpg" alt="Image">
</div>
<div class="causes-progress">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
<span>100%</span>
</div>
</div>
<div class="progress-text">
<p><strong>Raised:</strong> $150000</p>
<p><strong>Goal:</strong> $150000</p>
</div>
</div>
<div class="causes-text">
<h3>Agricultural Training Center - Kilifi</h3>
<p>Establishment of a demonstration farm and training facility to teach drought-resistant farming techniques to local farmers.</p>
</div>
<div class="causes-btn">
<a class="btn btn-custom" href="https://app.thegivehub.com/campaign.html?id=65ee1a1b2f3a4b5c6d7e8fa0">Learn More</a>
<a class="btn btn-custom" hfre="https://app.thegivehub.com/donatenow.html?id=65ee1a1b2f3a4b5c6d7e8fa0">Donate Now</a>
</div>
</div> <div class="causes-item">
<div class="causes-img">
<img src="/site/img/causes-3.jpg" alt="Image">
</div>
<div class="causes-progress">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100">
<span>30%</span>
</div>
</div>
<div class="progress-text">
<p><strong>Raised:</strong> $52500</p>
<p><strong>Goal:</strong> $175000</p>
</div>
</div>
<div class="causes-text">
<h3>School Infrastructure Project - Putumayo</h3>
<p>Construction of 6 new classrooms, computer lab, and modern facilities to improve education access for 300+ children.</p>
</div>
<div class="causes-btn">
<a class="btn btn-custom" href="https://app.thegivehub.com/campaign.html?id=65ee1a1b2f3a4b5c6d7e8fa2">Learn More</a>
<a class="btn btn-custom" hfre="https://app.thegivehub.com/donatenow.html?id=65ee1a1b2f3a4b5c6d7e8fa2">Donate Now</a>
</div>
</div> <div class="causes-item">
<div class="causes-img">
<img src="/site/img/causes-4.jpg" alt="Image">
</div>
<div class="causes-progress">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
<span>100%</span>
</div>
</div>
<div class="progress-text">
<p><strong>Raised:</strong> $100000</p>
<p><strong>Goal:</strong> $100000</p>
</div>
</div>
<div class="causes-text">
<h3>Community Health & Sanitation - Siaya County</h3>
<p>Construction of 50 household sanitation facilities and implementation of community waste management system.</p>
</div>
<div class="causes-btn">
<a class="btn btn-custom" href="https://app.thegivehub.com/campaign.html?id=65ee1a1b2f3a4b5c6d7e8fa4">Learn More</a>
<a class="btn btn-custom" hfre="https://app.thegivehub.com/donatenow.html?id=65ee1a1b2f3a4b5c6d7e8fa4">Donate Now</a>
</div>
</div> </div>
</div>
</div>
<!-- Causes End --> <!-- Donate Start -->
<div class="donate" data-parallax="scroll" data-image-src="/site/img/donate.jpg">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-7">
<div class="donate-content">
<div class="section-header">
<p>Donate Now</p>
<h2>Your Gift, Their Future.</h2>
</div>
<div class="donate-text">
<p>
Your generous donation will directly support impactful projects that empower underserved communities around the world. By contributing through The Give Hub, you're helping to provide essential resources like clean water, healthcare, education, and more to those who need it most. Together, we can break down barriers and bring lasting change to people who have traditionally lacked access to global financial services. Thank you for being a part of this transformative journey!
</p>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="donate-form">
<form>
<div class="control-group">
<input type="text" class="form-control" placeholder="Name" required="required" />
</div>
<div class="control-group">
<input type="email" class="form-control" placeholder="Email" required="required" />
</div>
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-custom active">
<input type="radio" name="options" checked> $10
</label>
<label class="btn btn-custom">
<input type="radio" name="options"> $20
</label>
<label class="btn btn-custom">
<input type="radio" name="options"> $30
</label>
</div>
<div>
<button class="btn btn-custom" type="submit">Donate Now</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Donate End -->
<!-- Event Start -->
<div class="event">
<div class="container">
<div class="section-header text-center">
<p>Upcoming Events</p>
<h2>Be ready for our upcoming charity events</h2>
</div>
<div class="row">
<div class="col-lg-6">
<div class="event-item">
<img src="/site/img/event-1.jpg" alt="Image">
<div class="event-content">
<div class="event-meta">
<p><i class="fa fa-calendar-alt"></i>Dec 20, 2024</p>
<p><i class="far fa-clock"></i>12:00 - 6:00pm</p>
<p><i class="fa fa-map-marker-alt"></i>San Francisco, CA</p>
</div>
<div class="event-text">
<h3>Global Community Concert</h3>
<p>
Join us for the Global Community Concert, a vibrant evening of music, dance, and cultural performances celebrating unity and support for social causes worldwide. Local and international artists will come together to raise awareness and funds for projects focusing on clean water and primary education in underserved regions. Enjoy diverse performances, food stalls featuring global cuisine, and interactive booths where you can learn more about the communities we support. All proceeds will go towards funding initiatives on The Give Hub platform.
</p>
<a class="btn btn-custom" href="">Join Now</a>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="event-item">
<img src="/site/img/event-2.jpg" alt="Image">
<div class="event-content">
<div class="event-meta">
<p><i class="fa fa-calendar-alt"></i>Jan 15, 2025</p>
<p><i class="far fa-clock"></i>8:00am - 6:00pm</p>
<p><i class="fa fa-map-marker-alt"></i>New York</p>
</div>
<div class="event-text">
<h3>Marathon for Change</h3>
<p>
Be a part of the Marathon for Change, a charity run aimed at bringing people together to support healthcare and social care projects in Latin America and Africa. Whether you're a seasoned runner or just looking to walk for a good cause, there's a place for everyone. The event includes a full marathon, half-marathon, and a 5K fun run. Participants and spectators can enjoy live music, local food vendors, and a post-race awards ceremony. Funds raised will directly support health care initiatives facilitated by The Give Hub, providing medical services to those who need them most.
</p>
<a class="btn btn-custom" href="">Join Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Event End -->
<!-- Team Start -->
<div class="team">
<div class="container">
<div class="section-header text-center">
<p>Meet Our Team</p>
<h2>Awesome guys behind our charity activities</h2>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="/site/img/chris.png" alt="Team Image">
</div>
<div class="team-text">
<h2>Christopher Robison</h2>
<p>Founder / CEO</p>
<div class="team-social">
<a href="https://x.com/thechrisrobison"><i class="fab fa-twitter"></i></a>
<a href="https://facebook.com/thechrisrobison"><i class="fab fa-facebook-f"></i></a>
<a href="https://linkedin.com/in/crobison"><i class="fab fa-linkedin-in"></i></a>
<a href="https://instagram.com/thechrisrobison"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="/site/img/kevin.png" alt="Team Image">
</div>
<div class="team-text">
<h2>Kevin Ready</h2>
<p>Founder / CTO</p>
<div class="team-social">
<a href="https://x.com/kevintweets" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.facebook.com/kevin.ready/" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.linkedin.com/in/planetkevin/" target="_blank"><i class="fab fa-linkedin-in"></i></a>
<!--a href=""><i class="fab fa-instagram"></i></a-->
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img src="/site/img/danny.png" alt="Team Image">
</div>
<div class="team-text">
<h2>Daniel Kanaan</h2>
<p>Founder / Compliance Expert</p>
<div class="team-social">
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-facebook-f"></i></a>
<a href=""><i class="fab fa-linkedin-in"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="team-item">
<div class="team-img">
<img style="border-radius:50%;" src="/site/img/heath.jpg" alt="Team Image">
</div>
<div class="team-text">
<h2>Heath Kornblum</h2>
<p>Founder / Blockchain Specialist</p>
<div class="team-social">
<a href=""><i class="fab fa-twitter"></i></a>
<a href=""><i class="fab fa-facebook-f"></i></a>
<a href=""><i class="fab fa-linkedin-in"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Team End -->
<!-- Volunteer Start -->
<div class="volunteer" data-parallax="scroll" data-image-src="/site/img/volunteer.jpg">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-5">
<div class="volunteer-form">
<form>
<div class="control-group">
<input type="text" class="form-control" placeholder="Name" required="required" />
</div>
<div class="control-group">
<input type="email" class="form-control" placeholder="Email" required="required" />
</div>
<div class="control-group">
<textarea class="form-control" placeholder="Why you want to become a volunteer?" required="required"></textarea>
</div>
<div>
<button class="btn btn-custom" type="submit">Become a volunteer</button>
</div>
</form>
</div>
</div>
<div class="col-lg-7">
<div class="volunteer-content">
<div class="section-header">
<p>Become A Volunteer</p>
<h2>Let’s make a difference in the lives of others</h2>
</div>
<div class="volunteer-text">
<p>
Your skills and enthusiasm can help transform communities in need. By volunteering with The Give Hub, you'll play a crucial role in bringing essential resources like clean water, education, and healthcare to underserved regions. Become a catalyst for change and help us bridge the gap between generous donors and the people who need their support the most!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Volunteer End -->
<!-- Testimonial Start -->
<div class="testimonial">
<div class="container">
<div class="section-header text-center">
<p>Testimonial</p>
<h2>What people are talking about our charity activities</h2>
</div>
<div class="owl-carousel testimonials-carousel">
<div class="testimonial-item">
<div class="testimonial-profile">
<img src="/site/img/maria.jpg" alt="Image">
<div class="testimonial-name">
<h3>Maria Gonzalez</h3>
<p>Community Leader, Colombia</p>
</div>
</div>
<div class="testimonial-text">
<p>
The Give Hub has transformed our small village in ways we never thought possible. With their platform, we were able to raise funds to build a clean water well, providing safe drinking water to over 500 families. The transparency and ease of use made it possible for donors around the world to trust and support our cause. We are forever grateful!
</p>
</div>
</div>
<div class="testimonial-item">
<div class="testimonial-profile">
<img src="/site/img/david.jpg" alt="Image">
<div class="testimonial-name">
<h3>David Ochieng</h3>
<p>Healthcare Worker, Kenya</p>
</div>
</div>
<div class="testimonial-text">
<p>
Thanks to The Give Hub, our rural clinic received the necessary funds to purchase medical equipment and supplies. The milestone-based funding ensured that our donors saw the progress every step of the way. This platform doesn't just provide funds; it builds relationships and trust between communities and supporters globally.
</p>
</div>
</div>
<div class="testimonial-item">
<div class="testimonial-profile">
<img src="/site/img/lisa.jpg" alt="Image">
<div class="testimonial-name">
<h3>Lisa Chen</h3>
<p>Donor, United States</p>
</div>
</div>
<div class="testimonial-text">
<p>
I have always wanted to contribute to meaningful projects but was hesitant due to a lack of transparency with many organizations. The Give Hub changed that for me. Their blockchain technology allowed me to see exactly where my donations were going and the impact they were making. It's rewarding to know that my contributions are truly making a difference.
</p>
</div>
</div>
<div class="testimonial-item">
<div class="testimonial-profile">
<img src="/site/img/emily.jpg" alt="Image">
<div class="testimonial-name">
<h3>Emily Rodriguez</h3>
<p>Volunteer Coordinator, Canada</p>
</div>
</div>
<div class="testimonial-text">
<p>
Organizing volunteer efforts across borders can be challenging, but The Give Hub's platform made it seamless. We were able to fundraise for our residence facility project and coordinate volunteers efficiently. Their commitment to financial inclusion and community empowerment aligns perfectly with our mission.
</p>
</div>
</div>
<div class="testimonial-item">
<div class="testimonial-profile">
<img src="/site/img/samuel.jpg" alt="Image">
<div class="testimonial-name">
<h3>Samuel Mensah</h3>
<p>Social Entrepreneur, Ghana</p>
</div>
</div>
<div class="testimonial-text">
<p>
The Give Hub is revolutionizing how we approach social care projects. By utilizing their platform, we secured funding for our initiative to support the elderly in our community. The milestone-based funding kept us accountable, and the donors appreciated the regular updates. It's more than a fundraising tool; it's a bridge connecting hearts worldwide.
</p>
</div>
</div>
<div class="testimonial-item">
<div class="testimonial-profile">
<img src="/site/img/ahmed.jpg" alt="Image">
<div class="testimonial-name">
<h3>Ahmed Hassan</h3>
<p>Educator, Egypt</p>
</div>
</div>
<div class="testimonial-text">
<p>
Our school was in dire need of renovation and educational materials. Through The Give Hub, we connected with donors who shared our vision for quality education. The platform's user-friendly interface and secure transactions made the fundraising process smooth. Our students now have a conducive learning environment, all thanks to this amazing service.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial End -->
<!-- Contact Start -->
<div class="contact">
<div class="container">
<div class="section-header text-center">
<p>Get In Touch</p>
<h2>Contact us for any questions!</h2>
</div>
<div class="contact-img">
<img src="/site/img/contact.jpg" alt="Image">
</div>
<div class="contact-form">
Complete the form below and hit the 'Send Message' button to send us a message.
<div id="success"></div>
<form name="sentMessage" id="contactForm" novalidate="novalidate">
<div class="control-group">
<input type="text" class="form-control" id="name" placeholder="Your Name" required="required" data-validation-required-message="Please enter your name" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<input type="email" class="form-control" id="email" placeholder="Your Email" required="required" data-validation-required-message="Please enter your email" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<input type="text" class="form-control" id="subject" placeholder="Subject" required="required" data-validation-required-message="Please enter a subject" />
<p class="help-block text-danger"></p>
</div>
<div class="control-group">
<textarea class="form-control" id="message" placeholder="Message" required="required" data-validation-required-message="Please enter your message"></textarea>
<p class="help-block text-danger"></p>
</div>
<div>
<button class="btn btn-custom" type="submit" id="sendMessageButton">Send Message</button>
</div>
</form>
</div>
</div>
</div>
<!-- Contact End -->
<!-- Blog Start -->
<div class="blog">
<div class="container">
<div class="section-header text-center">
<p>Our Blog</p>
<h2>Latest news & articles directly from our blog</h2>
</div>
<div class="row"> <div class="col-lg-4">
<div class="blog-item">
<div class="blog-img">
<img src="/img/blog-20.jpg" alt="Image">
</div>
<div class="blog-text">
<h2><a href="/es/blog/unbanked-billion.html">Los Mil Millones No Bancarizados</a></h2>
<h3><a href="/es/blog/unbanked-billion.html"> Por Qué la Ayuda Tradicional No Llega a las Regiones Remotas (Y Cómo lo Estamos Cambiando)</a></h3>
<p>
<p>En las tierras altas de Ecuador, la comunidad agrícola de Elena
enfrenta un desafío importante: necesitan solo $2,000 para instalar un
sistema de riego que podría duplicar su producción de cultivos. Las
organizaciones de ayuda tradicional han destinado millones al desarrollo
agrícola, pero esos fondos a menudo no llegan a aldeas como la de Elena.
A nivel mundial, se estima que 1.400 millones de adultos siguen sin
acceso a servicios bancarios y, a menudo, no son alcanzados por la ayuda
tradicional. Esto no se debe a la falta de financiamiento o intención,
sino a barreras sistémicas y logísticas que impiden que la ayuda llegue
de manera efectiva a quienes más la necesitan. ¿Por qué existe esta
brecha y cómo podemos cambiarla?</p>
</p>
</div>
<div class="blog-meta">
<p><i class="fa fa-user"></i><a href="#">Chris</a></p>
<p><i class="fa fa-comments"></i><a href="#">0 Comments</a></p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="blog-item">
<div class="blog-img">
<img src="/img/blog-19.jpg" alt="Image">
</div>
<div class="blog-text">
<h2><a href="/es/blog/inclusion.html">Inclusión Financiera en Acción</a></h2>
<h3><a href="/es/blog/inclusion.html"> Historias Reales desde la Última Milla de las Donaciones</a></h3>
<p>
<p>En las montañas remotas de Perú, Rosa solía caminar seis horas para
recoger fondos enviados por su familia en Lima. Hoy, simplemente revisa
su teléfono, confirma la transferencia y compra suministros para su
tienda usando su billetera digital. Este cambio marca una revolución en
la inclusión financiera, una que une tecnología, confianza y comunidad
para llegar al último kilómetro de la donación global.</p>
</p>
</div>
<div class="blog-meta">
<p><i class="fa fa-user"></i><a href="#">Chris</a></p>
<p><i class="fa fa-comments"></i><a href="#">0 Comments</a></p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="blog-item">
<div class="blog-img">
<img src="/img/blog-18.jpg" alt="Image">
</div>
<div class="blog-text">
<h2><a href="/es/blog/trust-through-technology.html">Confianza a Través de la Tecnología</a></h2>
<h3><a href="/es/blog/trust-through-technology.html"> Construyendo Plataformas de Caridad Confiables para la Era Digital</a></h3>
<p>
<p>Imagina a un donante en Nueva York enviando $100 para apoyar una
escuela en una zona rural de Etiopía. ¿Cómo puede estar seguro de que su
dinero realmente está generando un impacto? Hoy en día, la tecnología no
solo simplifica el acto de donar, sino que también está transformando la
manera en que se construye y verifica la confianza en las donaciones. A
través de blockchain, contratos inteligentes y verificación digital, la
transparencia en la filantropía está alcanzando niveles sin
precedentes.</p>
</p>
</div>
<div class="blog-meta">
<p><i class="fa fa-user"></i><a href="#">Chris</a></p>
<p><i class="fa fa-comments"></i><a href="#">0 Comments</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Blog End --> <!-- Footer Start -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="footer-contact">
<h2>Our Head Office</h2>
<p><i class="fa fa-map-marker-alt"></i>621 Holloway Ave, <br>San Francisco CA, USA</p>
<p><i class="fa fa-phone-alt"></i>(415) 300-0180</p>
<p><i class="fa fa-envelope"></i>[email protected]</p>
<div class="footer-social">
<a class="btn btn-custom" href="https://twitter.com/thegivehub97501"><i class="fab fa-twitter"></i></a>
<a class="btn btn-custom" href="https://www.facebook.com/people/The-Give-Hub/61568306136450/"><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-custom" href="https://youtube.com/@thegivehub"><i class="fab fa-youtube"></i></a>
<a class="btn btn-custom" href="https://linkedin.com/company/thegivehub"><i class="fab fa-linkedin-in"></i></a>
</div>
<div class="lang">
<a onclick="app.switchLang('es'); return false;" href="/es/"><img class="lang-icon" src="/site/img/hola.svg"></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="footer-link">
<h2>Popular Links</h2>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
<a href="causes.html">Popular Causes</a>
<a href="event.html">Upcoming Events</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="footer-link">
<h2>Useful Links</h2>
<a href="legal/tos.html">Terms of use</a>
<a href="legal/privacy.html">Privacy policy</a>
<a href="legal/cookies.html">Cookies</a>
<a href="help.html">Help</a>
<a href="faq.html">FAQs</a>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="footer-newsletter">
<h2>Newsletter</h2>
<form>
<input class="form-control" placeholder="Email goes here">
<button class="btn btn-custom">Submit</button>
<label>Don't worry, we don't spam!</label>
</form>
</div>
<div>
</div>
</div>
</div>
<div class="container copyright">
<div class="row">
<div class="col-md-6">
</div>
<div class="col-md-6">
<p>© <a href="#">The Give Hub</a>, All Right Reserved.</p>
</div>
<div class="col-md-6">
</div>
</div>
</div>
</div>
<!-- Footer End -->
<!-- Back to top button -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- Pre Loader -->
<div id="loader" class="show">
<div class="loader"></div>
</div>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>