mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
25 lines
665 B
Elm
25 lines
665 B
Elm
![]() |
module Cuckery.CuckList.GaryBrecka exposing (..)
|
||
|
|
||
|
import Cuckery.Types exposing (..)
|
||
|
|
||
|
|
||
|
cuckGaryBrecka : Cuck
|
||
|
cuckGaryBrecka =
|
||
|
let
|
||
|
name : String
|
||
|
name =
|
||
|
"Gary Brecka"
|
||
|
in
|
||
|
{ cuckImage = formatCuckName name
|
||
|
, cuckName = name
|
||
|
, cuckSocial = "https://twitter.com/garybrecka1"
|
||
|
, cuckDodges =
|
||
|
[ { dodgeLink = "https://x.com/TheNutrivore/status/1726664526316372125"
|
||
|
, dodgeDescription = NoReply
|
||
|
, dodgeProposition = "linoleic acid consumption causes atherosclerosis."
|
||
|
, dodgeNicksDoxasticState = Just Disbelief
|
||
|
, dodgeNicksDoxasticReason = NoProp
|
||
|
}
|
||
|
]
|
||
|
}
|