website/frontend/src/Donate/Methods/KoFi.elm

43 lines
1.1 KiB
Elm
Raw Normal View History

2024-11-28 19:28:24 -06:00
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."
}
]
}