-
Notifications
You must be signed in to change notification settings - Fork 16
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 #31 from HammedBabatunde/new-nonprofit
Added new non-profit
- Loading branch information
Showing
1 changed file
with
28 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 |
---|---|---|
@@ -1,6 +1,34 @@ | ||
import { NonProfit } from '../types/non-profit'; | ||
|
||
const nonProfits: readonly NonProfit[] = [ | ||
{ | ||
npCode: 'Gamble Alert', | ||
name: 'Gamble Alert', | ||
email: '[email protected]', | ||
country: 'Nigeria', | ||
website: 'https://gamblealert.org/', | ||
logo: 'https://gamblealert.org/wp-content/uploads/2023/11/cropped-logo.png', | ||
foundedYear: '2021', | ||
description: | ||
"Awareness on Gambling Risk Initiative (Gamble Alert) is a nonprofit dedicated to the prevention of gambling harm, and the provision of support for persons adversely affected by their gambling or that of their significant others.Gamble Alert also works to sensitize the youths on internet safety and protect them from risks associated with the use of the internet, including in-game bullying, online grooming, and gaming/gambling addiction.", | ||
isVerified: true, | ||
verifications: [ | ||
{ | ||
date: new Date('Oct 10, 2024'), | ||
verifier: '@HammedBabatunde', | ||
}, | ||
], | ||
paymentMethods: [ | ||
{ | ||
type: 'chimoney', | ||
paymentID: { | ||
test: '', | ||
production: '8aGbJOS5GJsXfezsxhHV', | ||
}, | ||
donationHandler: 'chimoneyDonation', | ||
}, | ||
], | ||
}, | ||
{ | ||
npCode: 'Renbi Women', | ||
name: 'Renbi Women', | ||
|