feat: added contacts

This commit is contained in:
Nick 2024-12-03 04:59:27 -06:00
parent 9a4c92d0cf
commit 8b0c2b632e
27 changed files with 3899 additions and 279 deletions

View file

@ -3,9 +3,15 @@ module Pages.Contact exposing (Model, Msg, page)
import Config.Colour as T exposing (..)
import Config.Format as O exposing (..)
import Config.Identity as I exposing (..)
import Config.Viewport exposing (..)
import Contact.Helpers exposing (..)
import Contact.Methods.Discord exposing (contactDiscord)
import Contact.Methods.Email exposing (contactEmail)
import Effect exposing (Effect)
import Element exposing (..)
import Element.Font as F
import Headers.Helpers exposing (..)
import Headers.Pages.Contact exposing (contactHeader)
import Html
import Html.Attributes as H exposing (style)
import Layouts
@ -42,7 +48,9 @@ type alias Model =
init : () -> ( Model, Effect Msg )
init () =
( {}
, Effect.none
, Effect.map
(\_ -> NoOp)
(Effect.sendCmd resetViewport)
)
@ -91,13 +99,7 @@ contactContainer =
contactList : Element msg
contactList =
none
-- column
-- pageList
-- <|
-- List.map contactMaker
-- [
-- ]
column pageList <|
List.concat
[ [ instructionMaker ]
]