mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
31 lines
947 B
Elm
31 lines
947 B
Elm
![]() |
module Cuckery.CuckList.EdwardGoeke exposing (..)
|
||
|
|
||
|
import Cuckery.Types exposing (..)
|
||
|
|
||
|
|
||
|
cuckEdwardGoeke : Cuck
|
||
|
cuckEdwardGoeke =
|
||
|
let
|
||
|
name : String
|
||
|
name =
|
||
|
"Edward Goeke"
|
||
|
in
|
||
|
{ cuckImage = formatCuckName name
|
||
|
, cuckName = name
|
||
|
, cuckSocial = "https://twitter.com/GoekeEddie"
|
||
|
, cuckDodges =
|
||
|
[ { dodgeLink = "https://x.com/TheNutrivore/status/1773421625150746784?s=20"
|
||
|
, dodgeDescription = NoReply
|
||
|
, dodgeProposition = "seed oils are inflammatory."
|
||
|
, dodgeNicksDoxasticState = Just Disbelief
|
||
|
, dodgeNicksDoxasticReason = NoProp
|
||
|
}
|
||
|
, { dodgeLink = "https://x.com/TheNutrivore/status/1774154640403423359?s=20"
|
||
|
, dodgeDescription = NoReply
|
||
|
, dodgeProposition = "seed oils are inflammatory."
|
||
|
, dodgeNicksDoxasticState = Just Disbelief
|
||
|
, dodgeNicksDoxasticReason = NoProp
|
||
|
}
|
||
|
]
|
||
|
}
|