mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
feat: added and customized AY navbar
This commit is contained in:
parent
0569a063bb
commit
a7000d6302
53 changed files with 2517 additions and 872 deletions
|
@ -1,5 +1,6 @@
|
|||
module Shared.Model exposing (Model)
|
||||
module Shared.Model exposing (Model, User)
|
||||
|
||||
import Config.Data.Language as TyLang
|
||||
import Element exposing (Device)
|
||||
|
||||
|
||||
|
@ -7,4 +8,13 @@ type alias Model =
|
|||
{ height : Int
|
||||
, width : Int
|
||||
, device : Device
|
||||
, language : TyLang.Language
|
||||
, isNavbarExpanded : Bool
|
||||
, user : Maybe User
|
||||
}
|
||||
|
||||
|
||||
type alias User =
|
||||
{ token : String
|
||||
, name : String
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue