feat: added some stuff

This commit is contained in:
Nick 2024-12-01 02:56:13 -06:00
parent f73dab4579
commit 36f9c89214
21 changed files with 573 additions and 155 deletions

View file

@ -17,6 +17,8 @@ import Element as E exposing (..)
import Element.Background as B exposing (..)
import Element.Border as D exposing (..)
import Element.Font as F
import Headers.Helpers exposing (headerMaker)
import Headers.Pages.Donate exposing (donateHeader)
import Html.Attributes as H exposing (style)
import Layouts
import Page exposing (Page)
@ -101,20 +103,11 @@ donateContainer =
donateList : Element msg
donateList =
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
column pageList <|
List.concat
[ List.map headerMaker
[ donateHeader ]
, List.map donateMaker
[ donateLiberaPay
, donatePayPal
, donatePatreon
@ -123,4 +116,4 @@ donateList =
, donateYouTube
, donateMerch
]
]
]