rm -rf intro

This commit is contained in:
Richard Feldman
2018-08-05 05:06:51 -04:00
parent 7b12aa570f
commit 35c3b048d3
3419 changed files with 1 additions and 480671 deletions

View File

@@ -1,18 +0,0 @@
module Page.NotFound exposing (view)
import Data.Session exposing (Session)
import Html exposing (Html, div, h1, img, main_, text)
import Html.Attributes exposing (alt, class, id, src, tabindex)
import Views.Assets as Assets
-- VIEW --
view : Session -> Html msg
view session =
main_ [ id "content", class "container", tabindex -1 ]
[ h1 [] [ text "Not Found" ]
, div [ class "row" ]
[ img [ Assets.src Assets.error, alt "giant laser walrus wreaking havoc" ] [] ]
]