website/frontend/src/Headers/Pages/Donate.elm
2024-12-08 02:18:36 -06:00

15 lines
434 B
Elm
Executable file

module Headers.Pages.Donate exposing (..)
import Headers.Types exposing (..)
donateHeader : Header
donateHeader =
let
name =
"Donate"
in
{ headerTitle = String.toUpper name
, headerName = name
, headerBody = "My site, research, and content all cost time and money to run. If you find my contributions valuable, please consider supporting my work on any of the platforms listed below!"
}