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
48
frontend/src/Donate/Methods/YouTube.elm
Normal file
48
frontend/src/Donate/Methods/YouTube.elm
Normal file
|
@ -0,0 +1,48 @@
|
|||
module Donate.Methods.YouTube exposing (..)
|
||||
|
||||
import Donate.Types exposing (..)
|
||||
|
||||
|
||||
donateYouTube : Donate
|
||||
donateYouTube =
|
||||
let
|
||||
name : String
|
||||
name =
|
||||
"YouTube"
|
||||
in
|
||||
{ donateImage = formatName name
|
||||
, donateLink = "https://www.youtube.com/@TheNutrivore/membership"
|
||||
, donateName = name
|
||||
, donateFees = "45%"
|
||||
, donatePreference = 3
|
||||
, donateFeatures =
|
||||
[ { fees = Just True
|
||||
, subscriptions = Just True
|
||||
, openSource = Just False
|
||||
, fastPayments = Just False
|
||||
, userFriendly = Just True
|
||||
, anonymous = Just True
|
||||
, rewardTiers = Just True
|
||||
}
|
||||
]
|
||||
, donatePros =
|
||||
[ { pro = "Extremely familiar platform that most people use anyway."
|
||||
}
|
||||
, { pro = "Built-in monetization through ad revenue sharing."
|
||||
}
|
||||
]
|
||||
, donateCons =
|
||||
[ { con = "Extremely high platform cut (45% of ad revenue)."
|
||||
}
|
||||
, { con = "Content can be demonetized arbitrarily."
|
||||
}
|
||||
, { con = "Complicated and often changing monetization policies."
|
||||
}
|
||||
, { con = "High competition and algorithm dependency."
|
||||
}
|
||||
, { con = "Limited creator control over content visibility."
|
||||
}
|
||||
, { con = "Creators are easily censored."
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue