From a58308933b0e3c1c85c5c282678f560842139d3e Mon Sep 17 00:00:00 2001 From: theamazing0 Date: Mon, 28 Jul 2025 20:38:33 -0400 Subject: [PATCH] removed feedicon from NavItem --- src/components/NavItem.astro | 9 +-------- src/layouts/BaseLayout.astro | 1 + 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/components/NavItem.astro b/src/components/NavItem.astro index 288b2aa..d3b5659 100644 --- a/src/components/NavItem.astro +++ b/src/components/NavItem.astro @@ -3,10 +3,9 @@ interface Props { text?: string; href: string; newtab?: boolean; - feedicon?: boolean; } -const { href, text = "", newtab = false, feedicon = false } = Astro.props; +const { href, text = "", newtab = false } = Astro.props; --- { @@ -25,7 +24,6 @@ const { href, text = "", newtab = false, feedicon = false } = Astro.props; diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 6db86a4..a5d6eb8 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -115,4 +115,5 @@ import interWoff2 from "@fontsource-variable/inter/files/inter-latin-wght-normal } +