adding the article suggestion at the end of the blog post
Deploy Vercel / deploy-preprod (push) Successful in 1m9s
Deploy Vercel / deploy-production (push) Has been skipped

This commit is contained in:
2026-07-08 09:36:56 +02:00
parent 5f41471108
commit abc3a9095c
6 changed files with 140 additions and 7 deletions
@@ -10,7 +10,7 @@ type props = {
slug: string;
title: string;
description: string;
cover: string;
cover?: string;
}[];
};
@@ -65,11 +65,13 @@ export function OtherProjects({ locale, projects }: props) {
>
{/* Image */}
<div className="w-full h-[240px] rounded-xl overflow-hidden bg-brand-brown/5 mb-5">
<img
src={project.cover}
alt={project.title}
className="w-full h-full object-cover transition-all duration-700 group-hover:scale-[1.04] group-hover:brightness-105"
/>
{project.cover && (
<img
src={project.cover}
alt={project.title}
className="w-full h-full object-cover transition-all duration-700 group-hover:scale-[1.04] group-hover:brightness-105"
/>
)}
</div>
{/* Text */}