summaryrefslogtreecommitdiff
path: root/src/components/PostHeader.astro
diff options
context:
space:
mode:
authorIwanIDev <iwan@iwani.dev>2026-03-22 13:34:54 +0000
committerIwanIDev <iwan@iwani.dev>2026-03-22 13:34:54 +0000
commit45720f99bbb05939e521d692cc5119c174af78c9 (patch)
tree8da6487decb40886fd77b7ca07fb734eccff5163 /src/components/PostHeader.astro
parentece957eb3d306e10914839ab8a6794447c17fc29 (diff)
feat: add date formatting for publish dates in BlogPosts and PostHeader components
Diffstat (limited to 'src/components/PostHeader.astro')
-rw-r--r--src/components/PostHeader.astro8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/PostHeader.astro b/src/components/PostHeader.astro
index 1845ec1..cea0965 100644
--- a/src/components/PostHeader.astro
+++ b/src/components/PostHeader.astro
@@ -12,13 +12,19 @@ interface Props {
}
const { title, slug, description, author, publishDate } = Astro.props as Props;
+
+const dateFormatter = new Intl.DateTimeFormat('en-GB', {
+ day: '2-digit',
+ month: 'long',
+ year: 'numeric',
+});
---
<Card className="w-full">
<CardHeader>
<div class="flex flex-wrap gap-2">
<Badge variant="secondary">{author}</Badge>
- <Badge variant="outline">{publishDate.toLocaleDateString()}</Badge>
+ <Badge variant="outline">{dateFormatter.format(publishDate)}</Badge>
</div>
<h1 class="font-heading text-xl font-medium md:text-2xl" transition:name={`post-title-${slug}`}>{title}</h1>
<CardDescription>{description}</CardDescription>