Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stanley/costaRicaPage #58

Merged
merged 4 commits into from
Nov 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/app/projects/costa-rica/page.js
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;
4 changes: 2 additions & 2 deletions src/components/Subtitle.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const Subtitle = ({ title, descripton }) => {
const Subtitle = ({ title, description }) => {
return (
<div>
<div className="flex items-center gap-1">
<div className="bg-ewb-green h-5 w-1" />
<div className="text-ewb-blue-200 text-2xl font-bold">{title}</div>
</div>
<div className="text-ewb-green font-semibold text-lg ml-2">
{descripton}
{description}
</div>
</div>
);
Expand Down
78 changes: 77 additions & 1 deletion src/components/projects/CostaRica.jsx
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;