From fd5dc46b972b189f47e72cbb52a9103d2038937d Mon Sep 17 00:00:00 2001 From: Eduard Iten Date: Tue, 31 Mar 2026 14:09:19 +0200 Subject: [PATCH] Fixed header link... again --- src/components/Footer.astro | 3 ++- src/components/Header.astro | 21 +++++++++++---------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index d9a9b65..ace4558 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,9 +1,10 @@ --- // src/components/Footer.astro +import { getPath } from '../utils/paths'; + const currentYear = new Date().getFullYear(); const startYear = 2026; const displayYear = currentYear > startYear ? `${startYear}–${currentYear}` : startYear; -import { getPath } from '../utils/paths'; ---