-
Notifications
You must be signed in to change notification settings - Fork 17
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 #27 from DevvEmeka/main
Nigerian NGOs for issue #391
- Loading branch information
Showing
1 changed file
with
94 additions
and
0 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 |
---|---|---|
|
@@ -714,6 +714,100 @@ const nonProfits: readonly NonProfit[] = [ | |
}, | ||
], | ||
}, | ||
{ | ||
npCode: 'ChessInSlumsAfrica', | ||
name: 'Chess in Slums Africa', | ||
email: '[email protected]', | ||
country: 'Nigeria', | ||
website: 'https://www.chessinslumsafrica.com/', | ||
logo: 'https://shorturl.at/fe3Pz', | ||
foundedYear: '2018', | ||
description: 'We are opening doors of opportunities and education for marginalized kids through chess♟. Together, we can do great things from a small place', | ||
isVerified: true, | ||
verifications: [ | ||
{ | ||
date: new Date('2024-10-15'), | ||
verifier: '@DevvEmeka', | ||
} | ||
], | ||
paymentMethods: [ | ||
{ | ||
type: 'donation-link', | ||
paymentID: 'https://www.chessinslumsafrica.com/donate', | ||
}, | ||
{ | ||
type: 'chimoney', | ||
paymentID: { | ||
test: '', | ||
production: '', //if present | ||
}, | ||
donationHandler: 'chimoneyDonation', | ||
} | ||
] | ||
}, | ||
{ | ||
npCode: 'FIDANigeria', | ||
name: 'International Federation of Women Lawyers (FIDA) Nigeria', | ||
email: '[email protected]', | ||
country: 'Nigeria', | ||
website: 'https://fida.org.ng/', | ||
logo: 'https://shorturl.at/yPEnK', | ||
foundedYear: '1964', | ||
description: 'FIDA Nigeria’s primary role is to protect, promote and preserve the rights of women and children in Nigeria.', | ||
isVerified: true, | ||
verifications: [ | ||
{ | ||
date: new Date('2024-10-15'), | ||
verifier: '@DevvEmeka', | ||
} | ||
], | ||
paymentMethods: [ | ||
{ | ||
type: 'donation-link', | ||
paymentID: 'https://paystack.com/pay/fida_donate', | ||
}, | ||
{ | ||
type: 'chimoney', | ||
paymentID: { | ||
test: '', | ||
production: '', //if present | ||
}, | ||
donationHandler: 'chimoneyDonation', | ||
} | ||
] | ||
}, | ||
{ | ||
npCode: 'CeceYara', | ||
name: 'Cece Yara Child Advocacy Centre', | ||
email: '[email protected]', | ||
country: 'Nigeria', | ||
website: 'https://ceceyara.org/', | ||
logo: 'https://shorturl.at/7F87l', | ||
foundedYear: '2016', | ||
description: 'The Cece Yara Foundation is a child-centered non-profit organization established in 2016 to prevent child sexual abuse and to provide access to care, information, protection and emergency intervention.', | ||
isVerified: true, | ||
verifications: [ | ||
{ | ||
date: new Date('2024-10-15'), | ||
verifier: '@DevvEmeka', | ||
} | ||
], | ||
paymentMethods: [ | ||
{ | ||
type: 'donation-link', | ||
paymentID: 'https://ceceyara.org/donation/', | ||
}, | ||
{ | ||
type: 'chimoney', | ||
paymentID: { | ||
test: '', | ||
production: '', //if present | ||
}, | ||
donationHandler: 'chimoneyDonation', | ||
} | ||
] | ||
} | ||
]; | ||
|
||
export default nonProfits; | ||
|