diff --git a/intro/part1/Main.elm b/intro/part1/Main.elm
index fff019f..4ea0e6d 100644
--- a/intro/part1/Main.elm
+++ b/intro/part1/Main.elm
@@ -5,22 +5,25 @@ import Html.Attributes exposing (..)
banner =
- {- TODO Add a logo and tagline to this banner, so its structure becomes:
+ {- 👉 TODO: Add a logo and tagline to this banner, so its structure becomes:
+
conduit
+
A place to share your knowledge.
+
- HINT 1: the above is an element with 2 child nodes.
+ 💡 HINT 1: the
above is an element with 2 child nodes.
- HINT 2: the
below is an element with text.
+ 💡 HINT 2: the
below is an element with text.
-}
div [ class "banner" ]
[ div [ class "container" ]
- [ text "TODO: Put a
here instead of this text, then add a
right after the
" ]
+ [ text "👉 TODO: Put the here instead of this text, then add the
right after the
" ]
]
@@ -30,7 +33,7 @@ feed =
main =
div [ class "home-page" ]
- [ p [] [ text "TODO: Replace this
with the banner" ]
+ [ div [] [ text "👉 TODO: Replace this
with the banner" ]
, div [ class "container page" ]
[ div [ class "row" ]
[ div [ class "col-md-9" ] [ feed ]