feat: refactored a shit ton of stuff

This commit is contained in:
Nick 2024-12-09 19:53:09 -06:00
parent 68be562bd3
commit fbdfde8680
232 changed files with 2614 additions and 2532 deletions

View file

@ -0,0 +1,42 @@
module Config.Pages.HyperBlog.Helpers exposing (..)
import Config.Format.CardFormat exposing (..)
import Config.Style.Colour exposing (colourTheme)
import Config.Style.Svgs exposing (..)
import Effect exposing (Effect)
import Element as E exposing (..)
import Element.Font as F
underConstructionMaker : Element msg
underConstructionMaker =
row
topLevelBox
[ cardMaker
[ cardTitleMaker "HYPERBLOG"
, cardFormatter
[ cardContentSpacing
[ column
fieldSpacer
[ cardSubTitleMaker
[ column []
[ row
[ spacing 10
]
[ column [ width <| px 35 ] [ html construction ]
, column
[ width fill
, F.color colourTheme.textLightOrange
, F.bold
, alignBottom
]
[ text "under construction"
]
]
]
]
]
]
]
]
]