mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: init
This commit is contained in:
parent
7145b8a9fa
commit
718a9ecaa7
11 changed files with 320 additions and 207 deletions
31
frontend/src/Pages/Dodgers.elm
Normal file
31
frontend/src/Pages/Dodgers.elm
Normal 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 = []
|
Loading…
Add table
Add a link
Reference in a new issue