diff --git a/intro/part1/Main.elm b/intro/part1/Main.elm
index 4ea0e6d..d7fd49b 100644
--- a/intro/part1/Main.elm
+++ b/intro/part1/Main.elm
@@ -5,25 +5,11 @@ import Html.Attributes exposing (..)
banner =
- {- 👉 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 2: the
below is an element with text.
- -}
div [ class "banner" ]
[ div [ class "container" ]
- [ text "👉 TODO: Put the
here instead of this text, then add the
right after the
" ]
+ [ h1 [ class "logo-font" ] [ text "conduit" ]
+ , p [] [ text "A place to share your knowledge." ]
+ ]
]
@@ -33,7 +19,7 @@ feed =
main =
div [ class "home-page" ]
- [ div [] [ text "👉 TODO: Replace this
with the banner" ]
+ [ banner
, div [ class "container page" ]
[ div [ class "row" ]
[ div [ class "col-md-9" ] [ feed ]