From 562ad626dd4f0dd47afe1edca38e44adac9ca759 Mon Sep 17 00:00:00 2001 From: Filip Figiel Date: Tue, 5 Mar 2024 00:58:54 +0100 Subject: feat: use the new v1 logo --- src/tour.gleam | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/tour.gleam b/src/tour.gleam index 64dc758..17386c9 100644 --- a/src/tour.gleam +++ b/src/tour.gleam @@ -539,7 +539,7 @@ fn lesson_html(page: Lesson) -> String { metaprop("twitter:title", title), metaprop("twitter:description", description), metaprop("twitter:image", "https://gleam.run/images/og-image.png"), - link("shortcut icon", "https://gleam.run/images/lucy-circle.svg"), + link("shortcut icon", "https://gleam.run/images/lucy/lucy.svg"), link("stylesheet", "/style.css"), h( "script", @@ -553,7 +553,17 @@ fn lesson_html(page: Lesson) -> String { ]), h("body", [], [ h("nav", [#("class", "navbar")], [ - h("a", [#("href", "/")], [text("Gleam Language Tour")]), + h("a", [#("href", "/"), #("class", "logo")], [ + h( + "img", + [ + #("src", "https://gleam.run/images/lucy/lucy.svg"), + #("alt", "Lucy the star, Gleam's mascot"), + ], + [], + ), + text("Gleam Language Tour"), + ]), ]), h("article", [#("id", "playground")], [ h("section", [#("id", "left")], [ -- cgit v1.2.3