feat: fixed receipts

This commit is contained in:
Nick 2024-12-19 04:32:43 -06:00
parent 10e73d403d
commit 803f08b9f7
6 changed files with 14 additions and 8 deletions

View file

@ -43,7 +43,7 @@ servicesNixBuilds =
{ paragraph1 = [ text "NixOS has become popular in my community, with many people choosing to explore it over Windows, MacOS, and other Linux distributions. Naturally, as a consequence of this, I receive numerous requests for help regarding the Nix programming language and NixOS system configuration. So, to fast-track newcomers and to make my life a little bit easier for both of us, I'm offering to build custom NixOS configurations for interested clients." ] { paragraph1 = [ text "NixOS has become popular in my community, with many people choosing to explore it over Windows, MacOS, and other Linux distributions. Naturally, as a consequence of this, I receive numerous requests for help regarding the Nix programming language and NixOS system configuration. So, to fast-track newcomers and to make my life a little bit easier for both of us, I'm offering to build custom NixOS configurations for interested clients." ]
, paragraph2 = [ text "Below is an example of a nix flake that I wrote. In this case, it's the flake that was used to build the development shell for the production of this very website." ] , paragraph2 = [ text "Below is an example of a nix flake that I wrote. In this case, it's the flake that was used to build the development shell for the production of this very website." ]
, paragraph3 = , paragraph3 =
[ text "The source code for this website is viewable on " [ text "The source code for this website's server is viewable on "
, newTabLink [] , newTabLink []
{ url = "https://gitlab.com/upRootNutrition/dotfiles" { url = "https://gitlab.com/upRootNutrition/dotfiles"
, label = , label =

View file

@ -61,5 +61,5 @@ hoverPageButtonDeepDarkOrange : Attribute msg
hoverPageButtonDeepDarkOrange = hoverPageButtonDeepDarkOrange =
mouseOver mouseOver
[ B.color colourTheme.textDeepDarkOrange [ B.color colourTheme.textDeepDarkOrange
, F.color colourTheme.textDarkGrey , F.color colourTheme.textLightOrange
] ]

View file

@ -418,7 +418,7 @@ circumstance cuck dodge =
text "Chose to gesture vaguely instead of engaging" text "Chose to gesture vaguely instead of engaging"
, el [ F.color colourTheme.textLightGrey ] <| , el [ F.color colourTheme.textLightGrey ] <|
text "." text "."
, receipts cuck dodge -- , receipts cuck dodge
] ]

View file

@ -16,6 +16,7 @@ import Config.Helpers.CardFormat
, mobileImageSize , mobileImageSize
, topLevelBox , topLevelBox
) )
import Config.Helpers.Converters exposing (toTitleCase)
import Config.Helpers.Format import Config.Helpers.Format
exposing exposing
( paragraphFontSize ( paragraphFontSize
@ -36,7 +37,6 @@ import Config.Helpers.StrengthBar
import Config.Helpers.ToolTip exposing (tooltip) import Config.Helpers.ToolTip exposing (tooltip)
import Config.Helpers.Viewport exposing (resetViewport) import Config.Helpers.Viewport exposing (resetViewport)
import Config.Pages.Debate.Arguments.Types exposing (..) import Config.Pages.Debate.Arguments.Types exposing (..)
import Config.Helpers.Converters exposing (toTitleCase)
import Config.Pages.Debate.Gibberish.List exposing (gibberishList) import Config.Pages.Debate.Gibberish.List exposing (gibberishList)
import Config.Pages.Debate.Gibberish.Records.Epistemology exposing (epistemologyGibberish) import Config.Pages.Debate.Gibberish.Records.Epistemology exposing (epistemologyGibberish)
import Config.Pages.Debate.Gibberish.Records.Metaphysics exposing (metaphysicsGibberish) import Config.Pages.Debate.Gibberish.Records.Metaphysics exposing (metaphysicsGibberish)
@ -318,8 +318,8 @@ makeTerms bar index terms =
[] []
[ el [ F.color colourTheme.textLightOrange ] <| [ el [ F.color colourTheme.textLightOrange ] <|
text <| text <|
String.toLower "\"" "\""
++ terms.term ++ String.toLower terms.term
++ "\"" ++ "\""
] ]
, bar terms , bar terms

View file

@ -42,11 +42,14 @@ import Config.Helpers.Viewport exposing (resetViewport)
import Config.Pages.Products.Records.NutriDex exposing (productNutriDex) import Config.Pages.Products.Records.NutriDex exposing (productNutriDex)
import Config.Pages.Products.Types exposing (..) import Config.Pages.Products.Types exposing (..)
import Config.Style.Colour exposing (colourTheme) import Config.Style.Colour exposing (colourTheme)
import Config.Style.Glow exposing (glowDeepDarkGrey)
import Config.Style.Icons.Icons exposing (nutriDexLogo) import Config.Style.Icons.Icons exposing (nutriDexLogo)
import Config.Style.Transitions import Config.Style.Transitions
exposing exposing
( hoverFontDarkOrange ( hoverFontDarkOrange
, hoverPageButtonDeepDarkOrange
, transitionStyleFast , transitionStyleFast
, transitionStyleMedium
) )
import Effect exposing (Effect) import Effect exposing (Effect)
import Element as E exposing (..) import Element as E exposing (..)
@ -214,7 +217,7 @@ makeFeature features =
price : Element msg price : Element msg
price = price =
newTabLink [] newTabLink []
{ url = "https://the-nutrivore.myshopify.com/cart/31192710807615:1?channel=buy_button" { url = "https://uprootnutrition.myshopify.com/cart/31192710807615:1?channel=buy_button"
, label = , label =
row row
[ F.center [ F.center
@ -289,8 +292,9 @@ featureList nutridex device =
] ]
, row , row
[ D.width 5 [ D.width 5
, D.rounded 25 , D.rounded 30
, centerX , centerX
, glowDeepDarkGrey
, D.color colourTheme.backgroundLightGrey , D.color colourTheme.backgroundLightGrey
, B.color colourTheme.backgroundLightGrey , B.color colourTheme.backgroundLightGrey
] ]
@ -299,6 +303,7 @@ featureList nutridex device =
, D.rounded 30 , D.rounded 30
, F.size 25 , F.size 25
, F.bold , F.bold
, hoverPageButtonDeepDarkOrange
, paddingEach , paddingEach
{ top = 10 { top = 10
, right = 25 , right = 25

View file

@ -133,6 +133,7 @@ serviceMaker =
bodyFormat bodyFormat
[ chunkMaker servicesNixBuilds.serviceArticle.articleParagraph.paragraph1 [ chunkMaker servicesNixBuilds.serviceArticle.articleParagraph.paragraph1
, chunkMaker servicesNixBuilds.serviceArticle.articleParagraph.paragraph2 , chunkMaker servicesNixBuilds.serviceArticle.articleParagraph.paragraph2
, chunkMaker servicesNixBuilds.serviceArticle.articleParagraph.paragraph3
, titleMaker servicesNixBuilds.serviceArticle.articleTitles.title1 , titleMaker servicesNixBuilds.serviceArticle.articleTitles.title1
, numberMaker servicesNixBuilds.serviceArticle.articleListEntries.list1 , numberMaker servicesNixBuilds.serviceArticle.articleListEntries.list1
, titleMaker servicesNixBuilds.serviceArticle.articleTitles.title2 , titleMaker servicesNixBuilds.serviceArticle.articleTitles.title2