Add link to submit your site to showcase.

This commit is contained in:
Dillon Kearns 2020-01-22 00:14:22 -08:00
parent 16a79ce1c3
commit 83ca10e4af

View File

@ -16,7 +16,19 @@ view entries =
Element.column
[ Element.spacing 30
]
(List.map entryView entries)
(submitShowcaseItemButton
:: List.map entryView entries
)
submitShowcaseItemButton =
Element.newTabLink
[ Element.Font.color Palette.color.primary
, Element.Font.underline
]
{ url = "https://airtable.com/shrPSenIW2EQqJ083"
, label = Element.text "Submit your site to the showcase"
}
entryView : Entry -> Element.Element msg