generated from acm-ucr/acm-ucr-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from acm-ucr/stanley/costaRicaPage
stanley/costaRicaPage
- Loading branch information
Showing
3 changed files
with
85 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
import React from "react"; | ||
|
||
import CostaRica from "@/components/projects/CostaRica"; | ||
const page = () => { | ||
return <div>page</div>; | ||
return ( | ||
<> | ||
<CostaRica /> | ||
</> | ||
); | ||
}; | ||
|
||
export default page; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,81 @@ | ||
import Subtitle from "../Subtitle"; | ||
const CostaRica = () => { | ||
return <div>CostaRica</div>; | ||
return ( | ||
<div className="grid grid-cols-3 gap-10 m-28"> | ||
<div className="col-span-2 pb-4"> | ||
<Subtitle title="General Overview" /> | ||
<div className="ml-2 mt-1"> | ||
In collaboration with Claudia Chaves Villarreal, a Ph.D. Candidate and | ||
her organization Biogas Pococi, we are working to implement | ||
Biodigestor tanks and micro controlling systems. She has already | ||
implemented this system for 38 families! The Biodigestor provides | ||
clean fuel without the emission of harmful particulates that has had | ||
detrimental impacts on the health of rural inhabitants. The | ||
Biodigestor also provides a source of fertilizer for farmers to use. | ||
</div> | ||
</div> | ||
<div> | ||
<img src="/images/CostaRica/CostaRica1.gif" alt="Costa Rica Image 1" /> | ||
</div> | ||
|
||
<div className="col-span-2 pb-4"> | ||
<Subtitle | ||
title="Motivation" | ||
description="Rural communities are already disadvantaged socioeconomically" | ||
/> | ||
<div className="ml-2 mt-1"> | ||
<ul | ||
className="marker:text-ewb-blue-200 ml-4" | ||
style={{ listStyleType: "square" }} | ||
> | ||
<li> | ||
Include them in the building process by teaching them the basics | ||
of engineering | ||
</li> | ||
<li>Inspire them to peruse education</li> | ||
<li>Improve infrastructure of land and quality of life</li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div> | ||
<img src="/images/CostaRica/CostaRica2.gif" alt="Costa Rica Image 2" /> | ||
</div> | ||
|
||
<div className="col-span-3 pb-4"> | ||
<Subtitle | ||
title="Educational Micro Controller Projects" | ||
description="Education is very hard to obtain affecting isolated rural communities the most" | ||
/> | ||
<div className="ml-2 mt-1"> | ||
<ul | ||
className="marker:text-ewb-blue-200 ml-4" | ||
style={{ listStyleType: "square" }} | ||
> | ||
<li> | ||
Providing some micro controllers and electronic parts allow for | ||
community members, from kids to adults, gain a valuable skill that | ||
improves their future opportunities | ||
</li> | ||
<li> | ||
Is beneficial for both the volunteer(you), to gain once a lifetime | ||
experience, and to the disadvantage community by improving their | ||
way of life | ||
</li> | ||
<li> | ||
A water treatment system will also be implemented, to learn more | ||
check out the | ||
<a | ||
href="water-quality-and-filtration" | ||
className="text-ewb-blue-200 font-bold hover:text-ewb-green" | ||
> | ||
water quality and filtration | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CostaRica; |