diff --git a/src/components/BlogHeader.astro b/src/components/BlogHeader.astro index ea21b91..b033977 100644 --- a/src/components/BlogHeader.astro +++ b/src/components/BlogHeader.astro @@ -3,7 +3,7 @@ import FormattedDate from '@components/FormattedDate.astro'; interface Props { title: String; - date: String; + date: Date; slug?: String; } diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 74ef1e9..e1373a9 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,5 +1,4 @@ --- -import RSSIcon from './icons/RSS.astro'; const year = new Date().getFullYear(); --- diff --git a/src/components/Header.astro b/src/components/Header.astro index 8224f8e..bebceb5 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -1,7 +1,4 @@ --- -import UserIcon from './icons/UserIcon.astro'; -import WebsiteIcon from './icons/Website.astro'; - const { pathname } = Astro.url; const navLinks = [ @@ -33,7 +30,7 @@ const navLinks = [