feat: push for isaac

This commit is contained in:
Nick 2024-12-05 15:44:50 -06:00
parent 5ada6b4d25
commit e6b3e90698
27 changed files with 377 additions and 4 deletions

View file

@ -81,7 +81,7 @@ subscriptions model =
view : Model -> View Msg
view model =
{ title = homeName
{ title = ""
, attributes = []
, element = homeContainer
}

View file

@ -0,0 +1,69 @@
module Pages.NotFound_ exposing (Model, Msg, page)
import Effect exposing (Effect)
import Html exposing (..)
import Page exposing (Page)
import Route exposing (Route)
import Route.Path
import Shared
import View exposing (View)
page : Shared.Model -> Route () -> Page Model Msg
page shared route =
Page.new
{ init = init
, update = update
, subscriptions = subscriptions
, view = view
}
-- INIT
type alias Model =
{}
init : () -> ( Model, Effect Msg )
init () =
( {}
, Effect.none
)
-- UPDATE
type Msg
= NoOp
update : Msg -> Model -> ( Model, Effect Msg )
update msg model =
case msg of
NoOp ->
( model
, Effect.none
)
-- SUBSCRIPTIONS
subscriptions : Model -> Sub Msg
subscriptions model =
Sub.none
-- VIEW
view : Model -> View Msg
view model =
View.fromString "IT'S NOT HERE YO"