summaryrefslogtreecommitdiff
path: root/www/src/components/BlogPostPreview.astro
diff options
context:
space:
mode:
Diffstat (limited to 'www/src/components/BlogPostPreview.astro')
-rw-r--r--www/src/components/BlogPostPreview.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/src/components/BlogPostPreview.astro b/www/src/components/BlogPostPreview.astro
index 235ca6371..fc99d877a 100644
--- a/www/src/components/BlogPostPreview.astro
+++ b/www/src/components/BlogPostPreview.astro
@@ -11,7 +11,7 @@ const { title, publishDate, href } = Astro.props;
---
<article class="post-preview">
<header>
- <h3 class="publish-date">{publishDate}</h3>
+ <p class="publish-date">{publishDate}</p>
<a href={href}><h1 class="title">{title}</h1></a>
</header>
<main>