mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
30 lines
692 B
Elm
Executable file
30 lines
692 B
Elm
Executable file
module Config.Identity exposing (..)
|
|
|
|
|
|
type alias PageInput =
|
|
{ pageHome : String
|
|
, pageContact : String
|
|
, pageDebate : String
|
|
, pageCucks : String
|
|
, pageGibberish : String
|
|
, pageHyperBlog : String
|
|
, pageInterviews : String
|
|
, pageNutriDex : String
|
|
, pageServices : String
|
|
, pageDonate : String
|
|
}
|
|
|
|
|
|
pageNames : PageInput
|
|
pageNames =
|
|
{ pageHome = "Home"
|
|
, pageServices = "services"
|
|
, pageCucks = "cuckList"
|
|
, pageDebate = "arguments"
|
|
, pageGibberish = "gibberish"
|
|
, pageHyperBlog = "hyperBlog"
|
|
, pageNutriDex = "nutriDex"
|
|
, pageInterviews = "interviews"
|
|
, pageContact = "contact"
|
|
, pageDonate = "donate"
|
|
}
|