diff --git a/src/components/BlogFeed.astro b/src/components/BlogFeed.astro
index d785524..b6f9d55 100644
--- a/src/components/BlogFeed.astro
+++ b/src/components/BlogFeed.astro
@@ -39,7 +39,7 @@ function sortByPubDateDescending(post1: CollectionEntry<'blog'>, post2: Collecti
const headingElem = `h${headingLevel}`;
-const canonicalUrl = new URL(Astro.url.pathname, Astro.site)
+const canonicalBlogUrl = new URL('blog', Astro.site)
---