mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: added donation page
This commit is contained in:
parent
20c53ffeda
commit
1501624920
41 changed files with 870 additions and 50 deletions
42
frontend/src/Donate/Methods/KoFi.elm
Normal file
42
frontend/src/Donate/Methods/KoFi.elm
Normal file
|
@ -0,0 +1,42 @@
|
|||
module Donate.Methods.KoFi exposing (..)
|
||||
|
||||
import Donate.Types exposing (..)
|
||||
|
||||
|
||||
donateKoFi : Donate
|
||||
donateKoFi =
|
||||
let
|
||||
name : String
|
||||
name =
|
||||
"Ko-Fi"
|
||||
in
|
||||
{ donateImage = formatName name
|
||||
, donateLink = "https://ko-fi.com/thenutrivore"
|
||||
, donateName = name
|
||||
, donateFees = "5%"
|
||||
, donatePreference = 5
|
||||
, donateFeatures =
|
||||
[ { fees = Just True
|
||||
, subscriptions = Just True
|
||||
, openSource = Just False
|
||||
, fastPayments = Just False
|
||||
, userFriendly = Just True
|
||||
, anonymous = Just True
|
||||
, rewardTiers = Just False
|
||||
}
|
||||
]
|
||||
, donatePros =
|
||||
[ { pro = "Supports one-time and monthly donations."
|
||||
}
|
||||
, { pro = "Allows digital downloads and commissions."
|
||||
}
|
||||
, { pro = "Relatively simple platform."
|
||||
}
|
||||
]
|
||||
, donateCons =
|
||||
[ { con = "Less feature-rich compared to other services."
|
||||
}
|
||||
, { con = "Smaller user base compared to more established platforms."
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue