This commit is contained in:
Iliyan Angelov
2025-11-29 18:05:34 +02:00
parent 4c15d90a6a
commit d7d7a2757a

View File

@@ -273,7 +273,9 @@ const Story = () => {
</Link> </Link>
</p> </p>
<h5 className="fw-4 mt-12 mb-12 text-white"> <h5 className="fw-4 mt-12 mb-12 text-white">
<Link href={`/case-study/${item.slug}`} className="text-white">
{item.title} {item.title}
</Link>
</h5> </h5>
<p className="text-xs">{item.excerpt || item.description?.substring(0, 150) + '...'}</p> <p className="text-xs">{item.excerpt || item.description?.substring(0, 150) + '...'}</p>
</div> </div>
@@ -300,6 +302,7 @@ const Story = () => {
className={`tp-story-thumb ${isActive ? "thumb-active" : ""}`} className={`tp-story-thumb ${isActive ? "thumb-active" : ""}`}
data-loaded={isLoaded} data-loaded={isLoaded}
> >
<Link href={`/case-study/${item.slug}`} className="w-100">
<Image <Image
src={imageUrl} src={imageUrl}
width={600} width={600}
@@ -326,6 +329,7 @@ const Story = () => {
} }
}} }}
/> />
</Link>
</div> </div>
); );
})} })}