feat: refactored a shit ton of stuff

This commit is contained in:
Nick 2024-12-09 22:08:35 -06:00
parent 08f5d8e198
commit aa6413e78d
20 changed files with 88 additions and 156 deletions

View file

@ -1,18 +1,20 @@
module Pages.Hyperblog exposing (Model, Msg, page)
import Config.Data.Identity exposing (pageNames)
import Config.Format.CardFormat as C exposing (underConstructionMaker)
import Config.Format.Response
exposing
( pageList
, topLevelContainer
)
import Config.Helpers.Viewport exposing (resetViewport)
import Config.Pages.HyperBlog.Helpers exposing (..)
import Config.Style.Colour as T exposing (..)
import Effect exposing (Effect)
import Element as E exposing (..)
import Config.Pages.Headers.Helpers exposing (headerMaker)
import Config.Pages.Headers.Pages.NutriDex exposing (nutriDexHeader)
import Config.Pages.HyperBlog.Helpers exposing (..)
import Config.Style.Colour as T exposing (..)
import Config.Style.Svgs exposing (construction)
import Effect exposing (Effect)
import Element as E exposing (..)
import Layouts
import Page exposing (Page)
import Route exposing (Route)
@ -102,5 +104,5 @@ hyperBlogList device =
List.concat
(case ( device.class, device.orientation ) of
_ ->
[ [ underConstructionMaker ] ]
[ [ C.underConstructionMaker (String.toUpper pageNames.pageHyperBlog) ] ]
)