feat: add dates to selected

This commit is contained in:
2026-03-06 22:44:13 -06:00
parent 8a7b6b97b7
commit 091af909d4
3 changed files with 36 additions and 21 deletions

View File

@@ -17,6 +17,7 @@ const { posts } = Astro.props;
title={post.title}
subTitle={post.description}
url={`/blog/${post.slug}`}
pubDate={post.published_date}
img={post.image}
imgAlt={post.image_alt}
/>
@@ -25,6 +26,7 @@ const { posts } = Astro.props;
title={post.title}
subTitle={post.description}
url={`/blog/${post.slug}`}
pubDate={post.published_date}
imgOne={post.image}
imgOneAlt={post.image_alt}
imgTwo={post?.image_second}