feat: added interviews

This commit is contained in:
Nick 2024-11-27 01:42:58 -06:00
parent eb17ceb6c2
commit d9dccdd727
19 changed files with 654 additions and 27 deletions

View file

@ -0,0 +1,32 @@
module Interviews.Episodes.SigmaNutritionRadio exposing (..)
import Interviews.Types exposing (..)
sigmaNutritionRadio : Interview
sigmaNutritionRadio =
let
name : String
name =
"Sigma Nutrition Radio"
in
{ interviewName = name
, interviewImage = formatInterviewName name
, interviewSocial = "https://x.com/NutritionDanny"
, interviewAppearances =
[ { appearanceTitle = "Micronutrients, Anti-nutrients, and Non-essential Nutrients"
, appearanceEpisode = "360"
, appearanceLink = "https://sigmanutrition.com/episode360/"
, appearanceExperience = 1
, appearanceSubjects =
[ { subject = "How best to measure nutrient density." }
, { subject = "The downsides of maximizing nutrient density." }
, { subject = "Anti-nutrients: how relevant are they?" }
, { subject = "Understanding the effect of phytate, oxalate, etc." }
, { subject = "Hard to get nutrients in typical diets." }
, { subject = "Synergistic and moderating effects of nutrients." }
, { subject = "Non-essential nutrients & importance for health." }
]
}
]
}