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: src/Views/Home.elm
+20-18Lines changed: 20 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -24,34 +24,36 @@ view _ =
24
24
[ h1 [Tw.text_center,Tw.text_9xl, class "horta"][ text "Developer Den"]
25
25
, h2 [Tw.text_center,Tw.font_titillium,Tw.text_2xl,Tw.py_4 ][ text "A closely-knit community anchored in a common passion for programming."]
26
26
, div [Tw.py_7 ]
27
-
[ a [ href discordURL,Tw.bg_indigo_500,Tw.text_2xl,Tw.p_5,Tw.rounded_2xl,Tw.shadow_md,Tw.hover__bg_indigo_600,Tw.ease_in_out,Tw.duration_300 ]
28
-
[ button [Tw.font_titillium,Tw.font_bold ]
29
-
[ i [Tw.px_1,Tw.pr_3, class "fab fa-discord"][]
30
-
, text "Interested? Join our Discord!"]
31
-
]
32
-
]
27
+
[ a [ href discordURL,Tw.bg_indigo_500,Tw.text_2xl,Tw.p_5,Tw.rounded_2xl,Tw.shadow_md,Tw.hover__bg_indigo_600,Tw.ease_in_out,Tw.duration_300 ]
28
+
[ button [Tw.font_titillium,Tw.font_bold ]
29
+
[ i [Tw.px_1,Tw.pr_3, class "fab fa-discord"][]
30
+
, text "Interested? Join our Discord!"
31
+
]
32
+
]
33
+
]
33
34
, div [Tw.inline_flex,Tw.flex_row,Tw.ml_5,Tw.mt_5 ]
34
-
[ projectOf []"web frontend""the frontend website that you're viewing now that is written in elm and tailwind css""https://github.com/TheDeveloperDen/devden-web-frontend"
35
-
, projectOf []"discord bot""the discord bot that manages many aspects of our discord server (ex. xp, leaderboards)""https://github.com/TheDeveloperDen/DevDenBot"
36
-
, projectOf []"learning resources""a repository containing crowd-sourced information on how to learn different languages""https://github.com/TheDeveloperDen/LearningResources"
35
+
[ projectOf []"web frontend""the frontend website that you're viewing now that is written in elm and tailwind css""https://github.com/TheDeveloperDen/devden-web-frontend"
36
+
, projectOf []"discord bot""the discord bot that manages many aspects of our discord server (ex. xp, leaderboards)""https://github.com/TheDeveloperDen/DevDenBot"
37
+
, projectOf []"learning resources""a repository containing crowd-sourced information on how to learn different languages""https://github.com/TheDeveloperDen/LearningResources"
37
38
]
38
39
, div [Tw.absolute,Tw.bottom_5,Tw.right_5,Tw.flex,Tw.flex_row,Tw.space_x_1,Tw.rounded_xl,Tw.py_2,Tw.px_2,Tw.bg_gray_200,Tw.shadow_md ]
39
-
[ a [ href discordURL ][ button (class "hover:bg-indigo-500 hover:text-white":: buttonStyles)[ i [Tw.px_1, class "fab fa-discord"][]]]
40
-
, a [ href githubURL ][ button (class "hover:bg-gray-900 hover:text-white":: buttonStyles)[ i [Tw.px_1, class "fab fa-github"][]]]
41
-
]
40
+
[ a [ href discordURL ][ button (class "hover:bg-indigo-500 hover:text-white":: buttonStyles)[ i [Tw.px_1, class "fab fa-discord"][]]]
41
+
, a [ href githubURL ][ button (class "hover:bg-gray-900 hover:text-white":: buttonStyles)[ i [Tw.px_1, class "fab fa-github"][]]]
0 commit comments