-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1024 lines (949 loc) · 53.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>
<head>
<title>RaaS - Reforestation as a Service - Tree Planting API</title>
<meta name="description"
content="A Simple Application Programming Interface (API) to help connect websites and mobile applications to trusted reforestation organizations to have trees planted." />
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport" />
<meta property="og:title" content="DigitalHumani - Reforestation as a Service" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.digitalhumani.com" />
<meta property="og:image" content="https://digitalhumani.com/img/raas-header.jpg" />
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-K8CK8WQ');</script>
<!-- End Google Tag Manager -->
<!-- css -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen" />
<link href="css/style.css" rel="stylesheet" media="screen" />
<link href="css/color.css" rel="stylesheet" media="screen" />
<script src="js/modernizr.custom.js"></script>
<!-- =======================================================
Theme Name: Mamba
Theme URL: https://bootstrapmade.com/mamba-one-page-bootstrap-template-free/
Author: BootstrapMade
Author URL: https://bootstrapmade.com
======================================================= -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K8CK8WQ" height="0" width="0"
style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="menu-area">
<div id="dl-menu" class="dl-menuwrapper">
<button class="dl-trigger">Open Menu</button>
<ul class="dl-menu">
<li>
<a href="#intro">Home</a>
</li>
<li>
<a href="https://docs.digitalhumani.com">
Documentation
</a>
</li>
<li>
<a href="/donate" target="_blank">
Donate
</a>
</li>
<li><a href="#how">How it works</a></li>
<li><a href="#use-cases">Use cases</a></li>
<li><a href="#partners">Reforestation Partners</a></li>
<li><a href="#architecture">Our architecture</a></li>
<li><a href="#team">Our team</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<!-- /dl-menuwrapper -->
</div>
<!-- intro area -->
<div id="intro">
<div class="intro-text">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="brand">
<h1><a href="index.html">RaaS</a></h1>
<div class="line-spacer"></div>
<p>
<span><b>(Reforestation as a Service)</b></span>
</p>
<p><span>A platform which easily integrates with your</span></p>
<p><span>products to reforest the planet</span></p>
</div>
<div class="cta-header">
<a href="https://my.digitalhumani.com/register">
<button class="cta-button border-2">Start Planting</button>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="cta">
<a href="https://my.digitalhumani.com/login" class="cta-link">Sign In</a>
<a href="https://my.digitalhumani.com/register">
<button class="cta-button">Sign Up</button>
</a>
</div>
</div>
<!-- How -->
<section id="how" class="home-section bg-white" style="padding-bottom: 90px">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>How it works</h2>
<p>
We provide simple and easy to use Application Programming Interfaces
(APIs) to help connect websites and mobile applications to trusted
reforestation organizations to have trees planted.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="service-box wow bounceInDown" data-wow-delay="0.1s">
<i class="fa fa-cog fa-4x"></i>
<h4>1- Choose a reforestation project</h4>
<p>
Choose a reforestation project from our list, in various countries.
</p>
</div>
</div>
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3" data-wow-delay="0.3s">
<div class="service-box wow bounceInDown" data-wow-delay="0.1s">
<i class="fa fa-code fa-4x"></i>
<h4>2- Add code to your website or app</h4>
<p>
Add a few line of code in your website or mobile app to call the API
requesting the planting of a tree.
</p>
</div>
</div>
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3" data-wow-delay="0.5s">
<div class="service-box wow bounceInDown" data-wow-delay="0.1s">
<i class="fa fa-desktop fa-4x"></i>
<h4>3- A user makes an action</h4>
<p>
When your users make the action of your choice (buying an item in a
mobile game, subscribing to online billing, buying a specific
product on your website, etc.), a request to plant a tree will be
made.
</p>
</div>
</div>
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3" data-wow-delay="0.7s">
<div class="service-box wow bounceInDown" data-wow-delay="0.1s">
<i class="fa fa-pagelines fa-4x"></i>
<h4>4- A tree is planted!</h4>
<p>
That's it! You will be billed ($1 per tree) by the trusted
reforestation organizations of your choice. You will receive a
monthly invoice and report indicating how many trees were planted on
your behalf.
</p>
</div>
</div>
</div>
<br />
<!-- It's a free section -->
<div style="text-align: left; margin-top: 5rem">
<h5 style="text-align: center;">The solution is completely free of charge.</h5>
<p>
It is developed and maintained by a group of volunteers who want to make
their part to help fight climate change. <br /><br />
The $1 / tree is paid <em>directly</em> to the reforestation organization
you choose, <b>without us handling the money</b>. This way, you can be sure
that the money will be used to have the trees planted.
</p>
</div>
<div class="row mar-top100">
<div class="dashboard-section">
<div class="section-heading">
<h2>Dashboard</h2>
<p>
The DigitalHumani dashboard is the quickest way to get started planting trees. From the
dashboard, you can submit tree planting requests, view stats around your tree planting
usage, retrieve info about the API including access info and documentation, and more.
</p>
<div class="cta-body">
<a href="https://my.digitalhumani.com/register">
<button class="cta-button border-2 invert">Get Started</button>
</a>
</div>
</div>
<div class="dashboard-screenshot">
<img src="img/dashboard-screenshot.png" alt="Dashboard Screenshot">
</div>
</div>
<div class="col-md-offset-2 col-md-8"></div>
</div>
<div class="row mar-top60">
<div class="integration-section">
<h2>Tree planting made easy</h2>
<h4 class="integration-subheading">
A simple API with powerful integrations and plug-ins to get you up and running.
</h4>
<div class="cta-body">
<a href="https://docs.digitalhumani.com">
<button class="cta-button border-2 invert">View Docs</button>
</a>
<a href="https://docs.digitalhumani.com#documentationsdks-plugins">
<button class="cta-button border-2 invert">View Integrations</button>
</a>
</div>
<div class="integration-platforms">
<a href="https://zapier.com/apps/digital-humani/integrations">
<img src="/img/integrations/zapier.png" alt="Zapier">
</a>
<a href="https://marketplace.magento.com/absolute-magento2-reforestation.html">
<img src="/img/integrations/magento.png" alt="Magento">
</a>
<a href="https://github.com/marketplace/actions/continuous-reforestation">
<img src="/img/integrations/github.png" alt="Github">
</a>
</div>
</div>
<div class="col-md-offset-2 col-md-8"></div>
</div>
</div>
</section>
<!-- spacer -->
<section id="spacer1" class="home-section spacer">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="color-light">
<h2 class="wow bounceInDown" data-wow-delay="1s">
Trees fight climate change by absorbing CO2 from the atmosphere.
</h2>
<p class="lead wow bounceInUp" data-wow-delay="2s">
Each tree can absorb 22kg (50 pounds) of CO2 per year for 30 years.
</p>
<p class="lead wow bounceInUp" data-wow-delay="3s">
Furthermore, trees contribute to economic growth, poverty
alleviation, food security and biodiversity conservation.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Use cases for your business -->
<section id="use-cases" class="home-section bg-gray">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>Use cases for your business</h2>
<b>
<p>
Here are some examples of use cases where you might want to have
a tree planted:
</p>
</b>
<br />
<ul>
<li>
<p style="text-align: left">
When a user makes an in-app purchase in your mobile game
</p>
</li>
<li>
<p style="text-align: left">
When a user switches to online billing
</p>
</li>
<li>
<p style="text-align: left">
When a user subscribes to a 6 months plan
</p>
</li>
<li>
<p style="text-align: left">
When a user buys a specific product on your website
</p>
</li>
<li>
<p style="text-align: left">When a user refers a friend</p>
</li>
<li>
<p style="text-align: left">etc.</p>
</li>
<br />
</ul>
<font color="#088A08">
<p>
These are only examples, of course. It's up to you to decide
when a request for a tree will be made, depending of which
action, product or service you want to promote.
</p>
</font>
</div>
</div>
</div>
</div>
</section>
<!-- Reforestation Partners -->
<section id="partners" class="home-section bg-gray">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>Reforestation Partners</h2>
<p>
<b>
The RaaS (Reforestation as a Service) solution currently works
with 7 reforestation organizations</b>
</p>
</div>
</div>
</div>
<img src="img/OneTreePlanted-logo.png" alt="One Tree Planted Logo" />
<p>
<b><a href="https://onetreeplanted.org/" target="_blank">One Tree Planted</a></b>
is a non-profit organization with over 2.5 millions trees planted since their
foundation in 2014. They are based in Vermont, USA. They currently have
reforestation projects in the following countries, from which you can have your
trees planted:
<b>Australia</b>, <b>Brazil</b>, <b>Canada</b> (British Columbia, New Brunswick,
Ontario, Québec), <b>Colombia</b>, <b>Côte d'Ivoire</b>, <b>Denmark</b>, <b>Ethiopia</b>,
<b>Ghana</b>, <b>Guatemala</b>, <b>Haiti</b>, <b>Honduras</b>, <b>Iceland</b>,
<b>India</b>, <b>Indonesia</b>, <b>Kenya</b>, <b>Malawi</b>, <b>Mexico</b>, <b>New Zealand</b>,
<b>Peru</b>, <b>Philippines</b>, <b>Romania</b>, <b>Rwanda</b>,
<b>Spain</b>, <b>Tanzania</b>, <b>Uganda</b>, <b>United States</b> (Appalachia, California,
Oregon, Florida) and <b>Vietnam</b>. Details on the projects
<b><a href=" https://onetreeplanted.org/collections/where-we-plant" target="_blank">here</a></b>.
</p>
<p>
<b>Note:</b> Because of an unusual high demands for trees in the last few
months, availability of certain projects will have to be confirmed.
</p>
<p>
One Tree Planted is a Registered 501(c)(3) charity in the US. Their latest
annual report (2019) available
<b><a href="https://cdn.shopify.com/s/files/1/0326/7189/files/2019_Annual_Report.pdf"
target="_blank">here</a></b>.
</p>
<br />
<br />
<img src="img/chase-africa-logo.jpg" alt="Chase Africa Logo" />
<br />
<p></p>
<p>
<b><a href="https://www.chaseafrica.org.uk/" target="_blank">Chase Africa</a></b>
works with a local partner and the Kenya Forest Service to restore the degraded
forests on the slopes of Mount Kenya. The Mount Kenya forest supports a vast
array of flora and fauna and is an UNESCO World Heritage Site.
</p>
<p>
DigitalHumani partners with Chase Africa for their reforestation efforts on
Mount Kenya forest, and through the RaaS solution, you can have trees planted by
Chase Africa in this project in Kenya. So far, 66,000 indigenous trees were
restored on Mount Kenya forest by Chase Africa. Details on the project in Kenya
(section Forest Restoration)
<b><a href="https://www.chaseafrica.org.uk/about-us/sustainable-environment/"
target="_blank">here</a></b>.
</p>
<p>
Chase Africa is a Registered Charity in the UK (No: 1082958) and their annual
reports are available
<b><a href="https://www.chaseafrica.org.uk/information/annual-reports/" target="_blank">here</a></b>.
<br />
<br />
<img src="img/TIST_Logo_Green.png" alt="TIST Logo" />
<p>
<b><a href="https://program.tist.org/" target="_blank">TIST</a></b> (The
International Small Group and Tree Planting Program) encourages small groups of
subsistence farmers to improve their local environment and farms by planting and
maintaining trees on degraded and/or unused land. Over 88,000 farmers in 4
countries have successfully planted more than 18 millions trees since their
foundation in 1999. Through the RaaS solution, you can have trees planted by the
TIST farmers in <b>Kenya</b> and <b>India</b>. Details on the project in India
<b><a href=" https://program.tist.org/india" target="_blank">here</a></b> and on
the project in Kenya
<b><a href="https://program.tist.org/kenya" target="_blank">here</a></b>.
</p>
<p>
TIST is a project, run through a public-private partnership. Tax-deductible
donations to I4EI, TIST's non-profit arm and a registered 501(c)(3) charity in
the US, go directly to planting trees. Details
<b><a href="https://www.i4ei.org/#about" target="_blank">here</a></b>.
</p>
<br />
<img src="img/Sustainable-Harvest-logo.png" alt="Sustainable Harvest Logo" />
<p>
<b><a href="https://www.sustainableharvest.org/" target="_blank">Sustainable Harvest
International</a></b>
was built on the idea that environmental devastation and rural poverty are
unavoidably linked. They partner with farmers, providing long-term support and
hands-on training. Since 1997, they've worked with over 2,891 families and
planted 4 million trees. Through the RaaS solution, you can have trees planted
by the Sustainable Harvest International farmers in <b>Honduras</b> and
<b>Belize</b>. Details on these 2 projects
<b><a href="https://www.sustainableharvest.org/programs" target="_blank">here</a></b>.
</p>
<p>
Sustainable Harvest International is a Registered 501(c)(3) charity in the US,
based in Boston, Massachusetts. 501(c) certificate and annual report available
<b><a href="https://www.sustainableharvest.org/financial-archive" target="_blank">here</a></b>.
</p>
<br />
<img src="img/conserve-natural-forests-logo.png" alt="Conserve Natural Forests Logo" />
<p>
<b><a href="https://conservenaturalforests.org/" target="_blank">Conserve Natural Forests</a></b>
is a non-profit foundation focused on forest restoration and wildlife
conservation in the tropical mountain forests of northern <b>Thailand</b>. This
includes the restoration of nearby degraded landscapes and the preservation of
local forests.
</p>
<p>
More information about their reforestation work
<b><a href="https://conservenaturalforests.org/reforestation/" target="_blank">here</a></b>.
</p>
<br />
<img src="img/logo-Planting-On-Demand.png" alt="Planting on Demand Logo" />
<p>
<b><a href="https://www.plantingondemand.org/" target="_blank">Planting on Demand</a></b> is a company
offering mangrove reforestation via the <a href="https://www.marineconservationphilippines.org/"
target="_blank">Marine Conservation Philippines</a> (non-profit in the <b>Philippines</b>) and via
<a href="http://www.carbonethics.org/" target="_blank">CarbonEthics</a> (non-profit in
<b>Indonesia</b>).
Planting on Demand can send pictures that show the planting area before, while and after planting,
including pictures of a tree planter holding a sign with the name of your company on it.
</p>
<p>
More information about their reforestation work
<b><a href="https://www.plantingondemand.org/" target="_blank">here</a></b>.
</p>
<br />
<img src="img/Logo-Community-Forests-International.png" alt="Community Forests International Logo" />
</p>
<p>
<b><a href="https://forestsinternational.org/" target="_blank">Community Forests International</a></b>
is a
Canadian charity, working to protect and restore the climate by enabling communities and forests to
thrive together. DigitalHumani's RaaS (Reforestation as a Service) solution
can be used to plant trees in <b>Acadian forests</b> in Canada (primarily New Brunswick and Nova Scotia)
on lands owned by Community Forests International. These lands
are purchased for the purpose of bringing healthy forests back permanently and for the next generation.
</p>
<p>
Details on the Acadian project available
<b><a href="https://forestsinternational.org/restoration/acadianforest/" target="_blank">here</a></b>
and
their annual reports are available <b><a
href="https://forestsinternational.org/homepage/about/annual-reports/"
target="_blank">here</a></b>.
</p>
</div>
</section>
<!-- Architecture -->
<section id="architecture" class="home-section bg-white">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>Our architecture</h2>
<p>
Our architecture is 100% on AWS (Amazon Web Services), offering us
(and you!) a reliable, scalable, cost-effective and secure solution.
</p>
</div>
</div>
</div>
<img style="width: 100%;" src="img/3D-architecture.png" alt="DigitalHumani architecture" />
</div>
</section>
<!-- spacer 2 -->
<section id="spacer2" class="home-section spacer">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="color-light">
<h2 class="wow bounceInDown" data-wow-delay="1s">
"Forests represent one of the largest, most cost-effective climate
solutions available today."
</h2>
<p class="lead wow bounceInUp" data-wow-delay="2s">
(New York Declaration on Forests, 2014)
</p>
</div>
</div>
</div>
</div>
</section>
<!-- ======= Our Team Section ======= -->
<section id="team">
<div class="section-title">
<h2>Our Team</h2>
<p>
We are a volunteer collective of IT oriented people from all around the world
who want to do our part in fighting climate change. Registered as a non-profit (ID 1176355692) in
Quebec, Canada.
</p>
</div>
<div class="team-container">
<div class="member" style="background-image: url('img/team/picture-jonathan-villiard.png')"
alt="Jonathan Villiard">
<div class="member-info">
<span class="member-name">Jonathan Villiard</span>
<span class="member-title"><i>Founder / Solutions Architect</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/jonathanvilliard" alt="LinkedIn - Jonathan Villiard"
target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Jonathan Villiard is the founder and one of the solutions architects of
DigitalHumani. He lives in Montréal, Canada. His inspiration stemmed
from the idea that climate change might well be the biggest problem of
our time, and planting trees represents one of the most cost-effective
climate solutions available. With this in mind, he wanted to put to good
use cloud technologies and be part of the climate solution. If he could
pick up a new skill in an instant, it would be teleportation (that’s a
skill, right? Right?)
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-carl-scheller.jpg')" alt="Carl Scheller">
<div class="member-info">
<span class="member-name">Carl Scheller</span>
<span class="member-title"><i>Software Engineer</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/cjscheller" alt="LinkedIn - Carl Scheller" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Carl helps lead DigitalHumani's engineering efforts. Hailing from
Florida, Carl is inspired to contribute towards DigitalHumani's goal of
making the planet a greener and healthier place 🌲. He's hoping to learn
the keyboard soon.
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-tim-davenport.jpg')"
alt="Jonathan Villiard">
<div class="member-info">
<span class="member-name">Tim Davenport</span>
<span class="member-title"><i>Solutions Architect</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/tim-davenport-6102a433/" alt="LinkedIn - Tim Davenport"
target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Tim Davenport is a Solutions Architect currently residing in North
Yorkshire, UK. His work with DigitalHumani is mostly in engineering, but
he also works on roadmaps and arranges regular team catch ups. His
inspiration to join DigitalHumani was the opportunity to put his
knowledge and skills to good use in return for the satisfaction of
knowing it's making a difference. If Tim could pick up a new skill in an
instant, it would be to speak every single language on the planet.
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-malia-stauffer.jpg')"
alt="Malia Stauffer">
<div class="member-info">
<span class="member-name">Malia Stauffer</span>
<span class="member-title"><i>Strategic Communications and Marketing</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/halimalia/" alt="LinkedIn - Malia Stauffer"
target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Malia Stauffer works in Strategic Communications and Marketing. She is
originally from Kailua-Kona, Hawai’i, but is currently living in
Auckland, New Zealand. It is her ambition to reflect personal values of
conservation and sustainability with professional pursuits. She feels
that working with DigitalHumani allows that ambition to come to
fruition, and provides an outlet to collaborate with a team of
like-minded, action-oriented people. If she could pick up a new skill in
an instant, it would be mastering theories of quantum physics.
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-slawomir-biernacki.jpg')"
alt="Slawomir Biernacki">
<div class="member-info">
<span class="member-name">Slawomir Biernacki</span>
<span class="member-title"><i>Software Engineer / DevOps</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/slawomirbiernacki/" alt="LinkedIn - Slawomir Biernacki"
target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Slawomir Biernacki hails from London, UK, and works as a Software
engineer and in DevOps. His inspiration to join the DigitalHumani Team
stems from his belief that we humans are responsible for the health of
our planet. He joined in as an effort to help conserve the natural
environment and fight climate change. If Slawomir could pick up a new
skill in an instant, it would be telling jokes that are actually funny.
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-nik-osvalds.png')" alt="Nik Osvalds">
<div class="member-info">
<span class="member-name">Nik Osvalds</span>
<span class="member-title"><i>Fullstack Developer</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/nosvalds/" alt="LinkedIn - Nik Osvalds" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Nikolas Osvalds lives in Bristol, U.K. He is passionate about making a
difference, especially in the sphere of climate action, and was looking
for a way to give back with his newly learned web development skills.
He’s found working as a developer with DigitalHumani to be a great way
to learn new technologies and skills in a relaxed and fun environment
while contributing to reforestation efforts. If Nik could pick up a new
skill in an instant, it would be playing the piano and reading music.
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-martin-malo.jpg')" alt="Martin Malo">
<div class="member-info">
<span class="member-name">Martin Malo</span>
<span class="member-title"><i>Software Engineer / Senior iOS Developer</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/malomartin/" alt="LinkedIn - Martin Malo" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Martin Malo lives in Joliette, Québec, Canada and is a Software Engineer
and Senior iOS Developer. His inspiration to join the DigitalHumani team
stemmed from a want for the human race to become aware of the
destruction that occurred and that is still occurring because of
lifestyle choices. Martin believes that together we can become Earth’s
protector and live in a more sustainable way. If Martin could pick up a
new skill in an instant, it would be to speak and read all languages.
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-xavier-bolduc-meilleur.png')"
alt="Xavier Bolduc-Meilleur">
<div class="member-info">
<span class="member-name">Xavier Bolduc-Meilleur</span>
<span class="member-title"><i>Developer</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/xavier-bolduc-meilleur-a87a71b1/"
alt="LinkedIn - Xavier Bolduc-Meilleur" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Xavier Bolduc-Meilleur is currently based in Québec, Canada. He works as
a developer, and joined the DigitalHumani Team as an opportunity to
learn new technologies while working on an inspiring project that is
focused on helping reforestation instead of making profits. He knew that
every person joining the team will be there with a motivation to work
for the project's success. If he could pick up a new skill in an
instant, it would be team and project management.
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-ruediger-busche.webp')"
alt="Rüdiger Busche">
<div class="member-info">
<span class="member-name">Rüdiger Busche</span>
<span class="member-title"><i>Software Engineer</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/rfbusche/" alt="LinkedIn - Rüdiger Busche" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Rüdiger is currently based in Hanover, Germany. He supports
DigitalHumani as a backend developer and in DevOps. He joined
DigitalHumani to explore ways in which technology can be part of the
climate solution and quickly grew addicted to watching increasing
numbers of trees being planted. If Rüdiger could pick up a new skill in
an instant it would be understanding category theory, even if it was
only for drawing profoundly looking diagrams.
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-arthur-dano.jpg')" alt="Arthur Dano">
<div class="member-info">
<span class="member-name">Arthur Dano</span>
<span class="member-title"><i>Software Engineer</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/arthur-dano-2b32368b/" alt="LinkedIn - Arthur Dano"
target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Arthur wanted to put his expertise as a Software Engineer to work for a cause that he believes
in, which is what led him to join the DigitalHumani Team. In his words, what could be better
than reforestation for a better future? Currently, Arthur is based in Rennes, France. If he
could pick up any skill, it would be the ability to identify all plants and how to use them!
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-brett-duboff.jpg')" alt="Brett Duboff">
<div class="member-info">
<span class="member-name">Brett Duboff</span>
<span class="member-title"><i>UX/UI Design and Graphic Design</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/brettduboff/" alt="LinkedIn - Brett Duboff"
target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Brett is a UX/UI and Graphic Designer currently based in Boston. He joined the DigitalHumani
team to use his design skills to make an impact in the world. If Brett could pick up a skill in
an instant, it would be the ability to hear a song and be able to play it on an instrument right
away.
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-jean-pascal-hebert.jpg')"
alt="Jean Pascal Hébert">
<div class="member-info">
<span class="member-name">Jean Pascal Hébert</span>
<span class="member-title"><i>Head of Commercial</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/jphebert/" alt="LinkedIn - Jean Pascal Hébert"
target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
JP is a career business executive, dad & dog owner based in Montreal. He is working as head of
commercial for DigitalHumani handling customer-facing activities, marketing, communications and
whatever else may be needed, for a good cause! JP wants to make the world a better place, one
tree at a time. If he could pick up any skill in an instant, it would be either electric guitar
or finance (he’s sure they're quite similar).
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-sylvie-roux.jpg')" alt="Sylvie Roux">
<div class="member-info">
<span class="member-name">Sylvie Roux</span>
<span class="member-title"><i>Administrator</i></span>
<div class="social">
<a href="https://www.linkedin.com/in/sylvieroux/" alt="LinkedIn - Sylvie Roux" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Sylvie Roux is a teacher based near Montreal. Because of her ecological and pro-environmental
side, she felt she had to take advantage of the opportunity to be part of this committed and
green team. She joined DigitalHumani as an observer and administrator. If she could pick up a
new skill in an instant, it would be raising awareness of the R rule. Refuse, Reduce, Reuse,
Recycle and… Compost.
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-villi-ieremia.png')" alt="Villi Ieremia">
<div class="member-info">
<span class="member-name">Villi Ieremia</span>
<span class="member-title"><i>Business Development & Growth </i></span>
<div class="social">
<a href="https://www.linkedin.com/in/villiieremia/" alt="LinkedIn - Villi Ieremia"
target="_blank">
<i class="fa fa-linkedin"></i>
</a>
</div>
<p class="member-bio">
Villi currently resides in Leuven, Belgium. She is a business professional with experience
in e-commerce operations and project management. She joined DigitalHumani during her
postgraduate
studies when she became increasingly aware of the potential of trees to combat climate change
and tree planting technologies. She works as a sustainability expert alongside digital marketing
and business development. If she could pick up a new skill in an instant,
it would be to travel in time and across space and distance (to infinity and beyond!).
</p>
</div>
</div>
<div class="member" style="background-image: url('img/team/picture-mohammad-ashour.jpg')"
alt="Mohammad Ashour">
<div class="member-info">
<span class="member-name">Mohammad Ashour</span>
<span class="member-title"><i>Programmer / Digital Creative</i></span>
<div class="social">
<a href="http://ashour.ca/" alt="Website Mohammad Ashour" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true" role="img" width="1.24em" height="1em"
preserveAspectRatio="xMidYMid meet" viewBox="0 0 825 667" style="color: white">
<path d="M590 487l156-362h79L591 667L412 261L234 667L0 125h79l156 362L412 82z"
fill="currentColor" />
</svg>
</a>
</div>
<p class="member-bio">
Mohammad is a programmer and digital creative who is starting a video game company. Mohammad
sees climate change as the number one threat to our species and the planet today, and joined
Digital Humani because he wanted to use his skills to get more trees planted to combat this
threat. When he’s not making stuff on his computer, Mohammad loves to learn new things and
consume unconscionable amounts of media. If he could pick up a new skill in an instant, it would
be the ability to be ok with whatever the world presented him, or flying. It's a tie between
enlightenment and flying.
</p>
</div>
</div>
</div>
</section>
<!-- End Team Section -->
<!-- Donate -->
<section id="support" class="bg-white" style="padding-top: 150px">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading" style="font-size: 16px">
<h2>Support our mission</h2>
<p>
DigitalHumani is a non-profit organization (ID 1176355692, registered in Quebec, Canada)
that is supported entirely by your generous donations.
</p>
<p>
Donate today to support our mission to make our planet greener 🌲
</p>
<br />
<a href="/donate" target="_blank">
<button class="cta-button border-2 invert" style="font-size: 18px;">Donate</button>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="home-section bg-white">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="section-heading">
<h2>Contact us</h2>
<p>
Please do not hesitate to contact us for more information about our
RaaS (Reforestation as a Service) solution. Email us at<b>
<a href="mailto:[email protected]">[email protected]</a>
</b> and we will get in touch with you shortly.
</p>
<br />
<!-- Begin Mailchimp Signup Form -->
<link href="https://cdn-images.mailchimp.com/embedcode/horizontal-slim-10_7.css"
rel="stylesheet" type="text/css" />
<style type="text/css">
#mc_embed_signup {
background: #fff;
clear: left;
font: 14px Helvetica, Arial, sans-serif;
width: 100%;
}
/* Add your own Mailchimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
</style>
<div id="mc_embed_signup">
<form
action="https://digitalhumani.us2.list-manage.com/subscribe/post?u=4a7b79f4faac08ff82141c3f6&id=3e865ed773"
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form"
class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<label for="mce-EMAIL">Please subscribe to our newsletter!</label>
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL"
placeholder="email address" required />
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px" aria-hidden="true">
<input type="text" name="b_4a7b79f4faac08ff82141c3f6_3e865ed773" tabindex="-1"
value="" />
</div>
<div class="clear">
<input type="submit" value="Subscribe" name="subscribe"
id="mc-embedded-subscribe" class="button" />
</div>
</div>
</form>
</div>
<!--End mc_embed_signup-->
<center>
<img src="img/Logo-DigitalHumani.png" alt="RaaS Logo" width="190" height="344" />
</center>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Footer social media links -->
<a aria-label="Linkedin page" href="https://www.linkedin.com/company/digitalhumani/" target="_blank"
rel="noreferrer noopener">
<i class="fa fa-linkedin" style="font-size: 1.7rem; color: white"></i>
</a>
<a aria-label="Twitter page" href="https://twitter.com/Digital_Humani" target="_blank"
rel="noreferrer noopener">
<i id="socialTwitter" class="fa fa-twitter"
style="font-size: 1.7rem; margin: 0 5px; color: white"></i>
</a>
<a aria-label="Facebook page" href="https://www.facebook.com/DigitalHumani" target="_blank"
rel="noreferrer noopener">
<i class="fa fa-facebook" style="font-size: 1.7rem; color: white"></i>
</a>
<div class="credits" style="margin-top: 2rem">
<!--
All the links in the footer should remain in tact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=Mamba
-->
Theme built from
<a href="https://bootstrapmade.com/" target="_blank">BootstrapMade</a>
</div>
<p style="margin-top: 2rem">DigitalHumani 🌲.</p>
</div>
</div>
</div>
</footer>
<!-- js -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.smooth-scroll.min.js"></script>
<script src="js/jquery.dlmenu.js"></script>