diff --git a/public/assets/logo_home.png b/public/assets/logo_home.png new file mode 100644 index 0000000..c263be4 Binary files /dev/null and b/public/assets/logo_home.png differ diff --git a/src/elm/Routes/Home.elm b/src/elm/Routes/Home.elm index 9e7d3e1..85d2640 100644 --- a/src/elm/Routes/Home.elm +++ b/src/elm/Routes/Home.elm @@ -1,5 +1,6 @@ module Routes.Home exposing (..) +import Components.GrayButton exposing (..) import Html exposing (..) import Html.Attributes exposing (..) import Html.Events exposing (..) @@ -8,4 +9,11 @@ import Types exposing (..) home : Model -> Html Msg home model = - div [ class "home" ] [ a [ href "#about-you" ] [ text "CONTRACTORS" ] ] + -- section [ class "bg-white w-40-ns w-90 h-auto tc center pv5 shadow-1 br3 " ] + section [ class "bg-light-blue h-100 m0-auto cover flex content-center items-center" ] + [ article [ class "bg-white w-40-l w-60-m w-90 center h-auto tc center br3 pt5 pb4 shadow-1" ] + [ img [ src "./assets/logo_home.png", class "h4 tc center" ] [] + , p [ class "mid-gray lh-copy w-50-ns w-80 tc center fw3 pv3" ] [ text "So easy, you can interview for jobs in your sleep." ] + , grayButton ( "Let's start!", "about-you" ) + ] + ] diff --git a/src/elm/State.elm b/src/elm/State.elm index 9b28e05..7878e2b 100644 --- a/src/elm/State.elm +++ b/src/elm/State.elm @@ -11,7 +11,7 @@ import Types exposing (..) initModel : Model initModel = - { route = AboutYou + { route = Home , videoStage = StagePreRecord , videoMessage = "" , messageLength = 0