feat: init

This commit is contained in:
Nick 2024-11-11 00:43:03 -06:00
parent 7145b8a9fa
commit 718a9ecaa7
11 changed files with 320 additions and 207 deletions

View file

@ -0,0 +1,31 @@
module Pages.Dodgers exposing (page)
import Config.Identity as ID exposing (..)
import Config.Theme as T exposing (..)
import Element exposing (..)
import Element.Background as B
import Element.Font as F
import Element.Region exposing (description)
import View exposing (View)
page : View msg
page =
{ title = servicesName
, attributes = [ F.family [ spartanFont ] ]
, element = dodgersContainer
}
dodgersContainer : Element msg
dodgersContainer = topLevelContainer dodgersList
dodgersList : Element msg
dodgersList =
column
[ spacing 20
, centerX
, centerY
]
dodgers
dodgers = []