update similar-posts card

This commit is contained in:
Somrat
2024-04-02 09:48:20 +06:00
parent b58e933464
commit 8bc7f4b71c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "astroplate",
"version": "3.4.1",
"version": "3.4.2",
"description": "Astro and Tailwindcss boilerplate",
"author": "zeon.studio",
"license": "MIT",
+1 -1
View File
@@ -101,7 +101,7 @@ const { title, description, author, categories, image, date, tags } = post.data;
<div class="row justify-center">
{
similarPosts.map((post) => (
<div class="mb-14 lg:col-4">
<div class="lg:col-4 md:col-6 mb-14">
<BlogCard data={post} />
</div>
))