diff --git a/src/app/projects/costa-rica/page.js b/src/app/projects/costa-rica/page.js index a54c709..a37e943 100644 --- a/src/app/projects/costa-rica/page.js +++ b/src/app/projects/costa-rica/page.js @@ -1,7 +1,11 @@ import React from "react"; - +import CostaRica from "@/components/projects/CostaRica"; const page = () => { - return
page
; + return ( + <> + + + ); }; export default page; diff --git a/src/components/Subtitle.jsx b/src/components/Subtitle.jsx index 414745c..23e4955 100644 --- a/src/components/Subtitle.jsx +++ b/src/components/Subtitle.jsx @@ -1,4 +1,4 @@ -const Subtitle = ({ title, descripton }) => { +const Subtitle = ({ title, description }) => { return (
@@ -6,7 +6,7 @@ const Subtitle = ({ title, descripton }) => {
{title}
- {descripton} + {description}
); diff --git a/src/components/projects/CostaRica.jsx b/src/components/projects/CostaRica.jsx index b227e2b..4766788 100644 --- a/src/components/projects/CostaRica.jsx +++ b/src/components/projects/CostaRica.jsx @@ -1,5 +1,81 @@ +import Subtitle from "../Subtitle"; const CostaRica = () => { - return
CostaRica
; + return ( +
+
+ +
+ 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. +
+
+
+ Costa Rica Image 1 +
+ +
+ +
+
    +
  • + Include them in the building process by teaching them the basics + of engineering +
  • +
  • Inspire them to peruse education
  • +
  • Improve infrastructure of land and quality of life
  • +
+
+
+
+ Costa Rica Image 2 +
+ +
+ +
+
    +
  • + Providing some micro controllers and electronic parts allow for + community members, from kids to adults, gain a valuable skill that + improves their future opportunities +
  • +
  • + Is beneficial for both the volunteer(you), to gain once a lifetime + experience, and to the disadvantage community by improving their + way of life +
  • +
  • + A water treatment system will also be implemented, to learn more + check out the + + water quality and filtration + +
  • +
+
+
+
+ ); }; export default CostaRica;