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'; ---