website/frontend/src/Config/Pages/Home/Helpers.elm
2024-12-09 19:53:09 -06:00

87 lines
2.3 KiB
Elm
Executable file

module Config.Pages.Home.Helpers exposing (..)
import Config.Data.Identity exposing (pageNames)
import Config.Format.Format
exposing
( paragraphFontSize
, paragraphSpacing
)
import Config.Format.Response exposing (topLevelContainer)
import Config.Helpers.Viewport exposing (resetViewport)
import Config.Pages.HyperBlog.Helpers exposing (..)
import Config.Style.Colour exposing (colourTheme)
import Config.Style.Glow exposing (glowDeepDarkGrey)
import Config.Style.Svgs
exposing
( upRootLarge
, upRootMedium
, upRootSmall
)
import Element as E exposing (..)
import Element.Background as B
import Element.Border as D
import Element.Font as F
import Html exposing (Html)
import Html.Attributes as H
homePage : Html msg -> Element msg
homePage image =
column
[ centerX
, centerY
, spacing 20
]
[ row [ centerX, E.width fill, height <| px 100 ]
[ html image
]
, column
[ paddingEach
{ top = 15
, bottom = 15
, left = 20
, right = 20
}
, glowDeepDarkGrey
, B.color colourTheme.backgroundDarkGrey
, D.rounded 10
, E.width fill
, spacing 8
]
[ paragraph
([ F.color colourTheme.textLightGrey
, paragraphSpacing
, paragraphFontSize
]
++ [ centerX ]
)
[ text "upRootNutrition is an open source project, created by Nick Hiebert, designed to elevate the quality of nutrition science communication in online discourse. By applying more rigorous systems of reasoning, such as formal logic, upRootNutrition aims to cut through the misinformation and sophistry that are endemic on social media." ]
]
]
desktopHomePageImage : Html msg
desktopHomePageImage =
upRootLarge
mobileLargeHomePageImage : Html msg
mobileLargeHomePageImage =
upRootMedium
mobileSmallHomePageImage : Html msg
mobileSmallHomePageImage =
upRootSmall
desktopHomePage =
homePage desktopHomePageImage
mobileLargeHomePage =
homePage mobileLargeHomePageImage
mobileSmallHomePage =
homePage mobileSmallHomePageImage