From 688a35816ed9002a304d71e0a9fa8545323c3e72 Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Fri, 27 Mar 2026 15:56:34 +0000 Subject: feat: add rounded border to blog post card --- src/components/BlogPosts.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/BlogPosts.astro b/src/components/BlogPosts.astro index 5a66a89..48b94f0 100644 --- a/src/components/BlogPosts.astro +++ b/src/components/BlogPosts.astro @@ -22,8 +22,8 @@ const dateFormatter = new Intl.DateTimeFormat('en-GB', {
{sortedPosts.map((post) => ( - - + +

{post.data.title}

{post.data.description}
-- cgit