Skip to content

Instantly share code, notes, and snippets.

@librasteve
Created October 3, 2024 01:24
Show Gist options
  • Save librasteve/a04e8efc9a538b61d6beb7af03842be0 to your computer and use it in GitHub Desktop.
Save librasteve/a04e8efc9a538b61d6beb7af03842be0 to your computer and use it in GitHub Desktop.
Page Elm
module HomePage exposing (main)
import Html exposing (..)
import Html.Attributes exposing (..)
view model =
div [ class "jumbotron" ]
[ h1 [] [ text "Welcome to Dunder Mifflin!" ]
, p []
[ text "Dunder Mifflin Inc. (stock symbol "
, strong [] [ text "DMI" ]
, text <|
"""
) is a micro-cap regional paper and office
supply distributor with an emphasis on servicing
small-business clients.
"""
]
]
main =
view "dummy model"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment