feat: v1 finally done?

This commit is contained in:
Nick 2025-01-02 02:33:57 -06:00
parent 9f8d9c3146
commit 07b9330264
245 changed files with 3140 additions and 2197 deletions

View file

@ -0,0 +1,34 @@
module Config.Pages.Contact.Records exposing (..)
import Config.Pages.Contact.Types exposing (Contact)
import Route.Path as Path
contactInquiry : Contact
contactInquiry =
{ contactName = "General Inquiries"
, contactImage = "email"
, contactDescription = "To submit any inquiries, including service purchases, general questions, guest appearances, webinars, public speaking, please reach out via email by clicking here. You may also submit Discord ban appeals here if you wish. To submit any criticism of the content on this site, follow the Criticism link below."
, contactLink = Path.toString Path.Contact_Inquiry
, isNewTabLink = False
}
contactCriticism : Contact
contactCriticism =
{ contactName = "Criticism"
, contactImage = "discord"
, contactDescription = "To submit critiques of my arguments, reasoning, blog articles, video content, or public statements, please follow this link and adhere to the instructions precisely. Before pursuing any criticism, consider that misuse of this option may result in an immediate Discord ban with no opportunity for appeal."
, contactLink = Path.toString Path.Contact_Criticism
, isNewTabLink = False
}
contactMain : Contact
contactMain =
{ contactName = "Contact"
, contactImage = ""
, contactDescription = ""
, contactLink = ""
, isNewTabLink = True
}