├── Procfile
├── .gitignore
├── frontend
├── public
│ ├── robots.txt
│ ├── manifest.json
│ └── index.html
├── src
│ ├── styles
│ │ ├── YoutubeVideo.css
│ │ ├── LandingImage.css
│ │ ├── WriteUp.css
│ │ ├── NavBar.css
│ │ ├── Footer.css
│ │ ├── Donation.css
│ │ └── Header.css
│ ├── index.js
│ ├── index.css
│ ├── components
│ │ ├── YoutubeVideo.js
│ │ ├── LandingImage.js
│ │ ├── NavBar.js
│ │ ├── Header.js
│ │ ├── WriteUp.js
│ │ ├── Footer.js
│ │ └── Donation.js
│ └── App.js
├── .gitignore
├── package.json
├── .eslintcache
└── README.md
├── README.md
├── routes
└── paystackRouters.js
├── package.json
├── server.js
└── controllers
└── paystackControllers.js
/Procfile:
--------------------------------------------------------------------------------
1 | web: node server.js
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
3 | .env
--------------------------------------------------------------------------------
/frontend/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/frontend/src/styles/YoutubeVideo.css:
--------------------------------------------------------------------------------
1 | .youtube__container {
2 | margin: 20px auto;
3 | max-width: 95%;
4 | }
5 |
--------------------------------------------------------------------------------
/frontend/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "start_url": ".",
5 | "display": "standalone",
6 | "theme_color": "#000000",
7 | "background_color": "#ffffff"
8 | }
9 |
--------------------------------------------------------------------------------
/frontend/src/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import ReactDOM from "react-dom";
3 | import "./index.css";
4 | import App from "./App";
5 |
6 | ReactDOM.render(
7 |
12 | 11 | Anike Foundation welcomes individuals or organizations who want to 12 | join our effort to develop education in Africa. 13 |
{" "} 14 |16 | We need volunteers for various assignments. For a complete list of our 17 | open volunteer positions, please visit our{" "} 18 | opportunities page.{" "} 19 |
{" "} 20 |22 | Alternatively, please email us at{" "} 23 | contact@anikefoundation.org with a resume attached and 24 | a brief description of your skills and interests, and we will get back 25 | to you shortly with a potential position that might be a good fit. 26 |
{" "} 27 |29 | Please note: Volunteer programs in Africa are not available through 30 | Anike Foundation itself. However, our Ambassador in Africa program 31 | offers the opportunity for volunteering with one of our partnering 32 | organizations in Africa.{" "} 33 |
34 |