feat: added a bunch of stuff

This commit is contained in:
Nick 2024-11-30 04:32:00 -06:00
parent 2a0b5f25ca
commit 16cc054355
52 changed files with 252 additions and 38 deletions

View file

@ -11,8 +11,11 @@ import Donate.Methods.Merch exposing (donateMerch)
import Donate.Methods.Patreon exposing (donatePatreon)
import Donate.Methods.PayPal exposing (donatePayPal)
import Donate.Methods.YouTube exposing (donateYouTube)
import Donate.Types exposing (..)
import Effect exposing (Effect)
import Element exposing (..)
import Element as E exposing (..)
import Element.Background as B exposing (..)
import Element.Border as D exposing (..)
import Element.Font as F
import Html.Attributes as H exposing (style)
import Layouts
@ -98,15 +101,26 @@ donateContainer =
donateList : Element msg
donateList =
column
pageList
<|
List.map donateMaker
[ donateLiberaPay
, donatePayPal
, donatePatreon
, donateCardano
, donateKoFi
, donateYouTube
, donateMerch
]
column pageList
[ paragraph
(paragraphFormat
++ [ F.size 18
, alignTop
, E.width <| px 800
, centerX, F.center
]
)
[ text "Any of the below services may be bundled for a $10 discount off each hour. For example, bundling two sessions of Debate Analysis would be $140 total, rather than $80/hr. All services are changed in CAD." ]
, column
pageList
<|
List.map donateMaker
[ donateLiberaPay
, donatePayPal
, donatePatreon
, donateCardano
, donateKoFi
, donateYouTube
, donateMerch
]
]