You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hideout-frontend/src/Views/About.elm
+25-2Lines changed: 25 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,8 @@ import Common.Urls exposing
31
31
importElementexposing ( Element )
32
32
importElement.FontasFont
33
33
importElement.InputasInput
34
+
importHtml
35
+
importHtml.Attributes
34
36
importList
35
37
importList.ExtraasList
36
38
importSetexposing ( Set )
@@ -109,7 +111,7 @@ type Msg
109
111
110
112
111
113
init:Model
112
-
init ={ sectionToShow =None}
114
+
init ={ sectionToShow =What_Is_Hideout}
113
115
114
116
115
117
update:Msg->Model->Model
@@ -163,7 +165,28 @@ what_is_hideout : Model -> Element Msg
163
165
what_is_hideout model =
164
166
let
165
167
body =Body<|
166
-
plainPara "Hideout is a self-hosted service that makes private, persistent chat rooms possible. It requires no installation or account creation. Unlike disposable chat, a Hideout room preserves privacy without expiring."
168
+
Element.column
169
+
[]
170
+
[ plainPara "Hideout is a self-hosted service that makes private, persistent chat rooms possible. It requires no installation or account creation. Unlike disposable chat, a Hideout room preserves privacy without expiring."
171
+
,Element.paragraph
172
+
[Element.paddingEach { top =20, bottom =0, left =0, right =0}]
0 commit comments