Added packages for students to be able to purchase

This commit is contained in:
Tiago Ribeiro
2023-11-26 10:08:57 +00:00
parent c312260721
commit 7e91a989b3
16 changed files with 552 additions and 35 deletions

98
src/resources/paypal.ts Normal file
View File

@@ -0,0 +1,98 @@
export const CURRENCIES: {label: string; currency: string}[] = [
{
label: "Australian dollar",
currency: "AUD",
},
{
label: "Brazilian real 2",
currency: "BRL",
},
{
label: "Canadian dollar",
currency: "CAD",
},
{
label: "Chinese Renmenbi 3",
currency: "CNY",
},
{
label: "Czech koruna",
currency: "CZK",
},
{
label: "Danish krone",
currency: "DKK",
},
{
label: "Euro",
currency: "EUR",
},
{
label: "Hong Kong dollar",
currency: "HKD",
},
{
label: "Hungarian forint 1",
currency: "HUF",
},
{
label: "Israeli new shekel",
currency: "ILS",
},
{
label: "Japanese yen 1",
currency: "JPY",
},
{
label: "Malaysian ringgit 3",
currency: "MYR",
},
{
label: "Mexican peso",
currency: "MXN",
},
{
label: "New Taiwan dollar 1",
currency: "TWD",
},
{
label: "New Zealand dollar",
currency: "NZD",
},
{
label: "Norwegian krone",
currency: "NOK",
},
{
label: "Philippine peso",
currency: "PHP",
},
{
label: "Polish złoty",
currency: "PLN",
},
{
label: "Pound sterling",
currency: "GBP",
},
{
label: "Singapore dollar",
currency: "SGD",
},
{
label: "Swedish krona",
currency: "SEK",
},
{
label: "Swiss franc",
currency: "CHF",
},
{
label: "Thai baht",
currency: "THB",
},
{
label: "United States dollar",
currency: "USD",
},
];