feat: worked on some stuff

This commit is contained in:
Nick 2024-12-06 22:03:24 -06:00
parent d8ac47c5ee
commit cfbab179e2
48 changed files with 45 additions and 47 deletions

View file

@ -35,7 +35,7 @@ page shared route =
toLayout : Model -> Layouts.Layout Msg
toLayout model =
Layouts.Navbar { currentRoute = contactName }
Layouts.Navbar { }
@ -104,25 +104,25 @@ contactList device =
List.concat
(case ( device.class, device.orientation ) of
( Phone, Portrait ) ->
[ [] ]
[ [ instructionMaker ] ]
( Phone, Landscape ) ->
[ [instructionMaker] ]
[ [ instructionMaker ] ]
( Tablet, Portrait ) ->
[ [instructionMaker] ]
[ [ instructionMaker ] ]
( Tablet, Landscape ) ->
[ [instructionMaker] ]
[ [ instructionMaker ] ]
( Desktop, Portrait ) ->
[ [instructionMaker] ]
[ [ instructionMaker ] ]
( Desktop, Landscape ) ->
[ [instructionMaker] ]
[ [ instructionMaker ] ]
( BigDesktop, Portrait ) ->
[ [instructionMaker] ]
[ [ instructionMaker ] ]
( BigDesktop, Landscape ) ->
[ [ instructionMaker ] ]