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

Added Akili dada #33

Merged
merged 2 commits into from
Oct 30, 2024
Merged
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
65 changes: 65 additions & 0 deletions src/non-profits-data/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,71 @@
import { NonProfit } from '../types/non-profit';

const nonProfits: readonly NonProfit[] = [
{
npCode: 'Renbi Women',
name: 'Renbi Women',
email: '[email protected]',
country: 'Nigeria',
website: 'https://renbiwomen.org/',
logo: 'https://renbiwomen.org/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Flogo-1500.24cb05a5.png&w=3840&q=75',
foundedYear: '2022',
description:
'Renbi Women Empowerment Initiative focuses on the economic empowerment of women in vulnerable communities in Nigeria.',
isVerified: true,
verifications: [
{
date: new Date('Oct 4, 2024'),
verifier: '@HammedBabatunde',
},
],
paymentMethods: [
/*
{
type: 'chimoney',
paymentID: {
test: '',
production: '',
},
donationHandler: 'chimoneyDonation',
},
*/
{
type: 'donation-link',
paymentID: 'https://renbiwomen.org/donate',
},
],
},
{
npCode: 'Akili Dada',
name: 'Akili Dada',
email: '[email protected]',
country: 'Kenya',
website: 'https://akilidada.org',
logo: 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQLDuBgEDvEPkpD0u-LTtO0lYKhuyJdsQ3RIg&s',
foundedYear: '2005',
description: 'Akili Dada is an international leadership incubator aimed at empowering high-achieving young women from underprivileged backgrounds',
isVerified: true,
verifications: [
{
date: new Date('2024-10-13'),
verifier: '@Codegirl254',
}
],
paymentMethods: [
{
type: 'donation-link',
paymentID: 'https://akilidada.org/how-to-support.html',
},
// {
// type: 'chimoney',
// paymentID: {
// test: '',
// production: 'uniqueChimoneyID', //if present
// },
// donationHandler: 'chimoneyDonation',
// }
],
},
{
npCode: 'SheCodeAfrica',
name: 'She Code Africa',
Expand Down
Loading