From 568220d39c4ede230b512b18eb28dc46d941dcca Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 9 Mar 2026 16:49:58 -0500 Subject: [PATCH] feat: adjust layout of recent posts --- src/components/sections/RecentPostsSection.astro | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/components/sections/RecentPostsSection.astro b/src/components/sections/RecentPostsSection.astro index 5c0aa82..5dc5a72 100644 --- a/src/components/sections/RecentPostsSection.astro +++ b/src/components/sections/RecentPostsSection.astro @@ -23,11 +23,9 @@ const { posts, title, subTitle } = Astro.props; -
- {posts.map((b) => ( -
- -
- ))} -
+
+ {posts.map((b) => + + )} +