mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
42 lines
1.1 KiB
Elm
42 lines
1.1 KiB
Elm
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."
|
|
}
|
|
]
|
|
}
|