feat: added contacts

This commit is contained in:
Nick 2024-12-03 04:59:27 -06:00
parent 9a4c92d0cf
commit 8b0c2b632e
27 changed files with 3899 additions and 279 deletions

View file

@ -15,7 +15,7 @@ import Page exposing (Page)
import Route exposing (Route)
import Shared exposing (..)
import View exposing (View)
import Config.Viewport exposing (..)
page : Shared.Model -> Route () -> Page Model Msg
page shared route =
@ -44,7 +44,9 @@ type alias Model =
init : () -> ( Model, Effect Msg )
init () =
( {}
, Effect.none
, Effect.map
(\_ -> NoOp)
(Effect.sendCmd resetViewport)
)