Clean homepage

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-05-07 20:40:22 +02:00
parent a055640fa8
commit 930c3bf3bb
8 changed files with 50 additions and 32 deletions
+6 -1
View File
@@ -45,7 +45,12 @@ const sortedPosts = blogPosts.sort(
) : (
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
{sortedPosts.map((post) => (
<BlogCard post={post} />
<BlogCard
displayBanner={true}
displayTags={true}
displayDate={true}
post={post}
/>
))}
</div>
)
+1 -1
View File
@@ -36,7 +36,7 @@ import repos from "../../data/repos.json";
) : (
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
{repos.map((repo) => (
<GiteaProjectCard repo={repo} />
<GiteaProjectCard displayBanner={true} repo={repo} />
))}
</div>
)