From 2a2bf03fad07514fb74dd08c8f000a1f7226e3d2 Mon Sep 17 00:00:00 2001 From: sammy-ette Date: Sun, 22 Jun 2025 18:58:59 -0400 Subject: [PATCH] fix: logo route --- website/src/util.gleam | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/website/src/util.gleam b/website/src/util.gleam index 1303bb96..a703eca1 100644 --- a/website/src/util.gleam +++ b/website/src/util.gleam @@ -81,7 +81,10 @@ pub fn nav() -> element.Element(a) { html.div([attribute.class("flex my-auto px-2")], [ html.div([], [ html.a( - [attribute.href("/"), attribute.class("flex items-center gap-1")], + [ + attribute.href(conf.base_url_join("/")), + attribute.class("flex items-center gap-1"), + ], [ html.img([ attribute.src(conf.base_url_join("/hilbish-flower.png")),