website/frontend/src/Headers/Pages/Donate.elm

16 lines
434 B
Elm
Raw Normal View History

2024-12-01 02:56:13 -06:00
module Headers.Pages.Donate exposing (..)
import Headers.Types exposing (..)
donateHeader : Header
donateHeader =
2024-12-08 02:18:36 -06:00
let
name =
"Donate"
in
{ headerTitle = String.toUpper name
, headerName = name
2024-12-01 02:56:13 -06:00
, 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!"
}