mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: fixed receipts
This commit is contained in:
parent
10e73d403d
commit
803f08b9f7
6 changed files with 14 additions and 8 deletions
|
@ -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." ]
|
||||
, 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 =
|
||||
[ text "The source code for this website is viewable on "
|
||||
[ text "The source code for this website's server is viewable on "
|
||||
, newTabLink []
|
||||
{ url = "https://gitlab.com/upRootNutrition/dotfiles"
|
||||
, label =
|
||||
|
|
|
@ -61,5 +61,5 @@ hoverPageButtonDeepDarkOrange : Attribute msg
|
|||
hoverPageButtonDeepDarkOrange =
|
||||
mouseOver
|
||||
[ B.color colourTheme.textDeepDarkOrange
|
||||
, F.color colourTheme.textDarkGrey
|
||||
, F.color colourTheme.textLightOrange
|
||||
]
|
||||
|
|
|
@ -418,7 +418,7 @@ circumstance cuck dodge =
|
|||
text "Chose to gesture vaguely instead of engaging"
|
||||
, el [ F.color colourTheme.textLightGrey ] <|
|
||||
text "."
|
||||
, receipts cuck dodge
|
||||
-- , receipts cuck dodge
|
||||
]
|
||||
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ import Config.Helpers.CardFormat
|
|||
, mobileImageSize
|
||||
, topLevelBox
|
||||
)
|
||||
import Config.Helpers.Converters exposing (toTitleCase)
|
||||
import Config.Helpers.Format
|
||||
exposing
|
||||
( paragraphFontSize
|
||||
|
@ -36,7 +37,6 @@ import Config.Helpers.StrengthBar
|
|||
import Config.Helpers.ToolTip exposing (tooltip)
|
||||
import Config.Helpers.Viewport exposing (resetViewport)
|
||||
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.Records.Epistemology exposing (epistemologyGibberish)
|
||||
import Config.Pages.Debate.Gibberish.Records.Metaphysics exposing (metaphysicsGibberish)
|
||||
|
@ -318,8 +318,8 @@ makeTerms bar index terms =
|
|||
[]
|
||||
[ el [ F.color colourTheme.textLightOrange ] <|
|
||||
text <|
|
||||
String.toLower "\""
|
||||
++ terms.term
|
||||
"\""
|
||||
++ String.toLower terms.term
|
||||
++ "\""
|
||||
]
|
||||
, bar terms
|
||||
|
|
|
@ -42,11 +42,14 @@ import Config.Helpers.Viewport exposing (resetViewport)
|
|||
import Config.Pages.Products.Records.NutriDex exposing (productNutriDex)
|
||||
import Config.Pages.Products.Types exposing (..)
|
||||
import Config.Style.Colour exposing (colourTheme)
|
||||
import Config.Style.Glow exposing (glowDeepDarkGrey)
|
||||
import Config.Style.Icons.Icons exposing (nutriDexLogo)
|
||||
import Config.Style.Transitions
|
||||
exposing
|
||||
( hoverFontDarkOrange
|
||||
, hoverPageButtonDeepDarkOrange
|
||||
, transitionStyleFast
|
||||
, transitionStyleMedium
|
||||
)
|
||||
import Effect exposing (Effect)
|
||||
import Element as E exposing (..)
|
||||
|
@ -214,7 +217,7 @@ makeFeature features =
|
|||
price : Element msg
|
||||
price =
|
||||
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 =
|
||||
row
|
||||
[ F.center
|
||||
|
@ -289,8 +292,9 @@ featureList nutridex device =
|
|||
]
|
||||
, row
|
||||
[ D.width 5
|
||||
, D.rounded 25
|
||||
, D.rounded 30
|
||||
, centerX
|
||||
, glowDeepDarkGrey
|
||||
, D.color colourTheme.backgroundLightGrey
|
||||
, B.color colourTheme.backgroundLightGrey
|
||||
]
|
||||
|
@ -299,6 +303,7 @@ featureList nutridex device =
|
|||
, D.rounded 30
|
||||
, F.size 25
|
||||
, F.bold
|
||||
, hoverPageButtonDeepDarkOrange
|
||||
, paddingEach
|
||||
{ top = 10
|
||||
, right = 25
|
||||
|
|
|
@ -133,6 +133,7 @@ serviceMaker =
|
|||
bodyFormat
|
||||
[ chunkMaker servicesNixBuilds.serviceArticle.articleParagraph.paragraph1
|
||||
, chunkMaker servicesNixBuilds.serviceArticle.articleParagraph.paragraph2
|
||||
, chunkMaker servicesNixBuilds.serviceArticle.articleParagraph.paragraph3
|
||||
, titleMaker servicesNixBuilds.serviceArticle.articleTitles.title1
|
||||
, numberMaker servicesNixBuilds.serviceArticle.articleListEntries.list1
|
||||
, titleMaker servicesNixBuilds.serviceArticle.articleTitles.title2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue