mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
24 lines
646 B
Elm
24 lines
646 B
Elm
module Cuckery.CuckList.ClemensZsofia exposing (..)
|
|
|
|
import Cuckery.Types exposing (..)
|
|
|
|
|
|
cuckClemensZsofia : Cuck
|
|
cuckClemensZsofia =
|
|
let
|
|
name : String
|
|
name =
|
|
"Clemens Zsófia"
|
|
in
|
|
{ cuckImage = formatCuckName name
|
|
, cuckName = name
|
|
, cuckSocial = "https://twitter.com/ClemensZsofia"
|
|
, cuckDodges =
|
|
[ { dodgeLink = "https://twitter.com/TheNutrivore/status/1528377198180290561?s=20"
|
|
, dodgeDescription = NoReply
|
|
, dodgeProposition = noProposition
|
|
, dodgeNicksDoxasticState = Nothing
|
|
, dodgeNicksDoxasticReason = NoProp
|
|
}
|
|
]
|
|
}
|