From bbb524ea9286a4b4f8f9013b333a3aebc9515362 Mon Sep 17 00:00:00 2001 From: Morten Olsen Date: Wed, 3 Dec 2025 08:51:44 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20100=20on=20lighthouse=20=F0=9F=A5=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/page/Header.astro | 20 ++++++++++---------- src/components/page/Html.astro | 19 +++++++++++++++++++ src/pages/about.astro | 12 ++++++++++-- src/pages/index.astro | 1 + src/pages/posts/[id]/index.astro | 3 ++- 5 files changed, 42 insertions(+), 13 deletions(-) diff --git a/src/components/page/Header.astro b/src/components/page/Header.astro index c9dffff..1a45785 100644 --- a/src/components/page/Header.astro +++ b/src/components/page/Header.astro @@ -1,36 +1,35 @@ --- import { Picture } from "astro:assets"; import { data } from "~/data/data"; -import { positionWithTeam } from "~/utils/utils.format"; const currentPath = Astro.url.pathname; const { Content, ...profile } = data.profile; const currentExperience = await data.experiences.getCurrent() const links = { '/': 'Posts', - '/about': 'About', + '/about/': 'About', } ---
-
+ -
- +