diff --git a/frontend/src/Config/Format.elm b/frontend/src/Config/Format.elm index 9b4fbed..045cb0e 100755 --- a/frontend/src/Config/Format.elm +++ b/frontend/src/Config/Format.elm @@ -170,3 +170,13 @@ basicDivider = , paddingEach { top = 40, bottom = 0, left = 0, right = 0 } ] none + + +formatName : String -> String +formatName name = + name + |> String.toLower + |> String.replace " " "" + |> String.replace "'" "" + |> String.replace "." "" + |> String.replace "-" "" diff --git a/frontend/src/Config/Identity.elm b/frontend/src/Config/Identity.elm index 1967563..de735c5 100755 --- a/frontend/src/Config/Identity.elm +++ b/frontend/src/Config/Identity.elm @@ -19,7 +19,7 @@ type alias PageInput = pageNames : PageInput pageNames = { pageRoot = "home" - , pageHome = "upRootHealth" + , pageHome = "upRootNutrition" , pagePlatforms = "platforms" , pageServices = "services" , pageDodgers = "cuckList" diff --git a/frontend/src/Config/StrengthBar.elm b/frontend/src/Config/StrengthBar.elm index c47bc63..bbac18a 100755 --- a/frontend/src/Config/StrengthBar.elm +++ b/frontend/src/Config/StrengthBar.elm @@ -26,7 +26,7 @@ barMaker getTooltip num = , D.color colourTheme.textDarkGrey , D.width 2 , B.gradient - { angle = 90 + { angle = 1.57 , steps = List.concat [ List.repeat num colourTheme.barGreen diff --git a/frontend/src/Cuckery/CuckList/AmberOHearn/AmberOHearn.elm b/frontend/src/Cuckery/CuckList/AmberOHearn/AmberOHearn.elm index e58bd4a..930b1a5 100755 --- a/frontend/src/Cuckery/CuckList/AmberOHearn/AmberOHearn.elm +++ b/frontend/src/Cuckery/CuckList/AmberOHearn/AmberOHearn.elm @@ -23,4 +23,4 @@ cuckAmberOHearn = , dodgeNicksDoxasticReason = NoProp } ] - } + } \ No newline at end of file diff --git a/frontend/src/Debate/Arguments/SodiumCVD.elm b/frontend/src/Debate/Arguments/SodiumCVD.elm index b82ee75..3851d28 100755 --- a/frontend/src/Debate/Arguments/SodiumCVD.elm +++ b/frontend/src/Debate/Arguments/SodiumCVD.elm @@ -11,7 +11,7 @@ argumentSodiumCVD = , proofLink = "https://www.umsu.de/trees/#(~6x(Px~1Q~5Rx)),(Ps),(Q)|=(Rs)" , argumentCertainty = 9 - , argumentImage = "sociumcvd" + , argumentImage = "sodiumcvd" , definitionTable = [ { definiendum = "P(x)" , definiens = "(x) consistently raises blood pressure in controlled studies" diff --git a/frontend/src/Debate/Arguments/UnhealthyRedMeat.elm b/frontend/src/Debate/Arguments/UnhealthyRedMeat.elm index 9c9f38b..703f65c 100755 --- a/frontend/src/Debate/Arguments/UnhealthyRedMeat.elm +++ b/frontend/src/Debate/Arguments/UnhealthyRedMeat.elm @@ -24,7 +24,7 @@ argumentUnhealthyRedMeat = , definiens = "a food" } , { definiendum = "m" - , definiens = "unprocessed red meat" + , definiens = "redmeat" } ] , argumentFormalization = diff --git a/frontend/src/Debate/Helpers.elm b/frontend/src/Debate/Helpers.elm index 36f0403..3f4b6db 100755 --- a/frontend/src/Debate/Helpers.elm +++ b/frontend/src/Debate/Helpers.elm @@ -63,7 +63,12 @@ propositionMaker argument = row [] [ column [ E.alignTop, E.alignLeft ] - [ paragraph (paragraphBoldFormat ++ [ F.size 18, E.width <| px 100 ]) + [ paragraph + (paragraphBoldFormat + ++ [ F.size 18 + , E.width <| px 100 + ] + ) [ el [ tooltip "A proposition is a declarative statement that can be evaluated as either true or false, and which serves as the basis for debate." @@ -241,7 +246,7 @@ tableMaker : Argument -> Element msg tableMaker argument = column [ centerX - , E.width <| px 600 + , E.width fill ] ([ wrappedRow (paragraphBoldFormat diff --git a/frontend/src/Debate/Types.elm b/frontend/src/Debate/Types.elm index 9a3f200..9ad74f3 100755 --- a/frontend/src/Debate/Types.elm +++ b/frontend/src/Debate/Types.elm @@ -1,5 +1,7 @@ module Debate.Types exposing (..) +-- ARGUMENTS + type alias Argument = { argumentTitle : String @@ -31,3 +33,24 @@ type alias Definition = { definiendum : String , definiens : String } + + + +-- GIBBERISH + + +type alias GibberishEntry = + { gibberishEntry : List GibDomain + } + + +type alias GibDomain = + { gibberishTerms : List GibTerms + , gibberishDomain : String + } + + +type alias GibTerms = + { term : String + , explanation : String + } diff --git a/frontend/src/Donate/Helpers.elm b/frontend/src/Donate/Helpers.elm index 6037104..7a62a49 100644 --- a/frontend/src/Donate/Helpers.elm +++ b/frontend/src/Donate/Helpers.elm @@ -5,6 +5,13 @@ import Config.Colour exposing (..) import Config.Format exposing (..) import Config.StrengthBar exposing (..) import Config.ToolTip exposing (..) +import Donate.Methods.Cardano exposing (donateCardano) +import Donate.Methods.KoFi exposing (donateKoFi) +import Donate.Methods.LiberaPay exposing (donateLiberaPay) +import Donate.Methods.Merch exposing (donateMerch) +import Donate.Methods.Patreon exposing (donatePatreon) +import Donate.Methods.PayPal exposing (donatePayPal) +import Donate.Methods.YouTube exposing (donateYouTube) import Donate.Types exposing (..) import Effect exposing (Effect) import Element as E exposing (..) @@ -32,6 +39,7 @@ donateMaker donate = fieldSpacer [ feeMaker donate , preferenceMaker donate + , tableMaker donate , proTitleMaker donate , proMaker donate , conTitleMaker donate @@ -243,3 +251,117 @@ getPreferenceTooltip num = _ -> "Preference is out of bounds." + + +donateNames = + [ "Service Fees" + , "Subscriptions" + , "Fast Payments" + , "User Friendly" + , "Anonymous" + , "Reward Tiers" + ] + + +tableMaker : Donate -> Element msg +tableMaker donate = + column + [ centerX + , E.width fill + ] + [ wrappedRow + (paragraphBoldFormat + ++ [ E.alignLeft + , E.width fill + , htmlAttribute <| H.style "position" "relative" + ] + ) + [ E.table + [ spacing 0 + , D.rounded 10 + , D.width 2 + , D.color colourTheme.textDarkGrey + , clip + ] + { data = donate.donateFeatures + , columns = + List.map createColumn + [ { label = "Zero Fees" + , getter = .free + } + , { label = "Subscriptions" + , getter = .subscriptions + } + , { label = "User Friendly" + , getter = .userFriendly + } + , { label = "Anonymous" + , getter = .anonymous + } + , { label = "Rewards" + , getter = .rewardTiers + } + ] + } + ] + ] + + +createColumn : { label : String, getter : Features -> Maybe Bool } -> Column Features msg +createColumn { label, getter } = + { header = + el + [ F.bold + , D.widthEach + { bottom = 1 + , top = 1 + , left = 1 + , right = 1 + } + , D.color colourTheme.textDarkGrey + , padding 8 + , E.width fill + , F.center + ] + (text label) + |> el [ F.color colourTheme.textLightOrange ] + , width = fill + , view = + \feature -> + row + [ F.color colourTheme.textLightOrange + , F.bold + , D.widthEach + { bottom = 1 + , top = 0 + , left = 1 + , right = 1 + } + , D.color colourTheme.textDarkGrey + , padding 8 + , E.height fill + ] + [ row [ centerX ] + [ paragraph [] + [ E.image + [ E.width <| px 30 + , E.height <| px 30 + ] + (featureToString (getter feature)) + ] + ] + ] + } + + +featureToString : Maybe Bool -> { src : String, description : String } +featureToString maybeBool = + case maybeBool of + Just True -> + { src = "donate/checkmark.png", description = "" } + + Just False -> + { src = "donate/ex.png", description = "" } + + Nothing -> + { src = "donate/question.png", description = "" } diff --git a/frontend/src/Donate/Methods/Cardano.elm b/frontend/src/Donate/Methods/Cardano.elm index 03f51d0..212dfbd 100644 --- a/frontend/src/Donate/Methods/Cardano.elm +++ b/frontend/src/Donate/Methods/Cardano.elm @@ -16,7 +16,7 @@ donateCardano = , donateFees = "0.17 ADA" , donatePreference = 6 , donateFeatures = - [ { fees = Just True + [ { free = Just False , subscriptions = Just False , openSource = Just True , fastPayments = Just True diff --git a/frontend/src/Donate/Methods/KoFi.elm b/frontend/src/Donate/Methods/KoFi.elm index af0f95e..d05131b 100644 --- a/frontend/src/Donate/Methods/KoFi.elm +++ b/frontend/src/Donate/Methods/KoFi.elm @@ -16,7 +16,7 @@ donateKoFi = , donateFees = "5%" , donatePreference = 5 , donateFeatures = - [ { fees = Just True + [ { free = Just False , subscriptions = Just True , openSource = Just False , fastPayments = Just False diff --git a/frontend/src/Donate/Methods/LiberaPay.elm b/frontend/src/Donate/Methods/LiberaPay.elm index 9003e7c..466c50a 100644 --- a/frontend/src/Donate/Methods/LiberaPay.elm +++ b/frontend/src/Donate/Methods/LiberaPay.elm @@ -16,13 +16,13 @@ donateLiberaPay = , donateFees = "0%" , donatePreference = 10 , donateFeatures = - [ { fees = Just True + [ { free = Just True , subscriptions = Just True , openSource = Just True , fastPayments = Just False , userFriendly = Just True , anonymous = Just True - , rewardTiers = Just False + , rewardTiers = Just True } ] , donatePros = diff --git a/frontend/src/Donate/Methods/Merch.elm b/frontend/src/Donate/Methods/Merch.elm index 8862a1b..3047c98 100644 --- a/frontend/src/Donate/Methods/Merch.elm +++ b/frontend/src/Donate/Methods/Merch.elm @@ -8,7 +8,7 @@ donateMerch = let name : String name = - "Merch" + "Merchandise" in { donateImage = formatName name , donateLink = "https://streamlabs.com/thenutrivore/merch" @@ -16,7 +16,7 @@ donateMerch = , donateFees = "~60%" , donatePreference = 1 , donateFeatures = - [ { fees = Just True + [ { free = Just False , subscriptions = Just False , openSource = Just False , fastPayments = Just False diff --git a/frontend/src/Donate/Methods/Patreon.elm b/frontend/src/Donate/Methods/Patreon.elm index 23ff874..134a8eb 100644 --- a/frontend/src/Donate/Methods/Patreon.elm +++ b/frontend/src/Donate/Methods/Patreon.elm @@ -16,13 +16,13 @@ donatePatreon = , donateFees = "5%" , donatePreference = 6 , donateFeatures = - [ { fees = Just True + [ { free = Just False , subscriptions = Just True , openSource = Just False , fastPayments = Just False , userFriendly = Just True , anonymous = Just False - , rewardTiers = Just False + , rewardTiers = Just True } ] , donatePros = diff --git a/frontend/src/Donate/Methods/PayPal.elm b/frontend/src/Donate/Methods/PayPal.elm index 2d89a95..761b324 100644 --- a/frontend/src/Donate/Methods/PayPal.elm +++ b/frontend/src/Donate/Methods/PayPal.elm @@ -16,8 +16,8 @@ donatePayPal = , donateFees = "1%" , donatePreference = 8 , donateFeatures = - [ { fees = Just True - , subscriptions = Just False + [ { free = Just False + , subscriptions = Just True , openSource = Just False , fastPayments = Just True , userFriendly = Just True diff --git a/frontend/src/Donate/Methods/Template.elm b/frontend/src/Donate/Methods/Template.elm index 15274e3..4c734bb 100644 --- a/frontend/src/Donate/Methods/Template.elm +++ b/frontend/src/Donate/Methods/Template.elm @@ -16,7 +16,7 @@ donateTemplate = , donateFees = "" , donatePreference = 1 , donateFeatures = - [ { fees = Just True + [ { free = Just True , subscriptions = Just True , openSource = Just True , fastPayments = Just False diff --git a/frontend/src/Donate/Methods/YouTube.elm b/frontend/src/Donate/Methods/YouTube.elm index 2cdc149..a9760e7 100644 --- a/frontend/src/Donate/Methods/YouTube.elm +++ b/frontend/src/Donate/Methods/YouTube.elm @@ -16,12 +16,12 @@ donateYouTube = , donateFees = "45%" , donatePreference = 3 , donateFeatures = - [ { fees = Just True + [ { free = Just False , subscriptions = Just True , openSource = Just False , fastPayments = Just False , userFriendly = Just True - , anonymous = Just True + , anonymous = Just False , rewardTiers = Just True } ] diff --git a/frontend/src/Donate/Types.elm b/frontend/src/Donate/Types.elm index 80a73bb..b885106 100644 --- a/frontend/src/Donate/Types.elm +++ b/frontend/src/Donate/Types.elm @@ -14,7 +14,7 @@ type alias Donate = type alias Features = - { fees : Maybe Bool + { free : Maybe Bool , subscriptions : Maybe Bool , openSource : Maybe Bool , fastPayments : Maybe Bool @@ -27,6 +27,8 @@ type alias Features = type alias Pros = { pro : String } + + type alias Cons = { con : String } diff --git a/frontend/src/Interviews/Episodes/DrShawnBakerPodcast.elm b/frontend/src/Interviews/Episodes/DrShawnBakerPodcast.elm new file mode 100644 index 0000000..493af18 --- /dev/null +++ b/frontend/src/Interviews/Episodes/DrShawnBakerPodcast.elm @@ -0,0 +1,29 @@ +module Interviews.Episodes.DrShawnBakerPodcast exposing (..) + +import Interviews.Types exposing (..) + + +drShawnBakerPodcast : Interview +drShawnBakerPodcast = + let + name : String + name = + "Dr. Shawn Baker Podcast" + in + { interviewName = name + , interviewImage = formatInterviewName name + , interviewSocial = "https://x.com/SBakerMD" + , interviewAppearances = + [ { appearanceTitle = "He, Wants Wildlife To Not Exist So They Don’t Eat Each Other" + , appearanceEpisode = "?" + , appearanceLink = "https://podcast.carnivore.diet/ethical-vegan-logical-he-wants-wildlife-to-not-exist-so-they-dont-eat-each-other-1-hr-waste" + , appearanceExperience = 0 + , appearanceYear = "November 30th, 2023" + , appearanceSubjects = + [ { subject = "Shawn contradicting himself." } + , { subject = "Shawn strawmanning me." } + , { subject = "Shawn just generally being a weak little bitch." } + ] + } + ] + } diff --git a/frontend/src/Interviews/Helpers.elm b/frontend/src/Interviews/Helpers.elm index 38d21ca..9a06d03 100755 --- a/frontend/src/Interviews/Helpers.elm +++ b/frontend/src/Interviews/Helpers.elm @@ -180,10 +180,10 @@ getExperienceTooltip : Int -> String getExperienceTooltip num = case num of 0 -> - "Nightmare. Deliberately malicious." + "Nightmare. Complete fucking cunt." 1 -> - "Toxic. Utter fucking twat(s)." + "Toxic. Deliberately malicious." 2 -> "Hostile. Consistently disruptive." diff --git a/frontend/src/Interviews/Types.elm b/frontend/src/Interviews/Types.elm index 02e1267..669a270 100755 --- a/frontend/src/Interviews/Types.elm +++ b/frontend/src/Interviews/Types.elm @@ -37,6 +37,8 @@ formatInterviewName name = |> String.toLower |> String.replace " " "" |> String.replace "'" "" + |> String.replace "." "" + |> String.replace "-" "" formatInterviewSocial : String -> FormattedInterviewSocial diff --git a/frontend/src/Layouts/Navbar.elm b/frontend/src/Layouts/Navbar.elm index f155f32..b50332b 100755 --- a/frontend/src/Layouts/Navbar.elm +++ b/frontend/src/Layouts/Navbar.elm @@ -124,7 +124,7 @@ view { toContentMsg, model, content } = } , link [ centerX ] { url = localhostUrl ++ pageNames.pageHome - , label = text "Health" + , label = text "Nutrition" } ] ] @@ -198,7 +198,12 @@ footerIcons = , E.width fill , E.height fill , spacing 20 - , paddingEach { top = 40, bottom = 20, left = 20, right = 20 } + , paddingEach + { top = 40 + , bottom = 20 + , left = 20 + , right = 20 + } ] <| List.map diff --git a/frontend/src/Pages/Donate.elm b/frontend/src/Pages/Donate.elm index 5c3e023..0f60c65 100644 --- a/frontend/src/Pages/Donate.elm +++ b/frontend/src/Pages/Donate.elm @@ -11,8 +11,11 @@ import Donate.Methods.Merch exposing (donateMerch) import Donate.Methods.Patreon exposing (donatePatreon) import Donate.Methods.PayPal exposing (donatePayPal) import Donate.Methods.YouTube exposing (donateYouTube) +import Donate.Types exposing (..) import Effect exposing (Effect) -import Element exposing (..) +import Element as E exposing (..) +import Element.Background as B exposing (..) +import Element.Border as D exposing (..) import Element.Font as F import Html.Attributes as H exposing (style) import Layouts @@ -98,15 +101,26 @@ donateContainer = donateList : Element msg donateList = - column - pageList - <| - List.map donateMaker - [ donateLiberaPay - , donatePayPal - , donatePatreon - , donateCardano - , donateKoFi - , donateYouTube - , donateMerch - ] + column pageList + [ paragraph + (paragraphFormat + ++ [ F.size 18 + , alignTop + , E.width <| px 800 + , centerX, F.center + ] + ) + [ text "Any of the below services may be bundled for a $10 discount off each hour. For example, bundling two sessions of Debate Analysis would be $140 total, rather than $80/hr. All services are changed in CAD." ] + , column + pageList + <| + List.map donateMaker + [ donateLiberaPay + , donatePayPal + , donatePatreon + , donateCardano + , donateKoFi + , donateYouTube + , donateMerch + ] + ] diff --git a/frontend/src/Pages/Interviews.elm b/frontend/src/Pages/Interviews.elm index 7ae598c..8a62cba 100755 --- a/frontend/src/Pages/Interviews.elm +++ b/frontend/src/Pages/Interviews.elm @@ -9,6 +9,7 @@ import Element.Border as D import Element.Font as F import Html import Html.Attributes as H exposing (style) +import Interviews.Episodes.DrShawnBakerPodcast exposing (drShawnBakerPodcast) import Interviews.Episodes.FitAndFurious exposing (fitAndFurious) import Interviews.Episodes.FoolproofMastery exposing (foolproofMastery) import Interviews.Episodes.KetogeeksPodcast exposing (ketoGeeksPodcast) @@ -113,4 +114,5 @@ interviewList = , muscleMemoirsPodcast , fitAndFurious , strenuousLifePodcast + , drShawnBakerPodcast ] diff --git a/frontend/static/arguments/coconutoil.png b/frontend/static/arguments/coconutoil.png new file mode 100644 index 0000000..32162f9 Binary files /dev/null and b/frontend/static/arguments/coconutoil.png differ diff --git a/frontend/static/arguments/foodsubstitution.png b/frontend/static/arguments/foodsubstitution.png new file mode 100644 index 0000000..b0e5a89 Binary files /dev/null and b/frontend/static/arguments/foodsubstitution.png differ diff --git a/frontend/static/arguments/healthseeker.png b/frontend/static/arguments/healthseeker.png new file mode 100644 index 0000000..84a4a05 Binary files /dev/null and b/frontend/static/arguments/healthseeker.png differ diff --git a/frontend/static/arguments/oddorderpredators.png b/frontend/static/arguments/oddorderpredators.png new file mode 100644 index 0000000..d94b0a1 Binary files /dev/null and b/frontend/static/arguments/oddorderpredators.png differ diff --git a/frontend/static/arguments/omega6omega3ratio.png b/frontend/static/arguments/omega6omega3ratio.png new file mode 100644 index 0000000..740214f Binary files /dev/null and b/frontend/static/arguments/omega6omega3ratio.png differ diff --git a/frontend/static/arguments/ostroveganism.png b/frontend/static/arguments/ostroveganism.png new file mode 100644 index 0000000..4e63876 Binary files /dev/null and b/frontend/static/arguments/ostroveganism.png differ diff --git a/frontend/static/arguments/plantbasedcvd.png b/frontend/static/arguments/plantbasedcvd.png new file mode 100644 index 0000000..5ec755f Binary files /dev/null and b/frontend/static/arguments/plantbasedcvd.png differ diff --git a/frontend/static/arguments/plantfoods.png b/frontend/static/arguments/plantfoods.png new file mode 100644 index 0000000..5ce5f43 Binary files /dev/null and b/frontend/static/arguments/plantfoods.png differ diff --git a/frontend/static/arguments/pollinationreductio.png b/frontend/static/arguments/pollinationreductio.png new file mode 100644 index 0000000..16de505 Binary files /dev/null and b/frontend/static/arguments/pollinationreductio.png differ diff --git a/frontend/static/arguments/polyphenolreductio.png b/frontend/static/arguments/polyphenolreductio.png new file mode 100644 index 0000000..d1b3b82 Binary files /dev/null and b/frontend/static/arguments/polyphenolreductio.png differ diff --git a/frontend/static/arguments/processedmeat.png b/frontend/static/arguments/processedmeat.png new file mode 100644 index 0000000..29ac296 Binary files /dev/null and b/frontend/static/arguments/processedmeat.png differ diff --git a/frontend/static/arguments/redmeat.png b/frontend/static/arguments/redmeat.png new file mode 100644 index 0000000..f40b91d Binary files /dev/null and b/frontend/static/arguments/redmeat.png differ diff --git a/frontend/static/arguments/saturatedfat.png b/frontend/static/arguments/saturatedfat.png new file mode 100644 index 0000000..5f38ada Binary files /dev/null and b/frontend/static/arguments/saturatedfat.png differ diff --git a/frontend/static/arguments/seedoils.png b/frontend/static/arguments/seedoils.png new file mode 100644 index 0000000..4245e01 Binary files /dev/null and b/frontend/static/arguments/seedoils.png differ diff --git a/frontend/static/arguments/sodiumcvd.png b/frontend/static/arguments/sodiumcvd.png new file mode 100644 index 0000000..4a11ba9 Binary files /dev/null and b/frontend/static/arguments/sodiumcvd.png differ diff --git a/frontend/static/arguments/soyproducts.png b/frontend/static/arguments/soyproducts.png new file mode 100644 index 0000000..fac799e Binary files /dev/null and b/frontend/static/arguments/soyproducts.png differ diff --git a/frontend/static/arguments/tattooscratchers.png b/frontend/static/arguments/tattooscratchers.png new file mode 100644 index 0000000..b4e7f8e Binary files /dev/null and b/frontend/static/arguments/tattooscratchers.png differ diff --git a/frontend/static/arguments/tmaocausality.png b/frontend/static/arguments/tmaocausality.png new file mode 100644 index 0000000..e5d1063 Binary files /dev/null and b/frontend/static/arguments/tmaocausality.png differ diff --git a/frontend/static/arguments/transpeople.png b/frontend/static/arguments/transpeople.png new file mode 100644 index 0000000..a91e98d Binary files /dev/null and b/frontend/static/arguments/transpeople.png differ diff --git a/frontend/static/arguments/truncatedmetas.png b/frontend/static/arguments/truncatedmetas.png new file mode 100644 index 0000000..6a2cf7d Binary files /dev/null and b/frontend/static/arguments/truncatedmetas.png differ diff --git a/frontend/static/arguments/vegansociety.png b/frontend/static/arguments/vegansociety.png new file mode 100644 index 0000000..e68a517 Binary files /dev/null and b/frontend/static/arguments/vegansociety.png differ diff --git a/frontend/static/cucks/ninateicholz/ninateicholz.png b/frontend/static/cucks/ninateicholz/ninateicholz.png old mode 100755 new mode 100644 index 2e182f1..84fe876 Binary files a/frontend/static/cucks/ninateicholz/ninateicholz.png and b/frontend/static/cucks/ninateicholz/ninateicholz.png differ diff --git a/frontend/static/cucks/ninateicholz/ninateicholz1.png b/frontend/static/cucks/ninateicholz/ninateicholz1.png new file mode 100755 index 0000000..2e182f1 Binary files /dev/null and b/frontend/static/cucks/ninateicholz/ninateicholz1.png differ diff --git a/frontend/static/donate/checkmark.png b/frontend/static/donate/checkmark.png new file mode 100644 index 0000000..0d365d1 Binary files /dev/null and b/frontend/static/donate/checkmark.png differ diff --git a/frontend/static/donate/ex.png b/frontend/static/donate/ex.png new file mode 100644 index 0000000..6b58b9b Binary files /dev/null and b/frontend/static/donate/ex.png differ diff --git a/frontend/static/donate/merch.png b/frontend/static/donate/merchandise.png similarity index 100% rename from frontend/static/donate/merch.png rename to frontend/static/donate/merchandise.png diff --git a/frontend/static/donate/question.png b/frontend/static/donate/question.png new file mode 100644 index 0000000..820d581 Binary files /dev/null and b/frontend/static/donate/question.png differ diff --git a/frontend/static/interviews/drshawnbakerpodcast.png b/frontend/static/interviews/drshawnbakerpodcast.png new file mode 100644 index 0000000..f0ff674 Binary files /dev/null and b/frontend/static/interviews/drshawnbakerpodcast.png differ