mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-17 12:55:12 -05:00
15 lines
434 B
Elm
Executable file
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!"
|
|
}
|