feat: crushed it like I crushed your mom

This commit is contained in:
Nick 2024-11-26 21:17:36 -06:00
parent 7d22f82b12
commit eb17ceb6c2
18 changed files with 19 additions and 30 deletions

20
frontend/src/Pages/Home_.elm Executable file → Normal file
View file

@ -1,18 +1,17 @@
module Pages.Home_ exposing (Model, Msg, page)
import Blog.Helpers exposing (..)
import Config.Colour as T exposing (..)
import Config.Format as O exposing (..)
import Config.Identity as I exposing (..)
import Cuckery.Types exposing (..)
import Effect exposing (Effect)
import Element as E exposing (..)
import Element.Background as D exposing (..)
import Element.Border as R exposing (..)
import Element exposing (..)
import Element.Font as F
import Html.Attributes as H exposing (style)
import Layouts
import Page exposing (Page)
import Route exposing (Route)
import Shared
import Shared exposing (..)
import View exposing (View)
@ -24,12 +23,6 @@ page shared route =
, subscriptions = subscriptions
, view = view
}
|> Page.withLayout toLayout
toLayout : Model -> Layouts.Layout Msg
toLayout model =
Layouts.Navbar {}
@ -79,7 +72,4 @@ subscriptions model =
view : Model -> View Msg
view model =
{ title = pageNames.pageHome
, attributes = []
, element = none
}
View.fromString "Pages.Home_"