website/frontend/src/Config/Identity.elm

31 lines
692 B
Elm
Raw Normal View History

2024-11-10 22:55:49 -06:00
module Config.Identity exposing (..)
2024-11-11 18:57:51 -06:00
type alias PageInput =
{ pageHome : String
, pageContact : String
, pageDebate : String
2024-12-07 15:43:26 -06:00
, pageCucks : String
, pageGibberish : String
2024-11-11 18:57:51 -06:00
, pageHyperBlog : String
, pageInterviews : String
, pageNutriDex : String
, pageServices : String
2024-11-27 15:11:21 -06:00
, pageDonate : String
2024-11-11 18:57:51 -06:00
}
pageNames : PageInput
pageNames =
2024-12-07 15:43:26 -06:00
{ pageHome = "Home"
, pageServices = "services"
2024-12-07 15:43:26 -06:00
, pageCucks = "cuckList"
, pageDebate = "arguments"
, pageGibberish = "gibberish"
, pageHyperBlog = "hyperBlog"
, pageNutriDex = "nutriDex"
, pageInterviews = "interviews"
, pageContact = "contact"
2024-11-27 15:11:21 -06:00
, pageDonate = "donate"
2024-11-11 18:57:51 -06:00
}