feat: hyperblog under construction

This commit is contained in:
Nick 2024-12-08 21:35:48 -06:00
parent 7ea90e4132
commit 41ce051aa4
3 changed files with 93 additions and 11 deletions

View file

@ -1,5 +1,57 @@
module Blog.Helpers exposing (..)
import Config.CardFormat exposing (..)
import Config.Colour exposing (..)
import Config.Format exposing (..)
import Config.Identity exposing (..)
import Config.Style.Svgs exposing (..)
import Debate.Arguments.Helpers exposing (..)
import Debate.Cuckery.Helpers exposing (..)
import Debate.Debate.Types exposing (..)
import Debate.Gibberish.Helpers exposing (..)
import Effect exposing (Effect)
import Element as E exposing (..)
import Element.Background as B exposing (..)
import Element.Border as D
import Element.Font as F
import Html exposing (Html)
import Html.Attributes as H exposing (style)
import Layouts
import Page exposing (Page)
import Route exposing (Route)
import Shared
import View exposing (View)
hahaha =
[]
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"
]
]
]
]
]
]
]
]
]