feat: added contacts

This commit is contained in:
Nick 2024-12-03 04:59:27 -06:00
parent 9a4c92d0cf
commit 8b0c2b632e
27 changed files with 3899 additions and 279 deletions

View file

@ -84,6 +84,8 @@ cardImageMaker image =
, D.width 5
, D.color colourTheme.backgroundDarkGrey
, B.color colourTheme.backgroundDarkGrey
, mouseOver [ D.color colourTheme.textDarkOrange]
, htmlAttribute <| style "transition" "all 0.1s ease-in-out"
]
[ E.image
[ alignRight

View file

@ -22,7 +22,7 @@ pageList : List (Attribute msg)
pageList =
[ spacing 30
, centerX
, centerY
, alignTop
, paddingEach { top = 30, bottom = 30, left = 30, right = 30 }
]

View file

@ -10,7 +10,6 @@ type alias PageInput =
, pageHyperBlog : String
, pageInterviews : String
, pageNutriDex : String
, pagePlatforms : String
, pageServices : String
, pageDonate : String
}
@ -20,7 +19,6 @@ pageNames : PageInput
pageNames =
{ pageRoot = "home"
, pageHome = "upRootNutrition"
, pagePlatforms = "platforms"
, pageServices = "services"
, pageDodgers = "cuckList"
, pageDebate = "arguments"
@ -77,11 +75,6 @@ nutriDexName =
createPageName pageNames.pageNutriDex
platformsName : String
platformsName =
createPageName pageNames.pagePlatforms
servicesName : String
servicesName =
createPageName pageNames.pageServices

View file

@ -0,0 +1,14 @@
module Config.Viewport exposing (..)
import Browser.Dom as Dom
import Effect exposing (..)
import Task
type Msg
= NoOp
resetViewport : Cmd Msg
resetViewport =
Task.perform (\_ -> NoOp) (Dom.setViewport 0 0)